From 26be94b799d4837d376c706df0b191cda4a3e2f1 Mon Sep 17 00:00:00 2001 From: Steven Deobald Date: Tue, 23 Jan 2024 11:46:00 +0530 Subject: [PATCH] Correct (remove) note about ERASE not deleting data --- docs/print.html | 8 +++----- docs/searchindex.js | 2 +- docs/searchindex.json | 2 +- docs/sql/data_manipulation.html | 3 --- docs/sql/queries.html | 5 +++-- src/sql/data_manipulation.md | 6 +++--- src/sql/queries.md | 5 +++-- 7 files changed, 14 insertions(+), 17 deletions(-) diff --git a/docs/print.html b/docs/print.html index b4fc195..77d969f 100644 --- a/docs/print.html +++ b/docs/print.html @@ -457,9 +457,6 @@

ERASE

Once a document has been erased, it is no longer possible to query for it at all.

ERASE FROM products WHERE name = 'Salt';
 
-

NOTE: ERASE currently does not remove data from disk. -This feature will be added when Endb handles compaction, as per our -roadmap.

Parameters

Parameters to DML are documented under the HTTP API.

Transactions

@@ -670,9 +667,10 @@

Union 400 Bad Request Number of UNION left columns: 3 does not match right columns: 2 -

WITH Queries (Common Table Expressions)

+

WITH (Common Table Expressions)

The WITH keyword is used to create Common Table Expressions, or CTEs. -CTEs act like temporary tables or views within the context of a query. +CTEs act like temporary tables or views within the context of a query or +DML statement. CTEs are used in place of a sub-select to simplify the appearance of a query. WITH clauses take the form WITH <cte-name> AS (<cte-select>).

WITH top_margin_products AS (SELECT product_no FROM products WHERE (price - cost) > 5.00)
diff --git a/docs/searchindex.js b/docs/searchindex.js
index 7192fec..2059248 100644
--- a/docs/searchindex.js
+++ b/docs/searchindex.js
@@ -1 +1 @@
-Object.assign(window.search, {"doc_urls":["index.html#introduction","index.html#elsewhere","tutorial/index.html#tutorial","tutorial/quickstart.html#quickstart","tutorial/quickstart.html#install-endb","tutorial/quickstart.html#run-your-first-query","tutorial/quickstart.html#warning-early-alpha","tutorial/try_it.html#try-it","tutorial/try_it.html#curl","tutorial/try_it.html#example-libraries","tutorial/try_it.html#example-console","tutorial/sql_basics.html#endb-sql-basics","tutorial/sql_basics.html#just-begin","tutorial/sql_basics.html#immutable","tutorial/sql_basics.html#dynamic-joins","tutorial/sql_basics.html#semi-structured-data","tutorial/sql_basics.html#data-migration","tutorial/sql_basics.html#nested-data","tutorial/sql_basics.html#documents","tutorial/sql_basics.html#error-messages","sql/index.html#sql-reference","sql/intention.html#intention","sql/data_manipulation.html#data-manipulation","sql/data_manipulation.html#insert","sql/data_manipulation.html#update","sql/data_manipulation.html#update-patch","sql/data_manipulation.html#update-set-path","sql/data_manipulation.html#update-unset-path","sql/data_manipulation.html#delete","sql/data_manipulation.html#on-conflict-upsert","sql/data_manipulation.html#erase","sql/data_manipulation.html#parameters","sql/data_manipulation.html#transactions","sql/queries.html#queries","sql/queries.html#select-","sql/queries.html#select","sql/queries.html#from","sql/queries.html#alias-tables","sql/queries.html#alias-columns","sql/queries.html#join","sql/queries.html#unnest","sql/queries.html#with-ordinality","sql/queries.html#where-filtering","sql/queries.html#advanced-filtering","sql/queries.html#order-by-sorting-results","sql/queries.html#group-by","sql/queries.html#having","sql/queries.html#limit","sql/queries.html#values-lists","sql/queries.html#objects-lists","sql/queries.html#set-operations-union-intersect-except","sql/queries.html#union","sql/queries.html#intersect","sql/queries.html#except","sql/queries.html#union-compatibility","sql/queries.html#with-queries-common-table-expressions","sql/queries.html#with-recursive","sql/queries.html#repeatable-reads-savepoint-rollback-release","sql/queries.html#minimal-example","sql/queries.html#savepoint","sql/queries.html#rollback","sql/queries.html#release","sql/data_types.html#sql-data-types","sql/data_types.html#null","sql/data_types.html#text-char-varchar","sql/data_types.html#boolean","sql/data_types.html#integer-bigint","sql/data_types.html#real-double","sql/data_types.html#timestamp","sql/data_types.html#date","sql/data_types.html#time","sql/data_types.html#interval-duration","sql/data_types.html#blob-varbinary","sql/data_types.html#array","sql/data_types.html#object","sql/data_types.html#dynamic-literals","sql/data_types.html#row-literals","sql/data_types.html#spread","sql/data_types.html#computed-fields","sql/data_types.html#shorthands","sql/data_types.html#note-on-timezones","sql/data_types.html#note-on-type-widening","sql/operators.html#operators","sql/operators.html#comparison","sql/operators.html#between","sql/operators.html#boolean-operators","sql/operators.html#math","sql/operators.html#bitwise-operators","sql/operators.html#like","sql/operators.html#regexp","sql/operators.html#glob","sql/operators.html#match-containment","sql/operators.html#any-some","sql/operators.html#all","sql/operators.html#exists","sql/operators.html#in","sql/operators.html#not-in","sql/operators.html#-concatenation","sql/functions.html#functions","sql/functions.html#string-functions","sql/functions.html#character_length","sql/functions.html#octet_length","sql/functions.html#trim-ltrim-rtrim","sql/functions.html#lower-upper","sql/functions.html#replace","sql/functions.html#instr","sql/functions.html#substring","sql/functions.html#unicode","sql/functions.html#char","sql/functions.html#concat","sql/functions.html#like","sql/functions.html#collection-functions","sql/functions.html#length","sql/functions.html#object_keys","sql/functions.html#object_values","sql/functions.html#object_entries","sql/functions.html#object_from_entries","sql/functions.html#patch","sql/functions.html#numeric-functions","sql/functions.html#random","sql/functions.html#math","sql/functions.html#datetime-functions","sql/functions.html#strftime","sql/functions.html#unixepoch","sql/functions.html#julianday","sql/functions.html#extract","sql/functions.html#aggregate-functions","sql/functions.html#min-max","sql/functions.html#sum","sql/functions.html#total","sql/functions.html#avg","sql/functions.html#count","sql/functions.html#array_agg","sql/functions.html#group_concat","sql/functions.html#filter","sql/functions.html#data-type-functions","sql/functions.html#cast","sql/functions.html#typeof","sql/functions.html#conditional-functions","sql/functions.html#iif","sql/functions.html#nullif","sql/functions.html#coalesce","sql/functions.html#encoding-functions","sql/functions.html#base64","sql/functions.html#uuid","sql/functions.html#sha1","sql/functions.html#randomblob-zeroblob","sql/functions.html#hex-unhex","sql/time_queries.html#time-queries","sql/time_queries.html#note-on-sql2011-closed-open-period-model","sql/time_queries.html#note-on-timezones","sql/time_queries.html#now","sql/time_queries.html#current_timestamp","sql/time_queries.html#current_time","sql/time_queries.html#current_date","sql/time_queries.html#system-time","sql/time_queries.html#as-of-time-travel","sql/time_queries.html#all-time-omniscience","sql/time_queries.html#between","sql/time_queries.html#from--to","sql/time_queries.html#period-predicates","sql/time_queries.html#contains","sql/time_queries.html#overlaps","sql/time_queries.html#precedes","sql/time_queries.html#succeeds","sql/time_queries.html#immediately-precedes","sql/time_queries.html#immediately-succeeds","sql/path_navigation.html#path-navigation","sql/path_navigation.html#nested-objects","sql/path_navigation.html#root-navigation","sql/path_navigation.html#row-literals","sql/path_navigation.html#recursive-paths","sql/path_navigation.html#named-child","sql/path_navigation.html#numbered-child","sql/path_navigation.html#wildcard-child","sql/path_navigation.html#path-functions","sql/path_navigation.html#path_set","sql/path_navigation.html#path_replace","sql/path_navigation.html#path_insert","sql/path_navigation.html#path_remove","sql/path_navigation.html#path_extract","sql/schema.html#schema","sql/schema.html#tables","sql/schema.html#columns","sql/schema.html#views","sql/schema.html#check-constraints","sql/views.html#views","sql/views.html#create-view","sql/views.html#drop-view","sql/assertions.html#assertions","sql/assertions.html#create-assertion","sql/assertions.html#drop-assertion","reference/index.html#reference","reference/installation.html#installation","reference/installation.html#warning-early-alpha","reference/installation.html#installing-from-docker-hub","reference/installation.html#installing-from-git-docker","reference/installation.html#installing-from-git-binary","reference/operation.html#operation","reference/http_api.html#http-api","reference/http_api.html#http-query-parameters","reference/http_api.html#http-verbs","reference/http_api.html#content-types","reference/http_api.html#applicationjson","reference/http_api.html#applicationldjson","reference/http_api.html#applicationsql","reference/http_api.html#multipartform-data","reference/http_api.html#applicationx-www-form-urlencoded","reference/http_api.html#accept-headers","reference/http_api.html#textcsv","reference/http_api.html#applicationjson-1","reference/http_api.html#applicationx-ndjson","reference/http_api.html#applicationldjson-1","reference/http_api.html#applicationvndapachearrowfile","reference/http_api.html#applicationvndapachearrowstream","reference/http_api.html#http-basic-authentication","reference/http_api.html#parameters","reference/http_api.html#named-parameters","reference/http_api.html#positional-parameters","reference/http_api.html#bulk-parameters","reference/http_api.html#apache-arrow-file-parameters","reference/http_api.html#bulk-insert","reference/http_api.html#multiple-statements","reference/data_types.html#data-types","reference/data_types.html#scalars","reference/data_types.html#collections","reference/data_types.html#unsupported-scalar-types","appendix/index.html#appendix","appendix/what.html#what-is-endatabas","appendix/what.html#who-wants-one-database","appendix/what.html#when-is-one-database-possible","appendix/why.html#why-endatabas","appendix/why.html#what-is-endatabas-anyway","appendix/why.html#history","appendix/why.html#why-sql","appendix/why.html#why-full-history","appendix/why.html#why-a-timeline","appendix/why.html#why-separation-of-storage-and-compute","appendix/why.html#why-documents","appendix/why.html#why-one-database","appendix/why.html#why-commercial-open-source","appendix/why.html#why-now","appendix/architecture.html#architecture","appendix/architecture.html#immutable","appendix/architecture.html#erasure","appendix/architecture.html#dynamic-sql","appendix/architecture.html#columnar-hybrid-transactional-analytic-processing-htap","appendix/architecture.html#query-execution","appendix/architecture.html#future","appendix/architecture.html#columnar-olap-result-sets","appendix/architecture.html#cloud-separation-of-storage-from-compute","appendix/architecture.html#adaptive-indexing","appendix/roadmap.html#roadmap","appendix/license.html#license"],"index":{"documentStore":{"docInfo":{"0":{"body":31,"breadcrumbs":2,"title":1},"1":{"body":7,"breadcrumbs":2,"title":1},"10":{"body":42,"breadcrumbs":4,"title":2},"100":{"body":13,"breadcrumbs":4,"title":1},"101":{"body":13,"breadcrumbs":4,"title":1},"102":{"body":25,"breadcrumbs":6,"title":3},"103":{"body":17,"breadcrumbs":5,"title":2},"104":{"body":16,"breadcrumbs":4,"title":1},"105":{"body":15,"breadcrumbs":4,"title":1},"106":{"body":32,"breadcrumbs":4,"title":1},"107":{"body":12,"breadcrumbs":4,"title":1},"108":{"body":13,"breadcrumbs":4,"title":1},"109":{"body":11,"breadcrumbs":4,"title":1},"11":{"body":25,"breadcrumbs":7,"title":3},"110":{"body":35,"breadcrumbs":3,"title":0},"111":{"body":0,"breadcrumbs":5,"title":2},"112":{"body":26,"breadcrumbs":4,"title":1},"113":{"body":12,"breadcrumbs":4,"title":1},"114":{"body":12,"breadcrumbs":4,"title":1},"115":{"body":20,"breadcrumbs":4,"title":1},"116":{"body":18,"breadcrumbs":4,"title":1},"117":{"body":54,"breadcrumbs":4,"title":1},"118":{"body":0,"breadcrumbs":5,"title":2},"119":{"body":7,"breadcrumbs":4,"title":1},"12":{"body":30,"breadcrumbs":5,"title":1},"120":{"body":62,"breadcrumbs":4,"title":1},"121":{"body":0,"breadcrumbs":5,"title":2},"122":{"body":23,"breadcrumbs":4,"title":1},"123":{"body":19,"breadcrumbs":4,"title":1},"124":{"body":21,"breadcrumbs":4,"title":1},"125":{"body":53,"breadcrumbs":4,"title":1},"126":{"body":0,"breadcrumbs":5,"title":2},"127":{"body":33,"breadcrumbs":5,"title":2},"128":{"body":21,"breadcrumbs":4,"title":1},"129":{"body":11,"breadcrumbs":4,"title":1},"13":{"body":95,"breadcrumbs":5,"title":1},"130":{"body":15,"breadcrumbs":4,"title":1},"131":{"body":37,"breadcrumbs":4,"title":1},"132":{"body":43,"breadcrumbs":4,"title":1},"133":{"body":28,"breadcrumbs":4,"title":1},"134":{"body":12,"breadcrumbs":4,"title":1},"135":{"body":0,"breadcrumbs":6,"title":3},"136":{"body":16,"breadcrumbs":4,"title":1},"137":{"body":14,"breadcrumbs":4,"title":1},"138":{"body":0,"breadcrumbs":5,"title":2},"139":{"body":19,"breadcrumbs":4,"title":1},"14":{"body":31,"breadcrumbs":6,"title":2},"140":{"body":14,"breadcrumbs":4,"title":1},"141":{"body":16,"breadcrumbs":4,"title":1},"142":{"body":0,"breadcrumbs":5,"title":2},"143":{"body":22,"breadcrumbs":4,"title":1},"144":{"body":45,"breadcrumbs":4,"title":1},"145":{"body":15,"breadcrumbs":4,"title":1},"146":{"body":25,"breadcrumbs":5,"title":2},"147":{"body":70,"breadcrumbs":5,"title":2},"148":{"body":35,"breadcrumbs":6,"title":2},"149":{"body":30,"breadcrumbs":10,"title":6},"15":{"body":38,"breadcrumbs":7,"title":3},"150":{"body":6,"breadcrumbs":6,"title":2},"151":{"body":10,"breadcrumbs":5,"title":1},"152":{"body":8,"breadcrumbs":5,"title":1},"153":{"body":7,"breadcrumbs":5,"title":1},"154":{"body":16,"breadcrumbs":5,"title":1},"155":{"body":23,"breadcrumbs":6,"title":2},"156":{"body":21,"breadcrumbs":6,"title":2},"157":{"body":20,"breadcrumbs":6,"title":2},"158":{"body":26,"breadcrumbs":5,"title":1},"159":{"body":22,"breadcrumbs":4,"title":0},"16":{"body":52,"breadcrumbs":6,"title":2},"160":{"body":5,"breadcrumbs":6,"title":2},"161":{"body":25,"breadcrumbs":5,"title":1},"162":{"body":26,"breadcrumbs":5,"title":1},"163":{"body":20,"breadcrumbs":5,"title":1},"164":{"body":19,"breadcrumbs":5,"title":1},"165":{"body":21,"breadcrumbs":6,"title":2},"166":{"body":21,"breadcrumbs":6,"title":2},"167":{"body":39,"breadcrumbs":6,"title":2},"168":{"body":20,"breadcrumbs":6,"title":2},"169":{"body":38,"breadcrumbs":6,"title":2},"17":{"body":53,"breadcrumbs":6,"title":2},"170":{"body":22,"breadcrumbs":6,"title":2},"171":{"body":22,"breadcrumbs":6,"title":2},"172":{"body":40,"breadcrumbs":6,"title":2},"173":{"body":44,"breadcrumbs":6,"title":2},"174":{"body":40,"breadcrumbs":6,"title":2},"175":{"body":43,"breadcrumbs":6,"title":2},"176":{"body":27,"breadcrumbs":5,"title":1},"177":{"body":31,"breadcrumbs":5,"title":1},"178":{"body":24,"breadcrumbs":5,"title":1},"179":{"body":32,"breadcrumbs":5,"title":1},"18":{"body":30,"breadcrumbs":5,"title":1},"180":{"body":44,"breadcrumbs":5,"title":1},"181":{"body":45,"breadcrumbs":4,"title":1},"182":{"body":15,"breadcrumbs":4,"title":1},"183":{"body":16,"breadcrumbs":4,"title":1},"184":{"body":17,"breadcrumbs":4,"title":1},"185":{"body":20,"breadcrumbs":5,"title":2},"186":{"body":10,"breadcrumbs":4,"title":1},"187":{"body":52,"breadcrumbs":5,"title":2},"188":{"body":9,"breadcrumbs":5,"title":2},"189":{"body":0,"breadcrumbs":4,"title":1},"19":{"body":11,"breadcrumbs":6,"title":2},"190":{"body":36,"breadcrumbs":5,"title":2},"191":{"body":8,"breadcrumbs":5,"title":2},"192":{"body":18,"breadcrumbs":2,"title":1},"193":{"body":27,"breadcrumbs":3,"title":1},"194":{"body":23,"breadcrumbs":5,"title":3},"195":{"body":62,"breadcrumbs":5,"title":3},"196":{"body":11,"breadcrumbs":5,"title":3},"197":{"body":25,"breadcrumbs":5,"title":3},"198":{"body":52,"breadcrumbs":3,"title":1},"199":{"body":64,"breadcrumbs":5,"title":2},"2":{"body":18,"breadcrumbs":2,"title":1},"20":{"body":51,"breadcrumbs":4,"title":2},"200":{"body":25,"breadcrumbs":6,"title":3},"201":{"body":30,"breadcrumbs":5,"title":2},"202":{"body":11,"breadcrumbs":5,"title":2},"203":{"body":72,"breadcrumbs":4,"title":1},"204":{"body":42,"breadcrumbs":4,"title":1},"205":{"body":36,"breadcrumbs":4,"title":1},"206":{"body":46,"breadcrumbs":5,"title":2},"207":{"body":25,"breadcrumbs":7,"title":4},"208":{"body":15,"breadcrumbs":5,"title":2},"209":{"body":31,"breadcrumbs":4,"title":1},"21":{"body":86,"breadcrumbs":4,"title":1},"210":{"body":34,"breadcrumbs":4,"title":1},"211":{"body":42,"breadcrumbs":5,"title":2},"212":{"body":44,"breadcrumbs":4,"title":1},"213":{"body":46,"breadcrumbs":4,"title":1},"214":{"body":43,"breadcrumbs":4,"title":1},"215":{"body":87,"breadcrumbs":6,"title":3},"216":{"body":51,"breadcrumbs":4,"title":1},"217":{"body":71,"breadcrumbs":5,"title":2},"218":{"body":62,"breadcrumbs":5,"title":2},"219":{"body":57,"breadcrumbs":5,"title":2},"22":{"body":31,"breadcrumbs":6,"title":2},"220":{"body":110,"breadcrumbs":7,"title":4},"221":{"body":72,"breadcrumbs":5,"title":2},"222":{"body":55,"breadcrumbs":5,"title":2},"223":{"body":0,"breadcrumbs":5,"title":2},"224":{"body":117,"breadcrumbs":4,"title":1},"225":{"body":26,"breadcrumbs":4,"title":1},"226":{"body":34,"breadcrumbs":6,"title":3},"227":{"body":3,"breadcrumbs":2,"title":1},"228":{"body":99,"breadcrumbs":2,"title":1},"229":{"body":96,"breadcrumbs":3,"title":2},"23":{"body":80,"breadcrumbs":5,"title":1},"230":{"body":102,"breadcrumbs":4,"title":3},"231":{"body":73,"breadcrumbs":2,"title":1},"232":{"body":102,"breadcrumbs":3,"title":2},"233":{"body":394,"breadcrumbs":2,"title":1},"234":{"body":228,"breadcrumbs":2,"title":1},"235":{"body":130,"breadcrumbs":3,"title":2},"236":{"body":61,"breadcrumbs":2,"title":1},"237":{"body":63,"breadcrumbs":4,"title":3},"238":{"body":226,"breadcrumbs":2,"title":1},"239":{"body":45,"breadcrumbs":3,"title":2},"24":{"body":78,"breadcrumbs":5,"title":1},"240":{"body":7,"breadcrumbs":4,"title":3},"241":{"body":120,"breadcrumbs":2,"title":1},"242":{"body":0,"breadcrumbs":3,"title":1},"243":{"body":22,"breadcrumbs":3,"title":1},"244":{"body":13,"breadcrumbs":3,"title":1},"245":{"body":69,"breadcrumbs":4,"title":2},"246":{"body":30,"breadcrumbs":8,"title":6},"247":{"body":23,"breadcrumbs":4,"title":2},"248":{"body":7,"breadcrumbs":3,"title":1},"249":{"body":7,"breadcrumbs":6,"title":4},"25":{"body":36,"breadcrumbs":6,"title":2},"250":{"body":46,"breadcrumbs":6,"title":4},"251":{"body":18,"breadcrumbs":4,"title":2},"252":{"body":19,"breadcrumbs":3,"title":1},"253":{"body":20,"breadcrumbs":3,"title":1},"26":{"body":24,"breadcrumbs":7,"title":3},"27":{"body":25,"breadcrumbs":7,"title":3},"28":{"body":42,"breadcrumbs":5,"title":1},"29":{"body":120,"breadcrumbs":6,"title":2},"3":{"body":0,"breadcrumbs":3,"title":1},"30":{"body":30,"breadcrumbs":5,"title":1},"31":{"body":6,"breadcrumbs":5,"title":1},"32":{"body":18,"breadcrumbs":5,"title":1},"33":{"body":14,"breadcrumbs":4,"title":1},"34":{"body":63,"breadcrumbs":4,"title":1},"35":{"body":77,"breadcrumbs":4,"title":1},"36":{"body":0,"breadcrumbs":3,"title":0},"37":{"body":56,"breadcrumbs":5,"title":2},"38":{"body":52,"breadcrumbs":5,"title":2},"39":{"body":33,"breadcrumbs":4,"title":1},"4":{"body":21,"breadcrumbs":4,"title":2},"40":{"body":80,"breadcrumbs":4,"title":1},"41":{"body":31,"breadcrumbs":4,"title":1},"42":{"body":11,"breadcrumbs":4,"title":1},"43":{"body":6,"breadcrumbs":5,"title":2},"44":{"body":56,"breadcrumbs":6,"title":3},"45":{"body":43,"breadcrumbs":4,"title":1},"46":{"body":27,"breadcrumbs":4,"title":1},"47":{"body":55,"breadcrumbs":4,"title":1},"48":{"body":53,"breadcrumbs":5,"title":2},"49":{"body":49,"breadcrumbs":5,"title":2},"5":{"body":12,"breadcrumbs":5,"title":3},"50":{"body":9,"breadcrumbs":8,"title":5},"51":{"body":23,"breadcrumbs":4,"title":1},"52":{"body":12,"breadcrumbs":4,"title":1},"53":{"body":22,"breadcrumbs":4,"title":1},"54":{"body":82,"breadcrumbs":5,"title":2},"55":{"body":44,"breadcrumbs":7,"title":4},"56":{"body":80,"breadcrumbs":4,"title":1},"57":{"body":50,"breadcrumbs":8,"title":5},"58":{"body":67,"breadcrumbs":5,"title":2},"59":{"body":31,"breadcrumbs":4,"title":1},"6":{"body":23,"breadcrumbs":5,"title":3},"60":{"body":63,"breadcrumbs":4,"title":1},"61":{"body":19,"breadcrumbs":4,"title":1},"62":{"body":0,"breadcrumbs":8,"title":3},"63":{"body":30,"breadcrumbs":6,"title":1},"64":{"body":39,"breadcrumbs":8,"title":3},"65":{"body":5,"breadcrumbs":6,"title":1},"66":{"body":9,"breadcrumbs":7,"title":2},"67":{"body":8,"breadcrumbs":7,"title":2},"68":{"body":32,"breadcrumbs":6,"title":1},"69":{"body":20,"breadcrumbs":6,"title":1},"7":{"body":8,"breadcrumbs":3,"title":1},"70":{"body":19,"breadcrumbs":6,"title":1},"71":{"body":50,"breadcrumbs":7,"title":2},"72":{"body":11,"breadcrumbs":7,"title":2},"73":{"body":48,"breadcrumbs":6,"title":1},"74":{"body":119,"breadcrumbs":6,"title":1},"75":{"body":0,"breadcrumbs":7,"title":2},"76":{"body":78,"breadcrumbs":7,"title":2},"77":{"body":67,"breadcrumbs":6,"title":1},"78":{"body":37,"breadcrumbs":7,"title":2},"79":{"body":24,"breadcrumbs":6,"title":1},"8":{"body":39,"breadcrumbs":3,"title":1},"80":{"body":9,"breadcrumbs":7,"title":2},"81":{"body":68,"breadcrumbs":8,"title":3},"82":{"body":0,"breadcrumbs":4,"title":1},"83":{"body":32,"breadcrumbs":4,"title":1},"84":{"body":37,"breadcrumbs":4,"title":1},"85":{"body":89,"breadcrumbs":5,"title":2},"86":{"body":59,"breadcrumbs":4,"title":1},"87":{"body":24,"breadcrumbs":5,"title":2},"88":{"body":75,"breadcrumbs":3,"title":0},"89":{"body":20,"breadcrumbs":4,"title":1},"9":{"body":15,"breadcrumbs":4,"title":2},"90":{"body":23,"breadcrumbs":4,"title":1},"91":{"body":104,"breadcrumbs":5,"title":2},"92":{"body":36,"breadcrumbs":3,"title":0},"93":{"body":34,"breadcrumbs":3,"title":0},"94":{"body":17,"breadcrumbs":4,"title":1},"95":{"body":27,"breadcrumbs":3,"title":0},"96":{"body":27,"breadcrumbs":3,"title":0},"97":{"body":63,"breadcrumbs":4,"title":1},"98":{"body":0,"breadcrumbs":4,"title":1},"99":{"body":0,"breadcrumbs":5,"title":2}},"docs":{"0":{"body":"Welcome to Endatabas! Endatabas is a SQL document database with complete history. It will store anything, forever. The best way to understand Endatabas is to use it. Head on over to the Quickstart to try it out. If you're not ready to run your first query yet, there's plenty of explanatory material in our What? and Why? documents.","breadcrumbs":"Introduction » Introduction","id":"0","title":"Introduction"},"1":{"body":"If you came to the Endatabas book directly, you may also be interested in: www.endatabas.com github.com/endatabas/endb","breadcrumbs":"Introduction » Elsewhere","id":"1","title":"Elsewhere"},"10":{"body":"Endb does not yet provide an official SQL console. However, you can try Endb SQL (without writing any code) with the example terminal: git clone git@github.com:endatabas/endb.git\ncd endb/examples\n./endb_console.py This example console wraps the Python example library. Assuming you inserted a user with curl above, you can query that table directly: -> SELECT * FROM users; You can use any of these tools (or any other HTTP client you prefer) for the rest of this tutorial.","breadcrumbs":"Tutorial » Try It! » Example Console","id":"10","title":"Example Console"},"100":{"body":"The CHARACTER_LENGTH function returns the number of unicode characters in a string. SELECT CHARACTER_LENGTH('josé');\n-- 4 SELECT CHARACTER_LENGTH('❤️🥫');\n-- 3","breadcrumbs":"SQL Reference » Functions » CHARACTER_LENGTH","id":"100","title":"CHARACTER_LENGTH"},"101":{"body":"The OCTET_LENGTH function returns the length of a string, in bytes (octets). SELECT OCTET_LENGTH('josé');\n-- 5 SELECT OCTET_LENGTH('❤️🥫');\n-- 10","breadcrumbs":"SQL Reference » Functions » OCTET_LENGTH","id":"101","title":"OCTET_LENGTH"},"102":{"body":"The TRIM, LTRIM, and RTRIM functions trim surrounding whitespace, whitespace to the left, and whitespace to the right of a string, respectively. SELECT TRIM(' hello ');\n-- 'hello' SELECT LTRIM(' hello ');\n-- 'hello ' SELECT RTRIM(' hello ');\n-- ' hello'","breadcrumbs":"SQL Reference » Functions » TRIM, LTRIM, RTRIM","id":"102","title":"TRIM, LTRIM, RTRIM"},"103":{"body":"The LOWER and UPPER functions downcase and upcase a string, respectively. SELECT LOWER('Relatable Algebra');\n-- 'relatable algebra' SELECT UPPER('Shouting Calculus');\n-- 'SHOUTING CALCULUS'","breadcrumbs":"SQL Reference » Functions » LOWER, UPPER","id":"103","title":"LOWER, UPPER"},"104":{"body":"The REPLACE function returns the string in the first parameter, with the second parameter (if found) replaced by the third. SELECT REPLACE('Relatable Algebra', 'Rela', 'Infla');","breadcrumbs":"SQL Reference » Functions » REPLACE","id":"104","title":"REPLACE"},"105":{"body":"The INSTR function returns the first character of a substring match on the second parameter, if found, and 0 if it is not found. SELECT INSTR('Coffee', 'ee');","breadcrumbs":"SQL Reference » Functions » INSTR","id":"105","title":"INSTR"},"106":{"body":"The SUBSTRING function returns the substring starting from the index provided as the second parameter. If the (optional) third parameter is provided, the substring will be of that length (or less, if the end of the source string is reached). SUBSTR is a synonym for SUBSTRING. SELECT SUBSTRING('Hello Edgar', 4);\nSELECT SUBSTR('Hello Edgar', 4, 2);","breadcrumbs":"SQL Reference » Functions » SUBSTRING","id":"106","title":"SUBSTRING"},"107":{"body":"The UNICODE function returns an integer unicode value for the first character of the parameter given. SELECT UNICODE('Adam');","breadcrumbs":"SQL Reference » Functions » UNICODE","id":"107","title":"UNICODE"},"108":{"body":"The CHAR function returns a string corresponding to the supplied integer character codes. SELECT CHAR(65, 66, 67);","breadcrumbs":"SQL Reference » Functions » CHAR","id":"108","title":"CHAR"},"109":{"body":"CONCAT is equivalent to the Concatenation Operator (||) except that CONCAT is limited to 2-arity applications and || can be chained.","breadcrumbs":"SQL Reference » Functions » CONCAT","id":"109","title":"CONCAT"},"11":{"body":"If you know SQL, Endb SQL will feel instantly familiar. It is not \"SQL-like\". It is SQL. However, Endb SQL is dynamic , strongly-typed , time-aware , and shuns language embedding . Hopefully it is pleasant to use without feeling foreign.","breadcrumbs":"Tutorial » Endb SQL Basics » Endb SQL Basics","id":"11","title":"Endb SQL Basics"},"110":{"body":"The LIKE function serves the same purpose as the LIKE operator . However, the argument order is (effectively) reversed for the LIKE function, to match the signature used in SQLite. For the function version, the pattern is the first argument. Optionally, an alternative escape character can be provided as a third argument. SELECT * FROM users WHERE LIKE('Stev%', name);\nSELECT * FROM users WHERE LIKE('EdgarX%', name, 'X');","breadcrumbs":"SQL Reference » Functions » LIKE","id":"110","title":"LIKE"},"111":{"body":"","breadcrumbs":"SQL Reference » Functions » Collection Functions","id":"111","title":"Collection Functions"},"112":{"body":"The LENGTH function counts the number of entries in a collection. When supplied with a string, it is a synonym for CHARACTER_LENGTH. SELECT LENGTH([3, 2]);\nSELECT LENGTH({name: 'Peas', price: 8.99, product_no: 77});\nSELECT LENGTH('josé'); NOTE: CARDINALITY is an synonym for LENGTH.","breadcrumbs":"SQL Reference » Functions » LENGTH","id":"112","title":"LENGTH"},"113":{"body":"An object's keys can be selected using OBJECT_KEYS. SELECT OBJECT_KEYS({original_price: 1.99, sale_price: 1.50, coupon_price: 1.40});","breadcrumbs":"SQL Reference » Functions » OBJECT_KEYS","id":"113","title":"OBJECT_KEYS"},"114":{"body":"An object's values can be selected using OBJECT_VALUES. SELECT OBJECT_VALUES({original_price: 1.99, sale_price: 1.50, coupon_price: 1.40});","breadcrumbs":"SQL Reference » Functions » OBJECT_VALUES","id":"114","title":"OBJECT_VALUES"},"115":{"body":"Returns an array of key-value pairs representing the given object. SELECT OBJECT_ENTRIES({a: 1, b: 2, c: 3});\n-- [['a': 1], ['b': 2], ['c': 3]]","breadcrumbs":"SQL Reference » Functions » OBJECT_ENTRIES","id":"115","title":"OBJECT_ENTRIES"},"116":{"body":"Constructs an object from an array of key-value pairs. SELECT OBJECT_FROM_ENTRIES([['a', 1], ['b', 2], ['c', 3]]);\n-- {a: 1, b: 2, c: 3}","breadcrumbs":"SQL Reference » Functions » OBJECT_FROM_ENTRIES","id":"116","title":"OBJECT_FROM_ENTRIES"},"117":{"body":"The PATCH function takes two documents. The document returned is the first document \"patched\" with any fields found in the second document. If the second document does not specify a field, that field is left untouched. If the second document specifies any fields with values of NULL, those fields are removed. SELECT PATCH( {name: 'Salt', nutrition: {sodium: 100, ingredients: 'Kosher Salt'}}, {name: 'Sea Salt', nutrition: {ingredients: NULL}}\n); The PATCH function has an equivalent operator for data manipulation: UPDATE PATCH","breadcrumbs":"SQL Reference » Functions » PATCH","id":"117","title":"PATCH"},"118":{"body":"","breadcrumbs":"SQL Reference » Functions » Numeric Functions","id":"118","title":"Numeric Functions"},"119":{"body":"The RANDOM function returns a random integer. SELECT RANDOM();","breadcrumbs":"SQL Reference » Functions » RANDOM","id":"119","title":"RANDOM"},"12":{"body":"Endb is a schemaless document database. You do not need CREATE TABLE — tables are dynamically created when you insert data. The following SQL is valid as soon as you start endb: INSERT INTO posts (id, user_id, text) VALUES (123, 456, 'Hello World'); SELECT * from posts;","breadcrumbs":"Tutorial » Endb SQL Basics » Just Begin","id":"12","title":"Just Begin"},"120":{"body":"Endb provides standard SQL math functions based on SQLite's collection of math functions: ROUND SIN COS TAN SINH COSH TANH ASIN ACOS ATAN ASINH ACOSH ATANH ATAN2 FLOOR CEILING, CEIL SIGN SQRT EXP POWER, POW LOG, LOG10 LOG2 LN DEGREES RADIANS PI ABS NOTE: Endb follows the choice of most SQL databases and aliases LOG to LOG10 rather than LN (natural log), as specified by the SQL standard. NOTE: Mathematical operators are documented under Operators .","breadcrumbs":"SQL Reference » Functions » Math","id":"120","title":"Math"},"121":{"body":"","breadcrumbs":"SQL Reference » Functions » Date/Time Functions","id":"121","title":"Date/Time Functions"},"122":{"body":"The STRFTIME function formats a date or time value as a string. SELECT strftime('%Y/%m/%d', date('2001-01-01'));\nSELECT strftime('%Y %m %d at %H %M %S', datetime('2001-01-01 03:04:05'));","breadcrumbs":"SQL Reference » Functions » STRFTIME","id":"122","title":"STRFTIME"},"123":{"body":"The UNIXEPOCH function returns the number of seconds since the UNIX epoch. Accepts a DATE, TIMESTAMP, or STRING. SELECT UNIXEPOCH('2023-01-01');\nSELECT UNIXEPOCH(1970-01-01T00:00:00Z);","breadcrumbs":"SQL Reference » Functions » UNIXEPOCH","id":"123","title":"UNIXEPOCH"},"124":{"body":"The JULIANDAY function returns the Julian Day, which is the number of days since noon in UTC on November 24, 4714 B.C. Accepts a DATE, TIMESTAMP, or STRING. SELECT JULIANDAY(1970-01-01);","breadcrumbs":"SQL Reference » Functions » JULIANDAY","id":"124","title":"JULIANDAY"},"125":{"body":"The EXTRACT pseudo-function provides a way to access one named, numerical portion of a date, time, or timestamp. Portions of dates can only be extracted from dates or timestamps. Portions of times can only be extracted from timestamps or times. SELECT EXTRACT(YEAR FROM CURRENT_DATE);\nSELECT EXTRACT(MONTH FROM CURRENT_DATE);\nSELECT EXTRACT(DAY FROM CURRENT_TIMESTAMP);\nSELECT EXTRACT(HOUR FROM CURRENT_TIMESTAMP);\nSELECT EXTRACT(MINUTE FROM CURRENT_TIME);\nSELECT EXTRACT(SECOND FROM CURRENT_TIME); NOTE: EXTRACT is a \"pseudo-function\" because internally it uses custom syntax of the form  FROM .","breadcrumbs":"SQL Reference » Functions » EXTRACT","id":"125","title":"EXTRACT"},"126":{"body":"","breadcrumbs":"SQL Reference » Functions » Aggregate Functions","id":"126","title":"Aggregate Functions"},"127":{"body":"The MIN and MAX functions return the minimum and maximum values for an expression, respectively. SELECT MIN(price) FROM products;\nSELECT MAX(price) FROM products; NOTE: MIN and MAX also have non-aggregate equivalents, which are 2-arity. When used that way, they each return the minimum or maximum value of the two values provided.","breadcrumbs":"SQL Reference » Functions » MIN, MAX","id":"127","title":"MIN, MAX"},"128":{"body":"The SUM function returns the sum of all non-null values under the column given as a parameter. SELECT SUM(price) FROM products; If all values for the given column are NULL, SUM returns NULL.","breadcrumbs":"SQL Reference » Functions » SUM","id":"128","title":"SUM"},"129":{"body":"The TOTAL function is equivalent to SUM except that it returns 0.0 in the case where all input values are NULL.","breadcrumbs":"SQL Reference » Functions » TOTAL","id":"129","title":"TOTAL"},"13":{"body":"Endb is immutable, so it does not permit destructive UPDATE or DELETE. For example, if you run an UPDATE, your previous INSERT isn't lost. Before we update the record, we'll make note of the current time, according to the database. (Any time after the INSERT and before the UPDATE would suffice.) SELECT CURRENT_TIMESTAMP;\n-- for the sake of example, let's say this returns 2023-08-17T00:00:00 UPDATE posts SET text = 'Hello Immutable World' WHERE id = 123; SELECT * from posts; You'll note that Hello World from your original insert isn't visible. That's because it only exists in the past and, by default, SELECT will show the state of the database as of now . To see the old version, you can time-travel back to a time when the old record was visible: SELECT * from posts FOR SYSTEM_TIME AS OF 2023-08-17T00:00:00; NOTE: Although there is no DELETE in the traditional sense, there is ERASE, which exists to remove data for user safety and compliance with laws like GDPR.","breadcrumbs":"Tutorial » Endb SQL Basics » Immutable","id":"13","title":"Immutable"},"130":{"body":"The AVG function takes a numerical-type-agnostic average of all values under the column given as a parameter. SELECT AVG(price) FROM products;","breadcrumbs":"SQL Reference » Functions » AVG","id":"130","title":"AVG"},"131":{"body":"The COUNT function returns the count of non-null , non-empty values for the specified column. SELECT COUNT(price) FROM sales; NOTE: Because null/empty values are ignored, the behaviour of COUNT will differ from other SQL dialects. Whether or not COUNT(price) and COUNT(1) are equivalent is dependent on whether the price attribute exists with a non-null value on each document.","breadcrumbs":"SQL Reference » Functions » COUNT","id":"131","title":"COUNT"},"132":{"body":"The ARRAY_AGG function concatenates the results of an expression into an array. The parameter may be ordered within ARRAY_AGG. SELECT ARRAY_AGG(price) FROM products;\nSELECT ARRAY_AGG(name ORDER BY price DESC) FROM products; Note that when operating on arrays, the arrays themselves will be concatenated, not the contents of the arrays. The result will be an array of one higher dimension: SELECT ARRAY_AGG(x.column1) FROM (VALUES ([1,2]), ([3,4])) AS x;\n-- [{'column1': [[1, 2], [3, 4]]}]","breadcrumbs":"SQL Reference » Functions » ARRAY_AGG","id":"132","title":"ARRAY_AGG"},"133":{"body":"The GROUP_CONCAT function returns a string with concatenated non-null values from a column or group. Given a second parameter, It defaults to a comma-delimited list, but the second (optional) parameter can override the delimiter. SELECT GROUP_CONCAT(name) FROM products;\nSELECT GROUP_CONCAT(name, ':') FROM products;","breadcrumbs":"SQL Reference » Functions » GROUP_CONCAT","id":"133","title":"GROUP_CONCAT"},"134":{"body":"All aggregate functions can have a filter applied before aggregation. SELECT SUM(price) FILTER(WHERE price > 20) FROM products;","breadcrumbs":"SQL Reference » Functions » FILTER","id":"134","title":"FILTER"},"135":{"body":"","breadcrumbs":"SQL Reference » Functions » Data Type Functions","id":"135","title":"Data Type Functions"},"136":{"body":"The CAST function forces a value into a particular data type. Note that not all types are cast-compatible with each other. SELECT CAST(price AS INTEGER) FROM products;","breadcrumbs":"SQL Reference » Functions » CAST","id":"136","title":"CAST"},"137":{"body":"The TYPEOF function returns the type of the provided value. SELECT TYPEOF('hi2u');\nSELECT TYPEOF(1.12345678901234);\nSELECT TYPEOF(2018-01-01T00:00:00);","breadcrumbs":"SQL Reference » Functions » TYPEOF","id":"137","title":"TYPEOF"},"138":{"body":"","breadcrumbs":"SQL Reference » Functions » Conditional Functions","id":"138","title":"Conditional Functions"},"139":{"body":"The IIF function is a conditional shorthand. It returns the second parameter if the condition is true and the third parameter if the condition is false. SELECT IIF(price > 5.99, 'Expensive!', 'Cheap') FROM products;","breadcrumbs":"SQL Reference » Functions » IIF","id":"139","title":"IIF"},"14":{"body":"Relationships are also dynamic. You can join any two tables on any two columns. Adding a user with id 456 allows a join with the previous posts table. INSERT INTO users (id, name) VALUES (456, 'Vikram'); SELECT * from posts p JOIN users u ON p.user_id = u.id;","breadcrumbs":"Tutorial » Endb SQL Basics » Dynamic Joins","id":"14","title":"Dynamic Joins"},"140":{"body":"The NULLIF function returns TRUE if the two supplied expressions are equal. SELECT NULLIF(1, 1);\nSELECT NULLIF(1, 'zig');","breadcrumbs":"SQL Reference » Functions » NULLIF","id":"140","title":"NULLIF"},"141":{"body":"The COALESCE function returns its first non-null argument. The following example returns 'zig': SELECT COALESCE(NULL, NULL, 'zig', 'zag');","breadcrumbs":"SQL Reference » Functions » COALESCE","id":"141","title":"COALESCE"},"142":{"body":"","breadcrumbs":"SQL Reference » Functions » Encoding Functions","id":"142","title":"Encoding Functions"},"143":{"body":"The BASE64 function takes a hexadecimal-encoded BLOB and returns a base64-encoded string, or vice-versa. BASE64 roundtrips its own data. There is therefore no BLOBFROMBASE64 function. SELECT BASE64(x'010203');\nSELECT BASE64('AQID');","breadcrumbs":"SQL Reference » Functions » BASE64","id":"143","title":"BASE64"},"144":{"body":"The UUID function returns a universally-unique identifier, as a string. The UUID_BLOB function takes a string UUID and returns a BLOB. The UUID_STR function takes a BLOB UUID and returns a string. When given a parameter of their return type, UUID_BLOB and UUID_STR will format the UUID provided. SELECT UUID();\nSELECT UUID_BLOB('d2ce21c9-d268-409a-b1e0-49e1200bfa47');\nSELECT UUID_STR(x'd2ce21c9d268409ab1e049e1200bfa47'); -- formatting:\nSELECT UUID_BLOB(x'd2ce21c9d268409ab1e049e1200bfa47');\nSELECT UUID_STR('d2ce21c9d268409ab1e049e1200bfa47');","breadcrumbs":"SQL Reference » Functions » UUID","id":"144","title":"UUID"},"145":{"body":"The SHA1 function takes either a hexadecimal-encoded BLOB, a string, or a number. It returns the SHA-1 encoding of that value. SELECT SHA1('2');","breadcrumbs":"SQL Reference » Functions » SHA1","id":"145","title":"SHA1"},"146":{"body":"The RANDOMBLOB function returns a random binary large object of the size given, in bytes. The ZEROBLOB function returns a zeroed-out binary large object of the size given, in bytes. SELECT RANDOMBLOB(32);\nSELECT ZEROBLOB(32);","breadcrumbs":"SQL Reference » Functions » RANDOMBLOB, ZEROBLOB","id":"146","title":"RANDOMBLOB, ZEROBLOB"},"147":{"body":"The HEX function takes a BLOB (or coerces its argument into a UTF-8 string, which in turn is interpreted as a BLOB) and turns the BLOB into an upper-case hexadecimal string. The UNHEX function takes a hexadecimal string and turns it into a BLOB. The hexadecimal string provided must contain character pairs . UNHEX takes an optional second parameter: a string containing non-hexadecimal characters to be ignored in the first parameter. If non-hexadecimal characters are found in the first parameter but not ignored in the second parameter, UNHEX returns NULL. SELECT HEX(15);\n-- '3135' SELECT UNHEX('3135');\n-- b'15' SELECT UNHEX('3135ZZ', 'Z');\n-- b'15' SELECT UNHEX('3135ZZ', 'M');\n-- NULL","breadcrumbs":"SQL Reference » Functions » HEX, UNHEX","id":"147","title":"HEX, UNHEX"},"148":{"body":"To make best use of Time Queries, it is a good idea to review the time-related SQL data types, such as TIMESTAMP, DATE, TIME, and INTERVAL. These are covered in the SQL Data Types section. It is also a good idea to review Endb's other time-related functions, in case they are helpful to you: STRFTIME UNIXEPOCH JULIANDAY","breadcrumbs":"SQL Reference » Time Queries » Time Queries","id":"148","title":"Time Queries"},"149":{"body":"All Endb temporal predicates (CONTAINS, OVERLAPS, PRECEDES, SUCCEEDS, IMMEDIATELY PRECEDES, and IMMEDIATELY SUCCEEDS) follow the SQL:2011 standard's \"closed-open period model\". This means that a period represents all times starting from (and including) the start time up to (but excluding) the end time.","breadcrumbs":"SQL Reference » Time Queries » Note on SQL:2011 closed-open period model","id":"149","title":"Note on SQL:2011 closed-open period model"},"15":{"body":"Endb allows you to insert asymmetrical, jagged data. Let's add another user with more columns. INSERT INTO users (id, name, email) VALUES (789, 'Daniela', 'daniela@endatabas.com'); SELECT * from users; Note that the SELECT * is an implicitly dynamic query. It doesn't have any difficulty with the previous user document, even though it lacked an email column.","breadcrumbs":"Tutorial » Endb SQL Basics » Semi-Structured Data","id":"15","title":"Semi-Structured Data"},"150":{"body":"Endb currently only supports times encoded as UTC.","breadcrumbs":"SQL Reference » Time Queries » Note on timezones","id":"150","title":"Note on timezones"},"151":{"body":"Endb provides access to the current value of the clock \"now\" in multiple date/time configurations.","breadcrumbs":"SQL Reference » Time Queries » Now","id":"151","title":"Now"},"152":{"body":"CURRENT_TIMESTAMP gets the current date and time in UTC. SELECT CURRENT_TIMESTAMP;","breadcrumbs":"SQL Reference » Time Queries » CURRENT_TIMESTAMP","id":"152","title":"CURRENT_TIMESTAMP"},"153":{"body":"CURRENT_TIME gets the current time in UTC. SELECT CURRENT_TIME;","breadcrumbs":"SQL Reference » Time Queries » CURRENT_TIME","id":"153","title":"CURRENT_TIME"},"154":{"body":"CURRENT_DATE gets the current date in UTC. Note that this may be different from your local date, depending on the time of day when your query is run. SELECT CURRENT_DATE;","breadcrumbs":"SQL Reference » Time Queries » CURRENT_DATE","id":"154","title":"CURRENT_DATE"},"155":{"body":"All states an Endb database has ever seen are recorded, immutably. Accessing these prior states is accomplished by querying System Time. System Time is encoded in a special column, which is normally invisible to most queries, named SYSTEM_TIME.","breadcrumbs":"SQL Reference » Time Queries » System Time","id":"155","title":"System Time"},"156":{"body":"Endb permits time-traveling queries with the SQL:2011-compatible AS OF operator. The query will treat the DATE or TIMESTAMP supplied after AS OF as if it were that time now . SELECT * FROM products FOR SYSTEM_TIME AS OF 2023-08-25T00:00:00;","breadcrumbs":"SQL Reference » Time Queries » AS OF (Time Travel)","id":"156","title":"AS OF (Time Travel)"},"157":{"body":"Endb permits time-omniscient queries with the SQL:2011-compatible ALL operator. All states, across the entire history of the relevant tables, are visible to a query suffixed with FOR SYSTEM_TIME ALL: SELECT * FROM products FOR SYSTEM_TIME ALL;","breadcrumbs":"SQL Reference » Time Queries » ALL (Time Omniscience)","id":"157","title":"ALL (Time Omniscience)"},"158":{"body":"The syntax for time-aware BETWEEN is the same as the normal BETWEEN operator . Inspect System Time with the form FOR SYSTEM_TIME BETWEEN x AND y. SELECT * FROM products FOR SYSTEM_TIME BETWEEN 2023-08-24T00:00:00 AND 2023-08-25T00:00:00;","breadcrumbs":"SQL Reference » Time Queries » BETWEEN","id":"158","title":"BETWEEN"},"159":{"body":"Selects rows which fall between the two times, similar to BETWEEN, but is exclusive of both the start and end times. SELECT * FROM products FOR SYSTEM_TIME FROM 2023-08-24T00:00:00 TO 2023-08-30T00:00:00;","breadcrumbs":"SQL Reference » Time Queries » FROM ... TO","id":"159","title":"FROM ... TO"},"16":{"body":"It may seem strange to leave jagged columns lying around. Endb doesn't discourage you from cleaning up your data, if you can: UPDATE users SET email = 'vikram@stockholm.se' WHERE name = 'Vikram'; SELECT * from users; The difference in Endb is that we haven't \"migrated\" the old data — it's still there. If you query for Vikram's user document as of 2 minutes ago, you will see the old record without an email. Queries in Endb always default to as-of-now , which is why the results of the query above shouldn't be surprising.","breadcrumbs":"Tutorial » Endb SQL Basics » Data \"Migration\"","id":"16","title":"Data \"Migration\""},"160":{"body":"The standard SQL:2011 period predicates are available.","breadcrumbs":"SQL Reference » Time Queries » Period Predicates","id":"160","title":"Period Predicates"},"161":{"body":"Returns TRUE if the second period is contained within the first. SELECT {start: 2001-01-01, end: 2001-04-01} CONTAINS {start: 2001-02-01, end: 2001-04-01};","breadcrumbs":"SQL Reference » Time Queries » CONTAINS","id":"161","title":"CONTAINS"},"162":{"body":"Returns TRUE if any part of the first period is found within the second. SELECT {start: 2001-01-01, end: 2001-03-01} OVERLAPS {start: 2001-02-01, end: 2001-04-01};","breadcrumbs":"SQL Reference » Time Queries » OVERLAPS","id":"162","title":"OVERLAPS"},"163":{"body":"Returns TRUE if the first period ends before the second period begins. SELECT 2001-03-01 PRECEDES [2001-04-01T00:00:00Z, 2001-05-01];","breadcrumbs":"SQL Reference » Time Queries » PRECEDES","id":"163","title":"PRECEDES"},"164":{"body":"Returns TRUE if the first period begins after the second period ends. SELECT 2001-06-01 SUCCEEDS [2001-04-01T00:00:00Z, 2001-05-01];","breadcrumbs":"SQL Reference » Time Queries » SUCCEEDS","id":"164","title":"SUCCEEDS"},"165":{"body":"Returns TRUE if the first period ends exactly as the second period begins. SELECT 2001-04-01 IMMEDIATELY PRECEDES [2001-04-01T00:00:00Z, 2001-05-01];","breadcrumbs":"SQL Reference » Time Queries » IMMEDIATELY PRECEDES","id":"165","title":"IMMEDIATELY PRECEDES"},"166":{"body":"Returns TRUE if the first period begins exactly as the second period ends. SELECT 2001-05-01 IMMEDIATELY SUCCEEDS [2001-04-01T00:00:00Z, 2001-05-01];","breadcrumbs":"SQL Reference » Time Queries » IMMEDIATELY SUCCEEDS","id":"166","title":"IMMEDIATELY SUCCEEDS"},"167":{"body":"Because Endb is schemaless and semi-structured, it offers a number of powerful path-nativation primitives inspired by JSONPath , SQL/JSON , and their derivatives in legacy relational databases. You will want to familiarize yourself with Endb's nested data types (arrays and objects) before learning about path navigation. In the examples below, path examples are shown in the SELECT clause, but they are also valid in the WHERE clause.","breadcrumbs":"SQL Reference » Path Navigation » Path Navigation","id":"167","title":"Path Navigation"},"168":{"body":"If you are familiar with arrays and objects, try adding some nested objects to the table paths (the table name is arbitrary). INSERT INTO paths {a: 2, b: {a: 3}, c: [{a: 1}, 2]};","breadcrumbs":"SQL Reference » Path Navigation » Nested Objects","id":"168","title":"Nested Objects"},"169":{"body":"Navigating the root of any document (row) as a tree looks like standard SQL, because it is: SELECT a FROM paths; Similarly, however, it is possible to navigate documents listed in an array: SELECT [{a: 2}, {a: 3}, {b: 4}].a;\n-- [{'a': [2, 3]}] It is also possible to navigate fields of sub-documents (columns of nested rows) with further dot notation: SELECT b.a FROM paths;\n-- [{'a': 3}]","breadcrumbs":"SQL Reference » Path Navigation » Root Navigation","id":"169","title":"Root Navigation"},"17":{"body":"Endb eschews nested json in favour of a native, strongly-typed, document-relational model. INSERT INTO users (id, name, friends) VALUES (123, 'Anastasia', [{name: 'Heikki', country: 'Finland'},{name: 'Amit', country: 'Japan'}]); SELECT users.friends[1] FROM users WHERE id = 123; The users.friends[1] expression above is one of many path expressions inspired by JSONPath , SQL/JSON , and their derivatives in legacy relational databases. A detailed explanation of Endb's arrays and objects is provided in the SQL Reference","breadcrumbs":"Tutorial » Endb SQL Basics » Nested Data","id":"17","title":"Nested Data"},"170":{"body":"It is possible (and helpful) to create a row literal to represent rows returned, so they are easier to navigate. The format of a row literal is { .* }: SELECT { paths.* } FROM paths; See Row Literal Data Type","breadcrumbs":"SQL Reference » Path Navigation » Row Literals","id":"170","title":"Row Literals"},"171":{"body":"The double dot (..) notation performs a \"deep scan\" by recursively walking the document to match the name given. SELECT { paths.* }..a FROM paths;\n-- [{'a': [2, 3, 1]}] SELECT b..a FROM paths;\n-- [{'a': [3]}]","breadcrumbs":"SQL Reference » Path Navigation » Recursive Paths","id":"171","title":"Recursive Paths"},"172":{"body":"The square bracket notation (['']) performs a lookup of a single descendent child. SELECT { paths.* }['b']['a'] FROM paths;\n-- [{'a': 3}] SELECT b['a'] FROM paths;\n-- [{'a': 3}] Named Children can be combined with recursive paths, though the default recursive path syntax is synonymous with named children: SELECT { paths.* }..a FROM paths;\nSELECT { paths.* }..['a'] FROM paths;\nSELECT b..['a'] FROM paths;","breadcrumbs":"SQL Reference » Path Navigation » Named Child","id":"172","title":"Named Child"},"173":{"body":"The square bracket notation ([]) can also perform indexed lookups of a single descendent child. SELECT { paths.* }['b'][0] FROM paths;\n-- [{'column1': {'a': 3}}] SELECT { paths.* }['c'][1] FROM paths;\n-- [{'column1': 2}] SELECT c[1] FROM paths;\n-- [{'column1': 2}] Numbered Children can be combined with recursive paths. This finds and returns all indexed values, counting backward: SELECT { paths.* }..[-1] FROM paths;\n-- [{'column1': [2]}]","breadcrumbs":"SQL Reference » Path Navigation » Numbered Child","id":"173","title":"Numbered Child"},"174":{"body":"The square bracket notation ([*]) can also perform a wildcard lookup of all descendent children. SELECT [{a: 2}, {a: 3}, {b: 4}, 5][*]; Wildcards can be combined with recursive paths. This finds and returns all values: SELECT { paths.* }..[*] FROM paths;\n-- [{'column1': [2, {'a': 3}, [{'a': 1}, 2], 3, {'a': 1}, 2, 1]}] SELECT c..[*] FROM paths;\n-- [{'column1': [{'a': 1}, 2, 1]}]","breadcrumbs":"SQL Reference » Path Navigation » Wildcard Child","id":"174","title":"Wildcard Child"},"175":{"body":"Path editing is accomplished with an extended path syntax, where each path begins with $. Endb's path editing functions are heavily inspired by SQLite's JSON Functions . Path editing functions add functionality ($, #) to a subset Endb's normal path navigation syntax: path editing functions do not support recursion or wildcards. Path editing functions are available to UPDATE ... SET and UPDATE ... UNSET/REMOVE .","breadcrumbs":"SQL Reference » Path Navigation » Path Functions","id":"175","title":"Path Functions"},"176":{"body":"Takes an object, a path, and a new value. The new value will overwrite existing fields or add a new field if it doesn't already exist. SELECT path_set({a: 2, c: 4}, $.c, [97,96]);\n-- {'a': 2, 'c': [97, 96]}","breadcrumbs":"SQL Reference » Path Navigation » path_set","id":"176","title":"path_set"},"177":{"body":"Takes an object, a path, and a new value. The new value is ignored if the path does not match an existing field. SELECT path_replace({a: 2, c: 4}, $.a, 99);\n-- {'a': 99, 'c': 4} SELECT path_replace({a: 2, c: 4}, $.e, 99);\n-- {'a': 2, 'c': 4}","breadcrumbs":"SQL Reference » Path Navigation » path_replace","id":"177","title":"path_replace"},"178":{"body":"Takes an object, a path, and a new value. The new value is ignored if the path matches an existing field. SELECT path_insert({a: 2, c: 4}, $.e, 99);\n-- {'a': 2, 'c': 4, 'e': 99}","breadcrumbs":"SQL Reference » Path Navigation » path_insert","id":"178","title":"path_insert"},"179":{"body":"Takes an object and a variable number of arguments specifying which paths to remove. If a path is not found, nothing is removed for that argument. # represents the last element in a collection. SELECT path_remove([0,1,2,3,4], $[#-1], $[0]);\n-- [1, 2, 3] SELECT path_remove({x: 25, y: 42}, $.y);\n-- {'x': 25}","breadcrumbs":"SQL Reference » Path Navigation » path_remove","id":"179","title":"path_remove"},"18":{"body":"Because of Endb's native document-relational model, rows are documents and vice-versa. You can use an INSERT statement to add a document directly to the database: INSERT INTO users {id: 890, name: 'Aaron', friends: [{name: 'Jeff', country: 'Canada'},{name: 'Kaia', country: 'Japan'}]};","breadcrumbs":"Tutorial » Endb SQL Basics » Documents","id":"18","title":"Documents"},"180":{"body":"Takes an object and a variable number of path arguments. Returns the value found at each path, if any, otherwise NULL. If only a single path is provided, a scalar is returned. If multiple paths are provided, an array is returned. SELECT path_extract({a: 2, c: [4, 5, {f: 7}]}, $.c[2].f);\n-- 7 SELECT path_extract({a: 2, c: [4, 5], f: 7}, $.x, $.a);\n-- [NULL, 2]","breadcrumbs":"SQL Reference » Path Navigation » path_extract","id":"180","title":"path_extract"},"181":{"body":"Endb allows introspection of its information schema. The Endb information schema does not describe the structure of each table. Because Endb is a document database, each document (row) is responsible for its own schema. The information schema is used by Endb to describe database objects at a high level and is used for schemaless queries, such as SELECT *. Note that all information schema tables are hard-coded to lower-case names and must be queried as such.","breadcrumbs":"SQL Reference » Schema » Schema","id":"181","title":"Schema"},"182":{"body":"-> SELECT * FROM information_schema.tables;\n[{'table_catalog': None, 'table_name': 'stores', 'table_schema': 'main', 'table_type': 'BASE TABLE'}, {... 'table_name': 'products', ... }, {... 'table_name': 'sales', ... }]","breadcrumbs":"SQL Reference » Schema » Tables","id":"182","title":"Tables"},"183":{"body":"-> SELECT * FROM information_schema.columns;\n[{'column_name': 'addresses', 'ordinal_position': 0, 'table_catalog': None, 'table_name': 'stores', 'table_schema': 'main'}, {'column_name': 'brand', ... }, {'column_name': 'price', ... }, ... ]","breadcrumbs":"SQL Reference » Schema » Columns","id":"183","title":"Columns"},"184":{"body":"-> SELECT * FROM information_schema.views;\n[{'table_catalog': None, 'table_name': 'sold_products', 'table_schema': 'main', 'view_definition': 'SELECT * FROM products p JOIN sales s ON p.id = s.p_id'}]","breadcrumbs":"SQL Reference » Schema » Views","id":"184","title":"Views"},"185":{"body":"The check_constraints table in Endb is used to store assertions . -> SELECT * FROM information_schema.check_constraints;\n[{'check_clause': \"(NOT EXISTS (SELECT * FROM users WHERE TYPEOF(email) != 'text'))\", 'constraint_catalog': None, 'constraint_name': 'string_email', 'constraint_schema': 'main'}]","breadcrumbs":"SQL Reference » Schema » Check Constraints","id":"185","title":"Check Constraints"},"186":{"body":"Endb provides basic view functionality to support environments which require a static schema.","breadcrumbs":"SQL Reference » Views » Views","id":"186","title":"Views"},"187":{"body":"CREATE VIEW creates a non-materialized view based on the query which follows the AS operator. Column names are listed in parentheses after the view name. CREATE VIEW simple_products(name, price) AS SELECT name, ROUND(price) FROM products; Alternatively, named columns can each immediately follow queried columns. CREATE VIEW easy_products AS SELECT name label, ROUND(price) easy_price FROM products; NOTE: To modify a view, use DROP VIEW then re-create the view with the desired columns.","breadcrumbs":"SQL Reference » Views » CREATE VIEW","id":"187","title":"CREATE VIEW"},"188":{"body":"DROP VIEW deletes a view based on its name. DROP VIEW easy_products;","breadcrumbs":"SQL Reference » Views » DROP VIEW","id":"188","title":"DROP VIEW"},"189":{"body":"","breadcrumbs":"SQL Reference » Assertions » Assertions","id":"189","title":"Assertions"},"19":{"body":"Endb will always do its best to provide you with meaningful error messages that point you to a solution: SELECT * FROM im_not_here;","breadcrumbs":"Tutorial » Endb SQL Basics » Error Messages","id":"19","title":"Error Messages"},"190":{"body":"Creates a checked, deferred assertion which executes on commit for inserts and updates. Although CREATE ASSERTION (normally) needs to refer to the table it is asserting on, that table need not exist for the assertion to be created. CREATE ASSERTION string_email CHECK (NOT EXISTS (SELECT * FROM users WHERE TYPEOF(email) != 'text'));\nINSERT INTO users {name: 'Steven', email: 123};","breadcrumbs":"SQL Reference » Assertions » CREATE ASSERTION","id":"190","title":"CREATE ASSERTION"},"191":{"body":"Removes an assertion from the database based on its name. DROP ASSERTION string_email;","breadcrumbs":"SQL Reference » Assertions » DROP ASSERTION","id":"191","title":"DROP ASSERTION"},"192":{"body":"Reference documentation exists as a detailed perspective on each feature of Endb. It does not need to be read from beginning to end. Installation Operation HTTP API Data Types","breadcrumbs":"Reference » Reference","id":"192","title":"Reference"},"193":{"body":"At this stage, Endatabas is highly experimental. We do not push images to Docker Hub often. We recommend building the local Docker image if you want a recent version. You only need one of the following options. If you followed the Quickstart, you already have the Docker Hub version installed.","breadcrumbs":"Reference » Installation » Installation","id":"193","title":"Installation"},"194":{"body":"Endb is still in early alpha. While in alpha, new versions are not guaranteed to have binary-compatible storage with previous versions. We encourage you to experiment with Endb but please do not use it in production until a General Availability release.","breadcrumbs":"Reference » Installation » Warning: Early Alpha","id":"194","title":"Warning: Early Alpha"},"195":{"body":"If you run Docker, you can use the default command below. --rm cleans up (optional), -p exposes the default endb port, and -v mounts a local volume so your data persists even if you shut down the Docker image. mkdir -p endb_data\ndocker pull endatabas/endb\ndocker run --rm -p 3803:3803 -v endb_data:/app/endb_data endatabas/endb If you run Podman, you'll need to specify the docker.io repo explicitly: mkdir -p endb_data\npodman pull docker.io/endatabas/endb\npodman run --rm -p 3803:3803 -v endb_data:/app/endb_data docker.io/endatabas/endb","breadcrumbs":"Reference » Installation » Installing from Docker Hub","id":"195","title":"Installing from Docker Hub"},"196":{"body":"If you want to run endb from the main branch, compile and build the Docker image: https://github.com/endatabas/endb/#building https://github.com/endatabas/endb/#docker","breadcrumbs":"Reference » Installation » Installing from Git: Docker","id":"196","title":"Installing from Git: Docker"},"197":{"body":"If you don't want Docker at all, you can compile and run the endb binary: https://github.com/endatabas/endb/#building ./target/endb NOTE: If you move the endb binary, be sure to copy libendb.so (Linux) or libendb.dylib (MacOS) into the same directory. This is because endb requires libendb to run.","breadcrumbs":"Reference » Installation » Installing from Git: Binary","id":"197","title":"Installing from Git: Binary"},"198":{"body":"The endb executable aims to provide self-explanatory help for direct usage of the binary. By default, endb logs to STDOUT. $ endb --help\nUsage: endb [OPTIONS] Options: -d, --data-directory  [env: ENDB_DATA_DIRECTORY=] [default: endb_data] -p, --http-port  [env: ENDB_HTTP_PORT=] [default: 3803] --username  [env: ENDB_USERNAME=] --password  [env: ENDB_PASSWORD=] -h, --help Print help -V, --version Print version","breadcrumbs":"Reference » Operation » Operation","id":"198","title":"Operation"},"199":{"body":"At this experimental stage, only raw HTTP drivers are available. Any HTTP client may be used but in the examples below, we'll use curl. You can send SQL statements to endb over HTTP: curl -d \"INSERT INTO users (name) VALUES ('Tianyu')\" -H \"Content-Type: application/sql\" -X POST http://localhost:3803/sql\ncurl -d \"SELECT * FROM users\" -H \"Content-Type: application/sql\" -X POST http://localhost:3803/sql You can send SQL to endb with standard HTTP Query Parameters, Verbs, Content Types, Accept Headers, and HTTP Basic Authentication. Each one is outlined below.","breadcrumbs":"Reference » HTTP API » HTTP API","id":"199","title":"HTTP API"},"2":{"body":"This quick tutorial intends to walk you through the core aspects of Endb. By the end, you will have endb installed and you will have used it to learn some of what it can do. Quickstart Try It! Endb SQL Basics","breadcrumbs":"Tutorial » Tutorial","id":"2","title":"Tutorial"},"20":{"body":"The SQL Reference contains details and edge cases about Endb SQL. NOTE: The Endb SQL dialect is under active development. While most major features of Endb SQL are stable, some more esoteric features (MATCH, path navigation, etc.) may experience naming and semantics changes before Endb 1.0 is released. Intention Data Manipulation Queries SQL Data Types Operators Functions Time Queries Path Navigation Schema Views Assertions","breadcrumbs":"SQL Reference » SQL Reference","id":"20","title":"SQL Reference"},"200":{"body":"The query parameters Endb's HTTP endpoint accepts are: q - (q)uery: a SQL query, optionally parameterized p - (p)arameters: named or positional parameters m - (m)ultiple statements: bulk parameters , used for bulk insert/update","breadcrumbs":"Reference » HTTP API » HTTP Query Parameters","id":"200","title":"HTTP Query Parameters"},"201":{"body":"POST allows explicit Content Types and Accept headers: curl -d 'SELECT 1' -H \"Content-Type: application/sql\" -H \"Accept: text/csv\" -X POST http://localhost:3803/sql GET allows a single, simple URL. GET does not permit DML. curl -X GET \"http://localhost:3803/sql?q=SELECT%201\"","breadcrumbs":"Reference » HTTP API » HTTP Verbs","id":"201","title":"HTTP Verbs"},"202":{"body":"The HTTP Content-Type header is used to specify what format the client is sending data to Endb.","breadcrumbs":"Reference » HTTP API » Content Types","id":"202","title":"Content Types"},"203":{"body":"curl -d '{\"q\": \"SELECT * from products;\"}' -H \"Content-Type: application/json\" -X POST http://localhost:3803/sql\ncurl -d '{\"q\": \"SELECT * from products WHERE name = ?;\", \"p\": [\"Salt\"]}' -H \"Content-Type: application/json\" -X POST http://localhost:3803/sql\ncurl -d '{\"q\": \"INSERT INTO products {name: :name};\", \"p\": {\"name\": \"Paprika\"}}' -H \"Content-Type: application/json\" -X POST http://localhost:3803/sql NOTE: To enable strongly-typed values, payloads sent with the application/json content type have values resolved with JSON-LD scalars. Standard JSON values are a subset of JSON-LD scalars, so data sent as regular JSON is unaffected by this behaviour.","breadcrumbs":"Reference » HTTP API » application/json:","id":"203","title":"application/json:"},"204":{"body":"Although values in the application/json content type are resolved using JSON-LD scalars, you can explicitly specify an application/ld+json content type to avoid all ambiguity. See JSON-LD . curl -d '{\"q\": \"INSERT INTO events {start: :start};\", \"p\": {\"start\": {\"@type\": \"xsd:dateTime\", \"@value\": \"2011-04-09T20:00:00Z\"}}}' -H \"Content-Type: application/ld+json\" -X POST http://localhost:3803/sql","breadcrumbs":"Reference » HTTP API » application/ld+json","id":"204","title":"application/ld+json"},"205":{"body":"curl -d 'SELECT 1' -H \"Content-Type: application/sql\" -X POST http://localhost:3803/sql Submit parameters to application/sql by providing form data or query parameters. Form data and query parameters can be combined, though it is not necessarily recommended. curl -F q=\"INSERT INTO sauces {name: ?, color: ?};\" -X POST http://localhost:3803/sql?p=%5B%22ketchup%22%2C%22purple%22%5D","breadcrumbs":"Reference » HTTP API » application/sql:","id":"205","title":"application/sql:"},"206":{"body":"curl -F q=\"SELECT * from products;\" -H \"Content-Type: multipart/form-data\" -X POST http://localhost:3803/sql\ncurl -F q=\"INSERT INTO products {name: ?};\" -F p='[\"Sriracha\"]' -X POST http://localhost:3803/sql NOTE: Many HTTP clients (including curl) automatically assume a content type of multipart/form-data when form fields are provided. This is true for curl when the -F (--form) argument is used and it has been elided from further examples.","breadcrumbs":"Reference » HTTP API » multipart/form-data","id":"206","title":"multipart/form-data"},"207":{"body":"Although the other content types are preferable for obvious reasons, application/x-www-form-urlencoded is offered for completeness. curl -d 'q=SELECT%20*%20FROM%20products;' -H \"Content-Type: application/x-www-form-urlencoded\" -X POST http://localhost:3803/sql","breadcrumbs":"Reference » HTTP API » application/x-www-form-urlencoded","id":"207","title":"application/x-www-form-urlencoded"},"208":{"body":"The HTTP Accept header is used to specify how data is returned to the Endb client. The default Accept header content type is application/json.","breadcrumbs":"Reference » HTTP API » Accept Headers","id":"208","title":"Accept Headers"},"209":{"body":"text/csv returns comma-separated rows. Column order from the SELECT clause is maintained. curl -d \"SELECT * FROM (VALUES (1,'hello'), (2,'csv')) t1\" -H \"Content-Type: application/sql\" -H \"Accept: text/csv\" -X POST http://localhost:3803/sql returns: \"column1\",\"column2\"\n2,\"csv\"\n1,\"hello\"","breadcrumbs":"Reference » HTTP API » text/csv","id":"209","title":"text/csv"},"21":{"body":"The goal of Endb's SQL dialect is to be small, coherent, and powerful. The SQL specification is massive, with pages ordering in the thousands. Rather than implement the entire SQL specification from scratch (a gargantuan task) or mimic the SQL dialect of another database, Endb chooses a tiny core and builds powerful, composable features on top of that. This tiny core draws inspiration from many sources, but SQLite in particular. If SQLite supports a particular operator or function, Endb SQL also tries to. Endb SQL also draws strong inspiration from the SQL specification itself (and its predecessors ) and from PostgreSQL . Endb SQL's nested data is also heavily inspired by JSONPath , SQL/JSON , and their derivatives found in major SQL databases. Light inspiration is drawn from PartiQL , SQL++ , and XQuery . For more information on Endb's influences, please see our bibliography .","breadcrumbs":"SQL Reference » Intention » Intention","id":"21","title":"Intention"},"210":{"body":"application/json returns rows as an array of JSON tuples. Column order from the SELECT clause is maintained. curl -d \"SELECT * FROM (VALUES (1,'hello'), (2,DATE('2023-07-22'))) t1\" -H \"Content-Type: application/sql\" -H \"Accept: application/json\" -X POST http://localhost:3803/sql returns: [[2,\"2023-07-22\"],[1,\"hello\"]]","breadcrumbs":"Reference » HTTP API » application/json","id":"210","title":"application/json"},"211":{"body":"application/x-ndjson returns newline-delimited JSON documents. Column order from the SELECT clause is not maintained. JSON documents cannot guarantee column order. curl -d \"SELECT * FROM (VALUES (1,'hello'), (2,DATE('2023-07-22'))) t1\" -H \"Content-Type: application/sql\" -H \"Accept: application/x-ndjson\" -X POST http://localhost:3803/sql returns: {\"column1\":2,\"column2\":\"2023-07-22\"}\n{\"column1\":1,\"column2\":\"hello\"}","breadcrumbs":"Reference » HTTP API » application/x-ndjson","id":"211","title":"application/x-ndjson"},"212":{"body":"application/ld+json returns documents of strongly-typed (\"Linking Data\") JSON records. Column order from the SELECT clause is not maintained. JSON documents cannot guarantee column order. curl -d \"SELECT * FROM (VALUES (1,'hello'), (2,DATE('2023-07-22'))) t1\" -H \"Content-Type: application/sql\" -H \"Accept: application/ld+json\" -X POST http://localhost:3803/sql returns: {\"@context\":{\"xsd\":\"http://www.w3.org/2001/XMLSchema#\",\"@vocab\":\"http://endb.io/\"},\"@graph\":[{\"column1\":2,\"column2\":{\"@value\":\"2023-07-22\",\"@type\":\"xsd:date\"}},{\"column1\":1,\"column2\":\"hello\"}]} See JSON-LD .","breadcrumbs":"Reference » HTTP API » application/ld+json","id":"212","title":"application/ld+json"},"213":{"body":"application/vnd.apache.arrow.file returns columnar data as an Apache Arrow file. curl -d \"SELECT * FROM (VALUES (1,'hello'), (2,DATE('2023-07-22'))) t1\" -H \"Content-Type: application/sql\" -H \"Accept: application/vnd.apache.arrow.file\" -X POST http://localhost:3803/sql --output hello.arrow The above command returns a file containing a single RecordBatch in an Apache Arrow file in IPC format. You can examine the file with functions like pyarrow.ipc.open_file , as seen in this gist .","breadcrumbs":"Reference » HTTP API » application/vnd.apache.arrow.file","id":"213","title":"application/vnd.apache.arrow.file"},"214":{"body":"application/vnd.apache.arrow.stream returns columnar data as an Apache Arrow stream. curl -d \"SELECT * FROM (VALUES (1,'hello'), (2,DATE('2023-07-22'))) t1\" -H \"Content-Type: application/sql\" -H \"Accept: application/vnd.apache.arrow.stream\" -X POST http://localhost:3803/sql --output streamed.arrow The above command returns a file containing an Apache Arrow IPC stream. You can examine the file with functions like pyarrow.ipc.open_stream , as seen in this gist .","breadcrumbs":"Reference » HTTP API » application/vnd.apache.arrow.stream","id":"214","title":"application/vnd.apache.arrow.stream"},"215":{"body":"Endb supports HTTP Basic Authentication as defined by RFC 7235 . Pass --username and --password arguments to the endb binary to force basic authentication for HTTP connections. ./target/endb --username zig --password zag Then, from any HTTP client, provide the username and password combination to execute queries. curl --user zig:zag -d \"SELECT 'Hello World';\" -H \"Content-Type: application/sql\" -X POST http://localhost:3803/sql If the client passes an incorrect username or password, it will receive a 401 Authorization Required HTTP status code as a result, but no body. Be aware of this to ensure client code is written to detect 401 status codes. $ curl -i --user zig:wrong -d \"SELECT 'Hello World';\" -H \"Content-Type: application/sql\" -X POST http://localhost:3803/sql\nHTTP/1.1 401 Authorization Required","breadcrumbs":"Reference » HTTP API » HTTP Basic Authentication","id":"215","title":"HTTP Basic Authentication"},"216":{"body":"SQL parameters are available to: application/json and application/ld+json as part of the POST body multipart/form-data as form data application/x-www-form-urlencoded as URL query parameters application/sql as form data and/or URL query parameters Parameters can be JSON literals, JSON-LD scalars, or SQL literals. A JSON-LD scalar always has the form: {\"@type\": \"xsd:TYPE\", \"@value\": \"DATA\"}. JSON-LD types are listed under the Data Types table.","breadcrumbs":"Reference » HTTP API » Parameters","id":"216","title":"Parameters"},"217":{"body":"Named parameters substitute parameter placeholders with the form :param by the parameter key with the corresponding name. Named parameters are represented as a JSON object. curl -d '{\"q\": \"INSERT INTO products {name: :name, price: :price};\", \"p\": {\"name\": \"Paprika\", \"price\": 2.99}}' -H \"Content-Type: application/json\" -X POST http://localhost:3803/sql\ncurl -d '{\"q\": \"INSERT INTO events {start: :start};\", \"p\": {\"start\": {\"@type\": \"xsd:dateTime\", \"@value\": \"2011-04-09T20:00:00Z\"}}}' -H \"Content-Type: application/ld+json\" -X POST http://localhost:3803/sql\ncurl -F q=\"INSERT INTO products {name: :sauce};\" -F p='{\"sauce\": \"Sriracha\"}' -X POST http://localhost:3803/sql","breadcrumbs":"Reference » HTTP API » Named Parameters","id":"217","title":"Named Parameters"},"218":{"body":"Positional parameters substitute parameter placeholders with the form ? by the parameter values, in the order they appear. Positional parameters are respresented as a JSON array. curl -d '{\"q\": \"SELECT * from products WHERE name = ? AND price > ?;\", \"p\": [\"Salt\", 3.99]}' -H \"Content-Type: application/json\" -X POST http://localhost:3803/sql\ncurl -d '{\"q\": \"INSERT INTO events {start: ?};\", \"p\": [{\"@type\": \"xsd:dateTime\", \"@value\": \"2011-04-09T20:00:00Z\"}]}' -H \"Content-Type: application/ld+json\" -X POST http://localhost:3803/sql\ncurl -F q=\"INSERT INTO products {name: ?};\" -F p='[\"Sriracha\"]' -X POST http://localhost:3803/sql","breadcrumbs":"Reference » HTTP API » Positional Parameters","id":"218","title":"Positional Parameters"},"219":{"body":"Bulk operations are possible by setting the m flag to true. Bulk operations are available to both named and positional parameters. The list of parameters supplied in bulk must be nested in an array. curl -d '{\"q\": \"INSERT INTO products {name: :name};\", \"p\": [{\"name\": \"Soda\"}, {\"name\": \"Tonic\"}], \"m\": true}' -H \"Content-Type: application/json\" -X POST http://localhost:3803/sql\ncurl -F q=\"INSERT INTO sauces {name: ?, color: ?};\" -F p='[[\"Mustard\", \"Yellow\"], [\"Ketchup\", \"Red\"]]' -F m=true -X POST http://localhost:3803/sql","breadcrumbs":"Reference » HTTP API » Bulk Parameters","id":"219","title":"Bulk Parameters"},"22":{"body":"Creating, updating, and deleting data in Endb is done using standard SQL Data Manipulation Language (DML). Endb is also immutable and schemaless, so it contains a number of shorthands and document-oriented conveniences. Endb does not require any Data Definition Language (DDL), such as CREATE TABLE.","breadcrumbs":"SQL Reference » Data Manipulation » Data Manipulation","id":"22","title":"Data Manipulation"},"220":{"body":"As it is possible to receive Apache Arrow data from an Endb query, it is possible to submit Apache Arrow as a statement parameter. The example below assumes the existence of a a table called names, which only contains one column (name). Apache Arrow Streams can also be used as parameters in the same way. # create a sample Arrow file:\ncurl -d \"SELECT * FROM names;\" -H \"Content-Type: application/sql\" -H \"Accept: application/vnd.apache.arrow.file\" -X POST http://localhost:3803/sql --output names.arrow\n# use the sample Arrow file:\ncurl -F m=true -F q=\"INSERT INTO projects {name: :name};\" -F \"p=@names.arrow;type=application/vnd.apache.arrow.file\" -X POST http://localhost:3803/sql NOTE: This feature should be used with caution. Do not submit arbitrary Arrow files as parameters. If a malformed Arrow file is submitted, the error message returned (if any) is unlikely to provide guidance. Preferably, Arrow files should be created using Endb itself, as in the example above. Most users will prefer to use a human-readable file format instead, such as a JSON variant or static SQL statements.","breadcrumbs":"Reference » HTTP API » Apache Arrow File Parameters","id":"220","title":"Apache Arrow File Parameters"},"221":{"body":"Bulk inserts are possible by combining the tools mentioned under Parameters . For example, the OBJECTS keyword can insert an array of object literals. Note that each object used as a positional parameter must be wrapped in a JSON array, since there may be more than one positional parameter supplied. Similarly, each named parameter must be wrapped in an object containing a key of the corresponding name. curl -F m=true -F q=\"INSERT INTO products OBJECTS ?\" -F p=\"[[{name: 'jam'}], [{name: 'butter'}]]\" -X POST http://localhost:3803/sql\ncurl -F m=true -F q=\"INSERT INTO products OBJECTS :product\" -F p=\"[{product: {name: 'jelly'}}, {product: {name: 'ghee'}}]\" -X POST http://localhost:3803/sql","breadcrumbs":"Reference » HTTP API » Bulk Insert","id":"221","title":"Bulk Insert"},"222":{"body":"It is possible to pass multiple SQL statements to Endb by delimiting them with semicolons. Parameters will be passed to all statements in order. Only the result of the last statement is returned to the client. In the following example, the INSERT will be successful but will not return a result. The SELECT will return to the client. curl --form-string q=\"INSERT INTO sauces {name: ?, color: ?}; SELECT {namo: ?, colour: ?};\" -F p='[\"Mustard\", \"Yellow\", \"Ketchup\", \"Red\"]' -X POST http://localhost:3803/sql NOTE: --form-string is required instead of --form to send semicolon-delimited statements with curl.","breadcrumbs":"Reference » HTTP API » Multiple Statements","id":"222","title":"Multiple Statements"},"223":{"body":"","breadcrumbs":"Reference » Data Types » Data Types","id":"223","title":"Data Types"},"224":{"body":"Endb supports the following native scalar types for now. JSON-LD values with a type of @json will be returned from Endb as JSON literals, verbatim. The @type listed in parentheses is for reference purposes only. JSON literal types are implicit so a @value/@type pair is not returned for a JSON literal. SQL JSON-LD Example Literal Description NULL @json null Null, nil, undefined, or missing TEXT @json (xsd:string) \"hello\" UTF-8 string BOOLEAN @json (xsd:boolean) FALSE 8-bit boolean INTEGER @json (xsd:int[eger]) 42 64/128-bit two's complement integer REAL @json (xsd:double) 9007199254740992.123 64-bit IEEE 754 floating point number TIMESTAMP xsd:dateTime 2007-01-01T00:00:00 ISO microsecond precision timestamp DATE xsd:date 2007-01-01 ISO date TIME xsd:time 23:30:00 ISO time INTERVAL xsd:duration PT12H34M56.789S ISO interval BLOB xsd:base64Binary x'DEADBEEF' Binary large object SQL Data Types are covered in detail in the SQL Reference.","breadcrumbs":"Reference » Data Types » Scalars","id":"224","title":"Scalars"},"225":{"body":"SQL JSON-LD Example Literal Description ARRAY @json [\"Joe\", \"Dan\", \"Dwayne\"] Zero-based array OBJECT @json {n: 3, b: 2023-01-01} Object, map, dict, document","breadcrumbs":"Reference » Data Types » Collections","id":"225","title":"Collections"},"226":{"body":"SQL JSON-LD Description DECIMAL xsd:decimal Arbitrary precision decimal. Use 2 BIGINTs or VARCHAR URI xsd:anyURI Unsupported. Use VARCHAR UUID @json (xsd:string) Unsupported. Use VARCHAR or BLOB If you strongly feel you need a native representation of one of these types, email us: hello@endatabas.com","breadcrumbs":"Reference » Data Types » Unsupported Scalar Types","id":"226","title":"Unsupported Scalar Types"},"227":{"body":"What? Why? Architecture Roadmap License","breadcrumbs":"Appendix » Appendix","id":"227","title":"Appendix"},"228":{"body":"From the outside, Endatabas (or Endb ) is an open source SQL document database with full history. On the inside, this means all records in Endatabas are immutable. An ERASE statement is provided for compliance with laws and policies like GDPR. Time-travel is possible, but queries default to \"as-of-now\". (Which is the thing you want 97% of the time.) Rows are \"schema-last\" documents and joins can be arbitrary, but queries are written in SQL. Endb stores data in Apache Arrow: scalars are strongly typed, the on-disk format is columnar, and the execution engine understands rows and columns. Endb separates storage from compute to provide unlimited disk space. In Swedish, Endatabas means both \"a database\" and \" one database\". This One Database Dream is twofold: Endb hopes to provide HTAP , so a secondary analytics database is not required for most users. Endb plans to use AI ( adaptive indexing ) to provide fast OLTP and OLAP queries on cheap, elastic infrastructure.","breadcrumbs":"Appendix » What? » What is Endatabas?","id":"228","title":"What is Endatabas?"},"229":{"body":"After years of market research, the complaint of database users is universal: \"I want to stop babysitting the database.\" This can mean many things but they're all expensive and complex. The database equivalent of Greenspun's 10th Rule might be \"any sufficiently complicated backend system contains an ad-hoc, informally-specified, bug-ridden, slow implementation of half a database.\" This was true for much of the work we did in the 2010s and 2020s. \"Babysitting\" is sometimes the energy wasted by repeatedly building and maintaining ad-hoc databases for ourselves instead of building tools for customers. Buying data products also requires babysitting. DBAs babysit Oracle indexes. Developers babysit Postgres query optimizations. Data engineers babysit ETL pipelines. Analysts baybsit Redshift history. SREs babysit Aurora costs. Endb can't solve all these problems, but it attempts to be a jack-of-all-trades database that solves as many as it can — for as many people as it can.","breadcrumbs":"Appendix » What? » Who wants One Database?","id":"229","title":"Who wants One Database?"},"23":{"body":"To create a new document, you can use the standard SQL INSERT command. INSERT INTO products (product_no, name, price) VALUES (1, 'Tofu', 7.99); To create multiple new documents at once, delimit their value lists with commas: INSERT INTO products (product_no, name, price) VALUES (1, 'Butter', 5.99), (2, 'Margarine', 4.99); It is also possible to insert a document directly using an OBJECT literal . INSERT INTO products {product_no: 3, name: 'Tea', price: 3.99}; To insert multiple documents directly, delimit documents with commas: INSERT INTO products {name: 'Coffee', price: 3.99}, {name: 'Croissant', price: 2.99}; It is possible to insert the results of a query: INSERT INTO cheap_products SELECT * FROM products WHERE price < 4.00;","breadcrumbs":"SQL Reference » Data Manipulation » INSERT","id":"23","title":"INSERT"},"230":{"body":"After years of Computer Science research, it's also clear a sea change in database tech is due... right about now. (Give or take ten years. Our timing may be off.) Hellerstein and Stonebraker's What Goes Around Comes Around remains true, decade after decade, since it was published in 2004. As always, the relational data model is still king and SQL is still the lingua franca of databases. Together, they assimilate new rivals every decade or so. Endatabas tries to stand right at the center of this upcoming collapse of the data toolchain. If we, as an industry, can drop a decade's vestigial growth in favour of a tighter, simpler solution? Wonderful. But what if we could shed a half-century's vestiges? Perhaps event streams, relations, documents, graphs, temporal data, ETL and CDC can all live under one roof for many businesses. Let's see. We're not sure if we can make this work. But it's exciting to try. — One Database: Clean. Simple. Less. (Read more in Why Endatabas? )","breadcrumbs":"Appendix » What? » When is One Database possible?","id":"230","title":"When is One Database possible?"},"231":{"body":"(Read more in What is Endatabas? ) Why did we build Endatabas (aka Endb) at all? Isn't one of the many ( many ) existing databases good enough? Many incumbent databases serve their use cases and markets well. But the demands placed on databases are growing rapidly. These demands pull in multiple directions, all at once, and existing technology cannot support them without introducing enormous complexity. Metamorphosis is required. Endb takes good ideas and makes them easier to access, while reducing operational headache. It does not try to be flashy or unnecessarily revolutionary. Instead, it tries to be simple and familiar on the surface while providing a lot of new power under the covers. Let's talk about what that means in clear, concrete terms.","breadcrumbs":"Appendix » Why? » Why Endatabas?","id":"231","title":"Why Endatabas?"},"232":{"body":"The tagline \"SQL Document Database With Full History\" says a lot, but it doesn't say everything. Endatabas is, first and foremost, an immutable database . That's the Full History part. But storing all your data, forever, has clear implications. We consider these implications to be the pillars of Endatabas. In 3D geometry, the legs of a tripod are mutually supportive; as long as all three feet are in contact with the ground, the tripod will not wobble or collapse. So it is with the pillars. Each supports and implies the others. The pillars are as follows: Full History (requires: immutable data and erasure) Timeline (requires: time-traveling queries) Separation of Storage from Compute (requires: light and adaptive indexing) Documents (requires: schemaless tables, \"schema-per-row\", arbitrary joins) Analytics (requires: columnar storage and access) At the top of this five-dimensional structure is SQL, the lingua franca of database queries. We believe it is the right time to integrate these ideas. But first let's go back a few decades to see how we got here.","breadcrumbs":"Appendix » Why? » What is Endatabas, anyway?","id":"232","title":"What is Endatabas, anyway?"},"233":{"body":"None of the ideas in Endatabas are new. George Copeland's What if mass storage were free? asked, back in 1980, what an immutable database might look like. His prescient vision for a database with full history enjoys the clarity of a researcher at the beginning of the database era. People have occasionally asked of Endatabas, \"why bother retaining all history?\" But this is the wrong question. The real question is: \"why bother destroying data?\" Copeland's answers, \"The deletion concept was invented to reuse expensive computer storage.\" The software industry has grown so accustomed to the arbitrary deletion of historical data that we now take destroying data for granted. Mass storage is not free yet — but it is cheap. Copeland himself addresses \"a more realistic argument: if the cost of mass storage were low enough, then deletion would become undesirable.\" Any system that exploits the separation of storage and compute can enjoy these low costs. An immutable dataset and a timeline of changing states are two sides of the same coin. Previous states carry the innate property of time (whether defined by familiar wall clocks or versions or logical clocks). Jensen and Snodgrass have thoroughly researched time-related database queries. Much of their work was published in the 1990s and early 2000s. Storing time, querying across time, time as a value ... these challenging subjects eventually grew to form SQL:2011 . Most SQL databases have struggled to implement SQL:2011. Incorporating time as a core concept in mutable databases (those which support destructive updates and deletes) amplifies existing complexity. Time should simplify the database, not complicate it. Document databases have a more convoluted story. Attempts at \"schemaless\", semi-structured, document, and object databases stretch from Smalltalk in the 1980s to C++ in the 1990s to Java and graphs in the 2000s to JSON in the 2010s . Despite all this, the most successful semi-structured document store, as of 2023, is a Postgres database with JSON columns. Database users desire flexible storage and querying — but yesterday's weather says they desire SQL more. Can't we have both? SQL has four identities, four histories. There is an SQL of academia, born of Codd's relational algebra (1970) and Chamberlin/Boyce SEQUEL (1974) , grown over decades with research like Snodgrass/Jensen's TSQL2. Then there is the SQL of industry, the many-tentacled leviathan of IBM, Oracle, and Microsoft: the SQL sold to businesses and governments, ceaselessly bifurcated into new dialects with each version and implementation. Between these two rests the SQL of the ISO specification — unified across 11 published standards, from SQL-86 to SQL:2023, spanning thousands of pages, adhered to by no single database. [1] Last, there is colloquial SQL, the language one refers to by the question, \"do you know SQL?\" These four threads are intertwined across four decades, making it very difficult to clearly define what is meant by \"SQL\", even in very narrow contexts. Colloquial SQL is of greatest interest to us. This is the ubiquitous query language any new database must implement to succeed. Khoshafian and Copeland introduced the Decomposition Storage Model (DSM) in 1985. The four decades that followed saw any number of approaches to data analytics. Most of the time, however, these demanded expensive data acrobatics: data was piped, streamed, dumped, and copied into denormalized cubes and time-series databases. As humanity grew out of the batch processing of the 1980s into the always-online society of the 2020s, analytics data became another form of operational data and this pipeline was looped back to users and customers. Hybrid Transactional/Analytical Processing (HTAP) promises a simpler, natural successor to OLTP and OLAP systems. For many businesses, the transactional/analytical divide is as arbitrary as destroying data with every state change. Humanity will arbitrarily destroy data in 2026 because hard disks were expensive in 1986. Similarly, we will wastefully query data with multiple systems in 2026 because CPUs were slow in 1986.","breadcrumbs":"Appendix » Why? » History","id":"233","title":"History"},"234":{"body":"When you approach Endb from a distance, you won't see the pillars at first. You'll see the structure they support. This structure also binds the pillars together. The query language of a database is its glue. It is the user interface. It defines the user experience. It is at once a programming language, a dialogue, an envelope, a protocol. But a query engine is not divorced from its query language, and so the language choice also informs system design and behaviour. There are mundane reasons for choosing SQL. If asked \"do you know SQL?\" there's a high probability the answer is \"yes.\" SQL is the language of data science and third-party tools. If any sufficiently successful database has to provide SQL access anyway, one may as well start there. But this is not why we chose SQL. We believe SQL can be beautiful. As mentioned in History , we are primarily concerned with colloquial SQL. The other threads of SQL are relevant but Endb will never implement the entire SQL specification. Instead, the Endb SQL dialect unifies the pillars under one strongly-dynamically-typed umbrella, a variation of the SQLite dialect. SQLite's applications are quite different from those of Endatabas, so Endb SQL is not weakly-typed and Endb types are not a free-for-all. Instead, Endb internally adopts types from Apache Arrow , which it uses as a storage medium. When considering alternatives, there are no direct contenders. Cypher, Datalog, MongoDB query documents, and other schemaless query languages work well for one database implementation but lack both mindshare and standards. PartiQL, SQL++, and other NewSQL languages that depart from SQL suffer precisely because they are almost SQL. One can fantasize about designing a query language from scratch but it's very easy to get wrong and takes decades to build mindshare. SQL has been through this decades-long gauntlet. Just as PL/SQL and T-SQL differ, so will Endb SQL from other dialects. However, colloquial SQL is comparable to colloquial Hindi — at higher levels, it bifurcates into Urdu and Sanskrit but speakers of both lineages understand one another. Endb SQL will be familiar to users of other SQL dialects. With its long, rich history SQL not only has the necessary theoretical underpinnings but the battle scars of technology that lasts. It sits alongside POSIX, TCP/IP, LISP, C, and the QWERTY keyboard layout. It will see its centenary.","breadcrumbs":"Appendix » Why? » Why SQL?","id":"234","title":"Why SQL?"},"235":{"body":"Even if we ignore Copeland's dream of mass storage from 1980, it is easy to see why destroying data is harmful. To destroy data is to destroy facts — to lie about the truth of what happened. Few modern systems permit the total destruction of data for this obvious reason. Some choose to create audit tables: users_audits, sales_audits, and so on. Some choose to log anything and everything. \"It's on disk somewhere.\" It's not uncommon for companies to extract metrics from logs to create invoices and reports, turning a log file into a bespoke immutable database. Industries which take their data very seriously (banking, healthcare) already store immutable records. They just do so in a mutable database. Append-only tables are not new, but they're an order of magnitude easier to work with — for both users and operators — if the database is append-only from the ground up. These same industries will resist the destruction of data unless absolutely necessary, but they will bend to necessity. Erasure is concomitant with immutability — we cannot have one without the other. The existing designs of databases create serious problems for privacy. DELETE, when overloaded to mean both \"save disk space\" and \"explicitly remove this data\", becomes opaque. It does not leave any queryable record of the deletion. Removing data should keep tombstones so it's at least known that some data was removed.","breadcrumbs":"Appendix » Why? » Why Full History?","id":"235","title":"Why Full History?"},"236":{"body":"Keeping your data's entire history is the write-side of the equation. If you didn't care about getting this data back, you could just dump it into an unintelligible pile. But you not only want your data back, you want to query it in the easiest way possible. One very sensible way to see and query immutable data is along a timeline. Endb makes no assumptions about your desire to participate in this timeline. By default, everything is visible as-of-now but querying the past should feel effortless. -- without time travel:\nSELECT * FROM products;\n-- time travel to 2020:\nSELECT * FROM products FOR SYSTEM_TIME AS OF 2020-08-25T00:00:00;","breadcrumbs":"Appendix » Why? » Why a timeline?","id":"236","title":"Why a timeline?"},"237":{"body":"Separating storage from compute is an implementation detail. AWS customers don't choose Amazon Aurora because they're craving this separation. Decoupling storage from compute makes scale (both up and down) trivial. It also introduces the possibility of \"reducing network traffic, ... fast crash recovery, failovers to replicas without loss of data, and fault-tolerant, self-healing storage.\" This decoupling is concomitant with Light and Adaptive Indexing . It is undesirable to manually construct expensive indexes for unknown future schemas over (effectively) infinite data. Instead, we should let machine learning handle this job.","breadcrumbs":"Appendix » Why? » Why Separation of Storage and Compute?","id":"237","title":"Why Separation of Storage and Compute?"},"238":{"body":"It can be argued that \"why documents?\" is really multiple questions: why schemaless? why nested data? why dynamic SQL? First, the challenges. It is extremely difficult to force global schema onto every row in a table in an immutable world. Even if there were a simple mechanism in SQL to alter table schema only for certain durations (there isn't), the database user would still be burdened with querying based on a particular schema at a particular time in the history of the table. This complexity is compounded by the fact that static schemas have less and less meaning in a temporal world. Endb introduces SQL:2011 time-travel and period predicates . The difficulty, mentioned earlier, that other databases encounter when introducing SQL:2011 is twofold: dealing with \"time\" in a world where history can be violently rewritten and managing an unbending schema across time. Nested data is equally unnatural in incumbent databases. SQL:99, SQL:2016, SQL:2023 all offer some way of shoehorning nested data into flat tables. DynamoDB, Couchbase, and MongoDB are the most common document databases but they don't speak SQL. [2] Not only will no one ever decompose relational data into 6NF, it is unlikely we'll ever see a return to the classic BCNF of business entity-relationship diagrams. Nested data is here to stay. Foreign, embedded JSON (or XML) is little more than a band-aid. Nested data should be native to SQL queries. Second, the joys. Schema-per-row can be incredibly liberating. Not only does this feel more natural, it embraces the messy truth of the real world. Schema-on-write can be added later, when the business is ready to lock down what it knows about a domain. But many use cases demand flexible schemas. What if this week's project requires downloading huge amounts of semi-structured JSON pricing data from the APIs of competing online stores to compare them? Endb can handle this case out of the box. Most databases would require a great deal of manipulation first. Dynamic SQL is required to support schemaless, nested data — but it also brings its own joys. When dynamic SQL rests on top of a flexible data model which can ingest any data, it is capable of exploring nested data and easily constructing arbitrary joins users could normally only construct in a graph database.","breadcrumbs":"Appendix » Why? » Why documents?","id":"238","title":"Why documents?"},"239":{"body":"It is often the job of analytics databases to record and query all the data of a business, denormalized for speed. There will always be analytical jobs which require data to be transformed. But many businesses already allow data scientists, analysts, and even CEOs read-only access to an OLTP replica. HTAP is right on the horizon . Endb hopes to participate in that evolution by making all business data accessible to easy-to-produce, cheap, ephemeral read replicas.","breadcrumbs":"Appendix » Why? » Why \"One Database\"?","id":"239","title":"Why \"One Database\"?"},"24":{"body":"To update an existing row, you can use the standard SQL UPDATE command: UPDATE products SET price = 4.99 WHERE name = 'Coffee'; Set multiple columns by separating them with commads; UPDATE products SET price = 4.99, name = 'Kaapi' WHERE name = 'Coffee'; Because Endb is schemaless, each document (or row) has its own schema. As a result, you may want to remove a column from an individual row. You can do this with the UNSET operator: UPDATE products UNSET product_no WHERE name = 'Coffee';\nUPDATE products REMOVE product_no WHERE name = 'Coffee'; REMOVE is an alias for UNSET. It is possible to set and unset values in a single update. Unsetting a column which doesn't exist is not an error: UPDATE products SET price = 5.98 UNSET product_no WHERE name = 'Coffee';","breadcrumbs":"SQL Reference » Data Manipulation » UPDATE","id":"24","title":"UPDATE"},"240":{"body":"We cannot reconcile building and selling a product we would never buy ourselves.","breadcrumbs":"Appendix » Why? » Why Commercial Open Source?","id":"240","title":"Why Commercial Open Source?"},"241":{"body":"All of the pillars outlined above have their own strike-when-the-iron-is-hot moment. The SQLite we know today began to materialize in 2001. Amazon S3 was launched in 2006. MongoDB was first released in 2007. Immutable data and functional programming reached the mainstream in the 2010s. Datomic (arguably the first immutable OLTP database) was release in 2012. Amazon Aurora was released in 2015 and Google's AlloyDB in 2022. Apache Arrow saw its first release in 2016. Over the past decade, many financial firms built their own in-house temporal databases. SQL:2011, SQL:2016, and SQL:2023 were ratified in their respective eponymous years. HTAP hasn't quite happened yet. AI-driven indexes haven't quite happened yet. The moment for something like Endatabas is now... but it is a very long moment. Endatabas cannot be built in a Postgres-compatible fashion. Technically, it would be prohibitively expensive to build Endatabas from existing components. It's time for something new. The complete SQL specification is very difficult to implement in full, though Mimer likely comes closest to this goal . There is XQuery, of course. But most businesses today do not build their nested data storage on XQuery.","breadcrumbs":"Appendix » Why? » Why Now?","id":"241","title":"Why Now?"},"242":{"body":"","breadcrumbs":"Appendix » Architecture » Architecture","id":"242","title":"Architecture"},"243":{"body":"All records in Endatabas are immutable. Historical data is not lost when an UPDATE or DELETE statement is executed. You can think of endb as one giant log of transactions with fast queries made possible by adaptive indexing .","breadcrumbs":"Appendix » Architecture » Immutable","id":"243","title":"Immutable"},"244":{"body":"The only time data in Endatabas is truly deleted is with the ERASE statement. This is used for user safety and compliance with laws like GDPR.","breadcrumbs":"Appendix » Architecture » Erasure","id":"244","title":"Erasure"},"245":{"body":"Both the heart and \"UI\" of Endatabas is a dynamic SQL engine which natively understands strongly-typed, semi-structured rows (documents). Here is an example to illustrate what that means: INSERT INTO stores {brand: \"Alonzo's Analog Synthesizers\", addresses: [{city: \"New Jersey\", country: \"United States\", opened: 1929-09-01}, {city: \"Göttingen\", country: \"Germany\", opened: 1928-09-01}]}; -- recursive query of ISO dates from the nested document:\nSELECT addresses..opened FROM stores; Endb SQL bases its core SQL dialect on SQLite. It also draws inspiration from SQL:99, SQL:2011, SQL:2016, and SQL:2023. Read more in our bibliography .","breadcrumbs":"Appendix » Architecture » Dynamic SQL","id":"245","title":"Dynamic SQL"},"246":{"body":"Endatabas stores and processes data as columns. Endb's columnar storage is built on Apache Arrow . Endb SQL allows users to retrieve data as documents. The ultimate goal is for Endatabas to serve many (hybrid) purposes: day-to-day transactions and analytical jobs.","breadcrumbs":"Appendix » Architecture » Columnar: Hybrid Transactional Analytic Processing (HTAP)","id":"246","title":"Columnar: Hybrid Transactional Analytic Processing (HTAP)"},"247":{"body":"Queries are compiled to Common Lisp and use hash joins. Join ordering is done heuristically, by base table size. Correlated queries are memoized by building indexes in-memory during query execution.","breadcrumbs":"Appendix » Architecture » Query Execution","id":"247","title":"Query Execution"},"248":{"body":"More detailed information about the future of Endb can be found in the roadmap .","breadcrumbs":"Appendix » Architecture » Future","id":"248","title":"Future"},"249":{"body":"Endb does not yet support columnar data returned directly to the user.","breadcrumbs":"Appendix » Architecture » Columnar (OLAP) result sets","id":"249","title":"Columnar (OLAP) result sets"},"25":{"body":"Endb provides a PATCH operator, similar to the PATCH function . The PATCH operator is used in conjunction with UPDATE to set fields on a document (columns on a row) in a declarative fashion. UPDATE products PATCH {price: 1.98, product_no: products.product_no + 1000} WHERE price = 2.00; PATCH is based on RFC 7386: JSON Merge Patch .","breadcrumbs":"SQL Reference » Data Manipulation » UPDATE PATCH","id":"25","title":"UPDATE PATCH"},"250":{"body":"If you're not sure what this is, think Amazon Aurora, Google AlloyDB, and Neon. Compute nodes are the classic database (Postgres, MongoDB, etc.) — in an immutable world, these are just caches. Storage is elastic object or blob storage (S3, Azure Blobs, etc.). Endatabas is built to live in the clouds, alongside infinite disk. Although the groundwork for separating storage from compute exists in Endb today, elastic storage backends are not yet implemented.","breadcrumbs":"Appendix » Architecture » Cloud: Separation of Storage from Compute","id":"250","title":"Cloud: Separation of Storage from Compute"},"251":{"body":"For more information on light and adaptive indexing, you can watch Håkan's talk from 2022: \"Light and Adaptive Indexing for Immutable Databases\" Endb does not yet support adaptive indexing.","breadcrumbs":"Appendix » Architecture » Adaptive Indexing","id":"251","title":"Adaptive Indexing"},"252":{"body":"In the near-term (Q3 2023), we expect to solidify the Endatabas SQL dialect so early users can get a taste of what it feels like to use it. You can read our high-level roadmap on GitHub .","breadcrumbs":"Appendix » Roadmap » Roadmap","id":"252","title":"Roadmap"},"253":{"body":"All Endatabas code is Copyright Håkan Råberg and licensed GNU Affero General Public License v3.0 , unless otherwise specified. To contribute to Endatabas, please refer to CONTRIBUTING .","breadcrumbs":"Appendix » License » License","id":"253","title":"License"},"26":{"body":"The SET operator permits paths on its left-hand side. The behaviour of the form UPDATE 
SET = is identical to that of the path_set function. UPDATE users SET $.addresses[0].city = 'Chicago' WHERE name = 'Steven';","breadcrumbs":"SQL Reference » Data Manipulation » UPDATE SET $path","id":"26","title":"UPDATE SET $path"},"27":{"body":"The UNSET (synonym: REMOVE) operator permits paths on its left-hand side. The behaviour of the form UPDATE
UNSET = is identical to that of the path_remove function. UPDATE users UNSET $.addresses[0].city WHERE name = 'Steven';","breadcrumbs":"SQL Reference » Data Manipulation » UPDATE UNSET $path","id":"27","title":"UPDATE UNSET $path"},"28":{"body":"To delete an existing row, use the standard SQL DELETE command. DELETE FROM products WHERE price = 5.98; You may delete all rows from a table by eliding the WHERE clause: DELETE FROM products; Note: In Endb, DELETE does not remove any data. It is always possible to view data prior to the DELETE with time queries . If you need to remove data for compliance (with laws such as GDPR or PIPEDA), use ERASE .","breadcrumbs":"SQL Reference » Data Manipulation » DELETE","id":"28","title":"DELETE"},"29":{"body":"Endb provides flexible upserts with the common ON CONFLICT clause. When the INSERT command detects a conflict, it will perform the instructions in the DO clause. The following command needs to be executed twice to see the upsert effect. INSERT INTO products {name: 'Pepper', price: 9.99} ON CONFLICT (name, price) DO UPDATE SET v = 2; To specify no operation on conflict, use DO NOTHING: INSERT INTO products {name: 'Pepper', price: 9.99} ON CONFLICT (name, price) DO NOTHING; To reference the document currently being inserted, the DO clause provides a statement-local relation named excluded. INSERT INTO products {name: 'Salt', price: 6};\nINSERT INTO products {name: 'Salt', price: 7} ON CONFLICT (name) DO UPDATE SET price = excluded.price; Similarly, the existing table is still available in the DO clause to provide further filtering: INSERT INTO products {product_no: 99, name: 'Cumin', price: 3.00, v: 5};\nINSERT INTO products {product_no: 99, name: 'Cumin', price: 5.00, v: 6} ON CONFLICT (product_no, name) DO UPDATE SET price = excluded.price, v = excluded.v WHERE products.v < 6;","breadcrumbs":"SQL Reference » Data Manipulation » ON CONFLICT (Upsert)","id":"29","title":"ON CONFLICT (Upsert)"},"3":{"body":"","breadcrumbs":"Tutorial » Quickstart » Quickstart","id":"3","title":"Quickstart"},"30":{"body":"ERASE completely removes documents (rows) from visibility to any queries. Once a document has been erased, it is no longer possible to query for it at all. ERASE FROM products WHERE name = 'Salt'; NOTE: ERASE currently does not remove data from disk. This feature will be added when Endb handles compaction, as per our roadmap .","breadcrumbs":"SQL Reference » Data Manipulation » ERASE","id":"30","title":"ERASE"},"31":{"body":"Parameters to DML are documented under the HTTP API .","breadcrumbs":"SQL Reference » Data Manipulation » Parameters","id":"31","title":"Parameters"},"32":{"body":"Transactions in Endb are implicit. Run multiple DML statements in a single transaction by providing multiple statements (delimited by semicolons) to a single POST to the HTTP API .","breadcrumbs":"SQL Reference » Data Manipulation » Transactions","id":"32","title":"Transactions"},"33":{"body":"Endb SQL strives to empower the query author. Basic SQL queries should be familiar. Advanced SQL queries should be simple.","breadcrumbs":"SQL Reference » Queries » Queries","id":"33","title":"Queries"},"34":{"body":"The most common hand-written SQL query tends to be the easiest: SELECT * FROM products; Without a WHERE clause (discussed below) the entire table is returned. Because Endb is schemaless, * has a special meaning. Each document (row) in Endb carries with it its own schema. As a result, * refers to the widest possible set of columns, across all the rows returned. In many SQL dialects, columns are strictly ordered. Because Endb columns cannot have a strict order, * returns them in alphabetical order. You can select the widest set of columns for a specific table with
.*: SELECT p.* FROM products p JOIN coupons c ON p.price = c.price;","breadcrumbs":"SQL Reference » Queries » SELECT *","id":"34","title":"SELECT *"},"35":{"body":"In programmatic environments, it is almost always preferable to query for specific columns by name: SELECT product_no, price FROM products; Select a list of columns by delimiting them with commas. SELECT product_no, v, price, name FROM products; Select a column with spaces by delimiting it with backticks or square braces: SELECT products['product no'] FROM products;\nSELECT `product no` FROM products; NOTE: Whether or not your Endb client respects column ordering is dependent on the content type it uses in Accept Headers. It is worth reading over the Accept Header documentation, in this regard. Limit query results to distinct rows or expand to all rows with DISTINCT and ALL. SELECT DISTINCT name FROM products;\nSELECT ALL product_no FROM products p JOIN sales s ON p.name = s.name;","breadcrumbs":"SQL Reference » Queries » SELECT","id":"35","title":"SELECT"},"36":{"body":"","breadcrumbs":"SQL Reference » Queries » FROM","id":"36","title":"FROM"},"37":{"body":"For convenience, tables can be given aliases immediately following their name in the FROM clause. SELECT p.name FROM products p; The AS operator can also (optionally) be used to provide an alias for a table. SELECT p.name FROM products AS p; More usefully, it can give a temporary table name to an expression. The temporary table name can either have anonymous columns or named columns. (The VALUES keyword is explained in the following VALUES Lists section.) SELECT p.column1 FROM (VALUES ('Paprika', 4.77)) AS p;\nSELECT p.price FROM (VALUES ('Paprika', 4.77)) AS p(name, price);","breadcrumbs":"SQL Reference » Queries » Alias Tables","id":"37","title":"Alias Tables"},"38":{"body":"The AS keyword is also used to alias columns. This is useful when column names conflict in a join. (Joins are explained below.) If the same column is specified more than once, the last reference to that column name is the one which will be returned: SELECT c.price, p.price FROM products p JOIN coupons c ON p.name = c.name; If both columns are required, AS can be used to rename one or both of the columns: SELECT p.price AS regular_price, c.price FROM products p JOIN coupons c ON p.name = c.name;","breadcrumbs":"SQL Reference » Queries » Alias Columns","id":"38","title":"Alias Columns"},"39":{"body":"Because Endb is schemaless, documents (rows) can be joined on any fields (columns) which have equivalent values. INSERT INTO coupons {name: 'Salt', price: 3.0};\nSELECT * FROM products p JOIN coupons c ON p.name = c.name; LEFT JOIN, LEFT OUTER JOIN, INNER JOIN, and CROSS JOIN are all supported.","breadcrumbs":"SQL Reference » Queries » JOIN","id":"39","title":"JOIN"},"4":{"body":"mkdir -p endb_data\ndocker pull endatabas/endb\ndocker run --rm -p 3803:3803 -v endb_data:/app/endb_data docker.io/endatabas/endb See Installation for more ways to install and build endb.","breadcrumbs":"Tutorial » Quickstart » Install Endb","id":"4","title":"Install Endb"},"40":{"body":"The UNNEST function can be thought of as the inverse of ARRAY_AGG , although it offers more power than just unlinking elements. It takes an array or object and pulls its elements into separate rows. SELECT * FROM UNNEST([1.99, 2.99, 3.99]) AS products(price); It is possible to unnest multiple arrays. If the arrays do not have the same number of elements, the shorter array(s) will have those values filled with NULL: SELECT names.* FROM (VALUES (['Leslie', 'Edgar', 'fiver2'], ['Lamport', 'Codd'])) AS x(first, last), UNNEST(x.first, x.last) AS names(first, last); When unnesting an object, keys-value pairs will be returned as per object_entries . This behaviour is useful for manipulating collections: SELECT * FROM UNNEST({original_price: 1.99, sale_price: 1.50, coupon_price: 1.40}) AS prices(price);\n-- [{'price': ['sale_price', 1.5]},\n-- {'price': ['coupon_price', 1.4]},\n-- {'price': ['original_price', 1.99]}]","breadcrumbs":"SQL Reference » Queries » UNNEST","id":"40","title":"UNNEST"},"41":{"body":"UNNEST can be suffixed with WITH ORDINALITY to append an ordinal column to the results. SELECT * FROM UNNEST([1.99, 2.99, 3.99]) WITH ORDINALITY AS products(price, n);\n-- [{'n': 0, 'price': 1.99}, {'n': 1, 'price': 2.99}, {'n': 2, 'price': 3.99}] NOTE: Endb ordinals are zero-indexed.","breadcrumbs":"SQL Reference » Queries » WITH ORDINALITY","id":"41","title":"WITH ORDINALITY"},"42":{"body":"Rather than returning the entire table, documents (rows) can be filtered with a WHERE clause. SELECT * FROM products WHERE price > 4;","breadcrumbs":"SQL Reference » Queries » WHERE (Filtering)","id":"42","title":"WHERE (Filtering)"},"43":{"body":"More advanced filters are documented in Operators and Functions .","breadcrumbs":"SQL Reference » Queries » Advanced Filtering","id":"43","title":"Advanced Filtering"},"44":{"body":"Results from queries can be ordered with standard SQL ORDER BY. SELECT * FROM products ORDER BY price; By default, ordering is ascending. For descending order, suffix the ORDER BY clause with DESC: SELECT * FROM products ORDER BY price DESC; To force ascending order, use ASC: SELECT * FROM products ORDER BY price ASC; It is also possible to order by an expression: SELECT * FROM products ORDER BY LENGTH(name);\nSELECT * FROM products ORDER BY -price; In the example above, LENGTH is an example of a function. A complete list of functions can be found in the Functions documentation.","breadcrumbs":"SQL Reference » Queries » ORDER BY (Sorting Results)","id":"44","title":"ORDER BY (Sorting Results)"},"45":{"body":"GROUP BY accepts a list of columns and creates aggregated rows based on each of those columns, in order. Each aggregate is returned as a single row. Each column returned must either be a column specified in the GROUP BY clause or a column created with an aggregate function , such as SUM. SELECT name, price FROM products GROUP BY name, price;\nSELECT name, SUM(price) FROM products GROUP BY name;","breadcrumbs":"SQL Reference » Queries » GROUP BY","id":"45","title":"GROUP BY"},"46":{"body":"HAVING adds a search condition to an aggregate query. SELECT name, SUM(price) FROM products GROUP BY name HAVING LENGTH(name) > 4; It is most often used with GROUP BY (seen above), but it is also legal with other aggregates: SELECT SUM(products.price) FROM products HAVING SUM(products.price) = 13;","breadcrumbs":"SQL Reference » Queries » HAVING","id":"46","title":"HAVING"},"47":{"body":"LIMIT specifies the maximum number of rows to be returned by the query. SELECT * FROM products LIMIT 2; It always makes sense to control the order of returned rows so LIMIT always returns the same rows for the same query -- unless you don't care which rows are returned. SELECT * FROM products ORDER BY price ASC LIMIT 2; OFFSET allows queries to skip rows before returning a limited set. SELECT * FROM products ORDER BY price ASC LIMIT 2 OFFSET 2;","breadcrumbs":"SQL Reference » Queries » LIMIT","id":"47","title":"LIMIT"},"48":{"body":"The VALUES keyword is used to create a static table of documents (rows). Each row is denoted by a pair of parentheses. All rows must have Union Compatibility which, for Endb, means they have the same number of columns. VALUES (1, 'Salt'), (2, 'Pepper'), (3, 'Vinegar'); Endb assigns anonymous columns the names column1, column2, etc. Columns can instead be given names with a table alias : SELECT * FROM (VALUES (1, 'Salt'), (2, 'Pepper'), (3, 'Vinegar')) AS t (product_no, name);","breadcrumbs":"SQL Reference » Queries » VALUES Lists","id":"48","title":"VALUES Lists"},"49":{"body":"The OBJECTS keyword is used to create a static table comprised of object literals, each representing a document (row). Each row is directly denoted by an object literal. OBJECTS lists do not require Union Compatibility , so jagged lists are permitted. OBJECTS {product_no: 1, name: 'Salt'}, {product_no: 2, name: 'Pepper', price: 3.99};\nSELECT * FROM (OBJECTS {product_no: 1, name: 'Salt'}, {product_no: 2, name: 'Pepper'}) as t;","breadcrumbs":"SQL Reference » Queries » OBJECTS Lists","id":"49","title":"OBJECTS Lists"},"5":{"body":"curl -d \"SELECT 'Hello World';\" -H \"Content-Type: application/sql\" -X POST http://localhost:3803/sql","breadcrumbs":"Tutorial » Quickstart » Run your first query","id":"5","title":"Run your first query"},"50":{"body":"The set operations union, intersection, and difference are available to the results of two queries.","breadcrumbs":"SQL Reference » Queries » Set Operations: UNION, INTERSECT, EXCEPT","id":"50","title":"Set Operations: UNION, INTERSECT, EXCEPT"},"51":{"body":"Append the results of one query to another. Duplicate rows are removed. SELECT * FROM products UNION SELECT * FROM new_products; To keep duplicate rows, use UNION ALL: SELECT * FROM products UNION ALL SELECT * FROM new_products;","breadcrumbs":"SQL Reference » Queries » UNION","id":"51","title":"UNION"},"52":{"body":"The intersection of two queries returns results which are found in both. SELECT * FROM products INTERSECT SELECT * FROM new_products;","breadcrumbs":"SQL Reference » Queries » INTERSECT","id":"52","title":"INTERSECT"},"53":{"body":"The difference of two queries returns only results from the first query which are not found in the second. Another way of thinking about this is that results of the second query are removed from the first. SELECT * FROM products EXCEPT SELECT * FROM ignored_products;","breadcrumbs":"SQL Reference » Queries » EXCEPT","id":"53","title":"EXCEPT"},"54":{"body":"\"Union Compatibility\" refers to the ability of two queries to be used in a union, intersection, or difference. Because Endb is dynamically-typed, the only constraint on union compatibility is the number of columns returned. In general, it only makes sense to use set operations on two queries which return either: (1) explicit columns, so order and naming are respected or (2) columns with the same names, so they are guaranteed to return in order, in the case of * queries. When applying set operations to * queries, keep in mind that the widest column set (across the entire history of the table) will be returned. If the queries return a different number of columns, set operations will result in an error: -> SELECT * FROM products UNION SELECT * FROM new_products;\n400 Bad Request\nNumber of UNION left columns: 3 does not match right columns: 2","breadcrumbs":"SQL Reference » Queries » Union-Compatibility","id":"54","title":"Union-Compatibility"},"55":{"body":"The WITH keyword is used to create Common Table Expressions , or CTEs. CTEs act like temporary tables or views within the context of a query. CTEs are used in place of a sub-select to simplify the appearance of a query. WITH clauses take the form WITH AS (). WITH top_margin_products AS (SELECT product_no FROM products WHERE (price - cost) > 5.00)\nSELECT name FROM products\nWHERE product_no IN (SELECT product_no FROM top_margin_products);","breadcrumbs":"SQL Reference » Queries » WITH Queries (Common Table Expressions)","id":"55","title":"WITH Queries (Common Table Expressions)"},"56":{"body":"The RECURSIVE keyword can be added to WITH to create recursive CTEs which can refer to themselves. Recursive CTEs will always have the form UNION or UNION ALL . Here is a naive example, demonstrating the recursive construction of a Fibonacci Sequence: WITH RECURSIVE fib(previous, current) AS ( VALUES (0, 1) UNION ALL SELECT fib.current, fib.previous + fib.current FROM fib WHERE fib.previous + fib.current < 5000\n)\nSELECT * FROM fib; The most beneficial uses for WITH RECURSIVE are walking hierarchical and graph-shaped data sets -- capabilities ordinary SQL lacks. However, Endb recursive queries are also capable of solving Sudoku puzzles and constructing fractals, as seen in the test suite . (Credit goes to SQLite's delightful Outlandish Recursive Query Examples .)","breadcrumbs":"SQL Reference » Queries » WITH RECURSIVE","id":"56","title":"WITH RECURSIVE"},"57":{"body":"Repeatable reads are achieved in Endb by creating savepoints , which queries can return to later. When returning to a savepoint in the future, queries will return results according to the state of the database when the savepoint was captured. By default, savepoints have a 60-second lifespan, after which they expire. Use of a savepoint during its lifespan will renew its lease, allowing it to be used for another 60 seconds. Savepoints can be forcibly expired with RELEASE. Attempting to use a savepoint that has been expired or released will return No active savepoint: .","breadcrumbs":"SQL Reference » Queries » Repeatable Reads: SAVEPOINT, ROLLBACK, RELEASE","id":"57","title":"Repeatable Reads: SAVEPOINT, ROLLBACK, RELEASE"},"58":{"body":"Other SQL dialects have more transaction-specific semantics for SAVEPOINT, ROLLBACK, and RELEASE. Because this difference in behaviour may be confusing to users familiar with other databases, we provide the example below. The result of the final query returns the first two dungeons, which were inserted prior to the savepoint, but not \"Tower of Hera\". INSERT INTO dungeons {name: 'Eastern Palace'};\nINSERT INTO dungeons {name: 'Desert Palace'};\nSAVEPOINT desert_palace;\nINSERT INTO dungeons {name: 'Tower of Hera'};\nROLLBACK TO desert_palace; SELECT * FROM dungeons; NOTE: The ROLLBACK and SELECT above must be executed together, in the same transaction. (Normally this will mean executing both statements in a single HTTP request.)","breadcrumbs":"SQL Reference » Queries » Minimal Example","id":"58","title":"Minimal Example"},"59":{"body":"The SAVEPOINT operator captures a new savepoint at the time it executes. Savepoints can be named or anonymous. Anonymous savepoints are named with a UUID. The name of the savepoint is returned as an attribute named result. SAVEPOINT desert_palace;\n-- [{'result': 'desert_palace'}]\nSAVEPOINT;\n-- [{'result': '0b12de43-1c92-4d92-ab7c-51c5a5129074'}]","breadcrumbs":"SQL Reference » Queries » SAVEPOINT","id":"59","title":"SAVEPOINT"},"6":{"body":"Endb is still in early alpha. While in alpha, new versions are not guaranteed to have binary-compatible storage with previous versions. We encourage you to experiment with Endb but please do not use it in production until a General Availability release.","breadcrumbs":"Tutorial » Quickstart » Warning: Early Alpha","id":"6","title":"Warning: Early Alpha"},"60":{"body":"Inside the scope of a transaction (normally a single HTTP request), ROLLBACK is used to return to a savepoint. ROLLBACK TO returns to a named savepoint (by name) or an anonymous savepoint (by string UUID). When used without a savepoint name, ROLLBACK returns to the last anonymous savepoint. Queries executed inside such a transaction return results according to the state of the database when the savepoint was created. The use of ROLLBACK renews the lease of the associated savepoint. ROLLBACK TO desert_palace; SELECT * FROM dungeons;\nROLLBACK TO 'eab07765-de6f-4f74-8052-838dd29ee8e7'; SELECT * FROM dungeons;\nROLLBACK; SELECT * FROM dungeons;","breadcrumbs":"SQL Reference » Queries » ROLLBACK","id":"60","title":"ROLLBACK"},"61":{"body":"The RELEASE keyword expires a savepoint so it can no longer be used. Anonymous savepoints can be released by string UUID. RELEASE desert_palace;\nRELEASE 'f7c314dd-47b9-4c85-9502-b8e35c82b935';","breadcrumbs":"SQL Reference » Queries » RELEASE","id":"61","title":"RELEASE"},"62":{"body":"","breadcrumbs":"SQL Reference » SQL Data Types » SQL Data Types","id":"62","title":"SQL Data Types"},"63":{"body":"Null serves a variety of purposes in Endb. Explicit: You can provide an explicit NULL value \"Unknown\": As with any SQL, you will receive a null when 3-Valued Logic cannot determine if a statement is true or false \"Missing\": Jagged rows will return NULL for columns projected for a document which does not contain them","breadcrumbs":"SQL Reference » SQL Data Types » NULL","id":"63","title":"NULL"},"64":{"body":"Endb accepts unbounded, variable-length strings with either single or double quotes. CHAR and VARCHAR are synonyms for TEXT. INSERT INTO users (name, title) VALUES ('River', \"Prodigy\"); When casting using the CHAR synonym, an optional integer argument indicates the desired length of the resulting string, padded with spaces: SELECT CAST(123 AS CHAR(10));\n-- [{'column1': '123 '}]","breadcrumbs":"SQL Reference » SQL Data Types » TEXT (CHAR, VARCHAR)","id":"64","title":"TEXT (CHAR, VARCHAR)"},"65":{"body":"Boolean values can be TRUE, FALSE, or NULL.","breadcrumbs":"SQL Reference » SQL Data Types » BOOLEAN","id":"65","title":"BOOLEAN"},"66":{"body":"64-bit integer capable of auto-promotion to 128-bit integer.","breadcrumbs":"SQL Reference » SQL Data Types » INTEGER (BIGINT)","id":"66","title":"INTEGER (BIGINT)"},"67":{"body":"A 64-bit IEEE 754 floating point number, or double.","breadcrumbs":"SQL Reference » SQL Data Types » REAL (DOUBLE)","id":"67","title":"REAL (DOUBLE)"},"68":{"body":"Timestamps can be represented as either SQL timestamps, according to the SQL Specification, or ISO timestamps. The following are legal timestamp literals: 2007-01-01T00:00:00 2007-01-01T00:00:00.123Z 2007-01-01T00:00:00.000000Z TIMESTAMP '2007-01-01 00:00:00' TIMESTAMP '2007-01-01 00:00:00.000000Z'","breadcrumbs":"SQL Reference » SQL Data Types » TIMESTAMP","id":"68","title":"TIMESTAMP"},"69":{"body":"Dates can be represented as either SQL dates, according to the SQL Specification, or ISO dates. The following are legal date literals: 2007-01-01 DATE '2007-01-01'","breadcrumbs":"SQL Reference » SQL Data Types » DATE","id":"69","title":"DATE"},"7":{"body":"You can send SQL statements to endb over HTTP. Any HTTP client will do.","breadcrumbs":"Tutorial » Try It! » Try It!","id":"7","title":"Try It!"},"70":{"body":"Times can be represented as either SQL times, according to the SQL Specification, or ISO times. The following are legal time literals: 23:59:12 23:59:12.12345 TIME '23:59:12' TIME '23:59:12.12345'","breadcrumbs":"SQL Reference » SQL Data Types » TIME","id":"70","title":"TIME"},"71":{"body":"An interval (or duration ) is created whenever two times are subtracted. SELECT 2001-01-02 - 2001-01-01; Interval literals can be constructed with ISO 8601 syntax : PT12H30M5S P1Y2M10DT2H30M This is equivalent to the same ISO 8601 syntax provided as a string to the DURATION constructor: DURATION('PT12H30M5S') DURATION('P1Y2M10DT2H30M') Interval literals can also be constructed with the classic SQL intervals DSL: INTERVAL '1-2' YEAR TO MONTH INTERVAL '0 12:34:56.789' DAY TO SECOND","breadcrumbs":"SQL Reference » SQL Data Types » INTERVAL (DURATION)","id":"71","title":"INTERVAL (DURATION)"},"72":{"body":"Binary Large Objects can be encoded as hexidecimal literals or cast from strings. x'DEADBEEF' CAST(\"hello\" AS BLOB)","breadcrumbs":"SQL Reference » SQL Data Types » BLOB (VARBINARY)","id":"72","title":"BLOB (VARBINARY)"},"73":{"body":"Arrays can be created with array literals similar to JSON. [\"one\", \"two\", \"three\"] Alternatively, arrays can also be created using a literal syntax similar to that in the SQL Specification or a constructor function. ARRAY [\"one\", \"two\", \"three\"] ARRAY(\"one\", \"two\", \"three\") Array literals can contain the spread operator SELECT [1, 2, ...[3, 4], 5];\n-- [{'column1': [1, 2, 3, 4, 5]}] Array equality is tested lexicographically .","breadcrumbs":"SQL Reference » SQL Data Types » ARRAY","id":"73","title":"ARRAY"},"74":{"body":"Objects (which can also be thought of as documents, or rows) can be created with object literals enclosed in curly braces, similar to JSON. Keys in object literals can be quoted or unquoted. {name: \"Hanna\", birthday: 1982-12-31} {'name': \"Hanna\", 'birthday': 1982-12-31} Alternatively, objects can be created using either an OBJECT constructor keyword, similar to that in the SQL Specification. OBJECT(name: 'Hanna', birthday: 1982-12-31) Object literals can contain spreads , computed fields , shorthands , and row literals . SELECT { a: 1, ...[2, 3] };\n-- [{'column1': {'0': 2, '1': 3, 'a': 1}}]\nSELECT { foo: 2, ['foo' || 2]: 5 };\n-- [{'column1': {'foo': 2, 'foo2': 5}}]\nSELECT {p.name, c.discounted} FROM products p JOIN coupons c ON p.name = c.name;\n-- [{'column1': {'discounted': 2.99, 'name': 'Salt'}}]\nSELECT {product: {p.*}, discounted: c.discounted} FROM products p JOIN coupons c ON p.name = c.name;\n-- [{'column1': {'discounted': 2.99, 'product': {'name': 'Salt', 'price': 5.99}}}] Object equality is tested by comparing each key-value pair as an array.","breadcrumbs":"SQL Reference » SQL Data Types » OBJECT","id":"74","title":"OBJECT"},"75":{"body":"","breadcrumbs":"SQL Reference » SQL Data Types » Dynamic Literals","id":"75","title":"Dynamic Literals"},"76":{"body":"It is possible return an entire document (row) as a single literal value. The syntax is akin to Postgres ROW literals . Unlike table.*, which pads non-existent columns with NULL, a row literal returns exactly the schema specified for each individual row. { table.* } Example usage: SELECT { products.* } FROM products; As a shorthand, a table's name may be used in the SELECT clause to return entire rows as documents: -> SELECT users FROM users;\n-- [{'users': {'email': 'patrick@oracle.com', 'name': 'Patrick'}},\n-- {'users': {'email': 'preethi@shopify.ca', 'name': 'Preethi'}}] NOTE: When a table contains a column of the same name, the column takes precedence and a single column is returned, as usual: -> SELECT status FROM status;\n-- [{'status': 'error'}, {'status': 'ok'}]","breadcrumbs":"SQL Reference » SQL Data Types » Row Literals","id":"76","title":"Row Literals"},"77":{"body":"The Spread Operator (..., sometimes known as \"splat\") can be used to directly flatten/unnest one collection (an array, object, or row literal) into another. Strings are treated as character collections. SELECT [1, 2, ...[3, 4], 5];\n-- [{'column1': [1, 2, 3, 4, 5]}] SELECT [1, 2, ...\"foo\", 5];\n-- [{'column1': [1, 2, 'f', 'o', 'o', 5]}] If an array is spread into an object, its ordinals will be used as properties: SELECT { a: 1, ...{b: 2} };\n-- [{'column1': {'a': 1, 'b': 2}}] SELECT { a: 1, ...[2, 3] };\n-- [{'column1': {'0': 2, '1': 3, 'a': 1}}]","breadcrumbs":"SQL Reference » SQL Data Types » Spread","id":"77","title":"Spread"},"78":{"body":"In the key/property position, square brackets are used to construct computed fields in object literals . Computed fields are implicitly cast to string. SELECT { foo: 2, [2 + 2]: 5 };\n-- [{'column1': {'4': 5, 'foo': 2}}]\nSELECT { foo: 2, ['foo' || 2]: 5 };\n-- [{'column1': {'foo': 2, 'foo2': 5}}]","breadcrumbs":"SQL Reference » SQL Data Types » Computed Fields","id":"78","title":"Computed Fields"},"79":{"body":"Column names can be referred to in place of key-value pairs in object literals . SELECT {p.name, c.discounted} FROM products p JOIN coupons c ON p.name = c.name;\n-- [{'column1': {'discounted': 2.99, 'name': 'Salt'}}]","breadcrumbs":"SQL Reference » SQL Data Types » Shorthands","id":"79","title":"Shorthands"},"8":{"body":"Our first couple examples will use curl , which you probably already have installed. curl -d \"INSERT INTO users (name) VALUES ('Tianyu')\" -H \"Content-Type: application/sql\" -X POST http://localhost:3803/sql\ncurl -d \"SELECT * FROM users\" -H \"Content-Type: application/sql\" -X POST http://localhost:3803/sql Read more in the full HTTP API docs .","breadcrumbs":"Tutorial » Try It! » curl","id":"8","title":"curl"},"80":{"body":"Endb date/time data types currently only support times encoded as UTC.","breadcrumbs":"SQL Reference » SQL Data Types » Note on timezones","id":"80","title":"Note on timezones"},"81":{"body":"Operations performed on scalars will attempt to widen those scalars for the purpose of the operation, if reasonable. -> select 2.0 = 2;\n[{'column1': True}] This widening includes joins on scalars, but not collections (ARRAY or OBJECT): -> INSERT INTO zig {at: 2023-12-21, val: 2}\n[{'result': 1}]\n-> INSERT INTO zag {at: 2023-12-21T00:00:00, val: 2.0}\n[{'result': 1}]\n-> SELECT * FROM zig i JOIN zag a ON i.at = a.at;\n[{'at': datetime.datetime(2023, 12, 21, 0, 0, tzinfo=datetime.timezone.utc), 'val': 2.0}]\n-> SELECT * FROM zig i JOIN zag a ON i.val = a.val;\n[{'at': datetime.datetime(2023, 12, 21, 0, 0, tzinfo=datetime.timezone.utc), 'val': 2.0}]","breadcrumbs":"SQL Reference » SQL Data Types » Note on type widening","id":"81","title":"Note on type widening"},"82":{"body":"","breadcrumbs":"SQL Reference » Operators » Operators","id":"82","title":"Operators"},"83":{"body":"Two values can be compared using standard SQL comparison operators: =, == (equals) > (greater than) < (less than) >= (greater than or equal to) <= (less than or equal to) <>, != (not equal to) SELECT * FROM products WHERE NOT name = 'Coffee';\nSELECT * FROM products WHERE name = 'Coffee' AND name <> 'Kaapi';\nSELECT * FROM products WHERE name > 'Cake' AND price >= 5.00;","breadcrumbs":"SQL Reference » Operators » Comparison","id":"83","title":"Comparison"},"84":{"body":"BETWEEN returns TRUE when a value is greater-than-or-equal-to the first limit and less-than-or-equal-to the second. It has the form BETWEEN x AND y. It can be negated with the form NOT BETWEEN x AND y. SELECT * FROM products WHERE price BETWEEN 2.00 AND 4.00;\nSELECT * FROM products WHERE price NOT BETWEEN 2.00 AND 4.00; NOTE: BETWEEN can also be used with System Time .","breadcrumbs":"SQL Reference » Operators » BETWEEN","id":"84","title":"BETWEEN"},"85":{"body":"WHERE clauses can be modified and combined with standard SQL boolean operators: IS and IS NOT behave like = (==) and <> (!=) , respectively. They are usually used to augment equality checks to test for NULL, which is the third boolean value, representing \"unknown\". When both sides of IS evaluate to NULL it returns TRUE. When only one side of IS NOT evaluates to NULL it returns TRUE, When only one side of IS evaluates to NUll it returns FALSE. When both sides of IS NOT evaluates to NULL it returns FALSE. SELECT * FROM products WHERE product_no IS NULL;\nSELECT * FROM products WHERE product_no IS NOT NULL;\nSELECT * FROM products WHERE product_no IS 379; NOT can be prefixed to any clause to negate it: SELECT * FROM products WHERE NOT (name = 'Coffee'); AND returns true if two clauses both return true: SELECT * FROM products WHERE name = 'Coffee' AND price > 2.99; OR returns true if either of two clauses return true: SELECT * FROM products WHERE name = 'Coffee' OR name = 'Kaapi';","breadcrumbs":"SQL Reference » Operators » Boolean Operators","id":"85","title":"Boolean Operators"},"86":{"body":"Standard SQL mathemetical operators are available to any two numeric values: + (addition) - (subtraction) * (multiplication) / (division) % (modulo; integer remainder of division) << (left bit shift) >> (right bit shift) +NUMBER (unary plus) -NUMBER (unary minus) SELECT 1 + 3.555;\nSELECT 1 - 3.555;\nSELECT 2 * 3.555;\nSELECT 2 / 3.555;\nSELECT 2 % 3.555;\nSELECT 62 << 2;\nSELECT 62 >> 2;\nSELECT +128.5;\nSELECT -128.5; NOTE: Mathematical functions are documented under Functions .","breadcrumbs":"SQL Reference » Operators » Math","id":"86","title":"Math"},"87":{"body":"Standard SQL bitwise manipulation operators are available to any two values. & (bitwise and) | (bitwise or) The bitwise not operator is also available to a single value: ~ (bitwise not) SELECT 1 & 2;\nSELECT 1 | 2;\nSELECT ~1;","breadcrumbs":"SQL Reference » Operators » Bitwise Operators","id":"87","title":"Bitwise Operators"},"88":{"body":"LIKE is the operator equivalent of the LIKE function . LIKE returns TRUE if a string matches the supplied LIKE pattern, as defined below: A pattern can be a string literal. It can also contain underscores (_) and/or percentage symbols (%). An underscore matches exactly one character. A percentage symbol matches zero or more characters. Backslash escapes the following character to make it a literal. Use ESCAPE to override the default backslash escape character. SELECT * FROM products WHERE name LIKE 'Tofu';\nSELECT * FROM products WHERE name LIKE 'Tof_';\nSELECT * FROM products WHERE name LIKE '%of%';\nSELECT * FROM products WHERE name LIKE '\\%of\\%';\nSELECT * FROM products WHERE name LIKE 'X%ofX%' ESCAPE 'X'; NOT LIKE is used to invert the results of the match. SELECT * FROM products WHERE name NOT LIKE '%of%'; NOTE: Endb LIKE is case-sensitive.","breadcrumbs":"SQL Reference » Operators » LIKE","id":"88","title":"LIKE"},"89":{"body":"REGEXP returns TRUE if a string matches the supplied regular expression. REGEXP may be prefixed with NOT. SELECT * FROM products WHERE name REGEXP '.*ee|.*ea';\nSELECT * FROM products WHERE name NOT REGEXP '.*[fst]+.*';","breadcrumbs":"SQL Reference » Operators » REGEXP","id":"89","title":"REGEXP"},"9":{"body":"Ultimately, Endb will ship with permissively-licensed client libraries for all major languages. For now, we have provided some example code you can try: https://github.com/endatabas/endb/tree/main/examples","breadcrumbs":"Tutorial » Try It! » Example Libraries","id":"9","title":"Example Libraries"},"90":{"body":"GLOB returns TRUE if a string matches the supplied UNIX glob. GLOB may be prefixed with NOT. SELECT * FROM products WHERE name GLOB '*of*';\nSELECT * FROM avatars WHERE filename NOT GLOB '/opt/local/avatars/*/*.png'; NOTE: GLOB is case-sensitive.","breadcrumbs":"SQL Reference » Operators » GLOB","id":"90","title":"GLOB"},"91":{"body":"MATCH returns TRUE if the value on the left contains the value on the right, at the top level. Note that a top-level array to the right of the MATCH refers to a set of values that all need to match, not a literal array. The following expressions return TRUE: SELECT 'foo' MATCH 'foo';\nSELECT [1, 2, 3] MATCH [3, 1];\nSELECT {user: 'foo', age: 42} MATCH {age: 42};\nSELECT {a: [1, 2, {c: 3, x: 4}], c: 'b'} MATCH {a: [{x: 4}, 1]}; The following expressions return FALSE: SELECT [1, 2, [1, 3]] MATCH [1, 3];\nSELECT {foo: {bar: 'baz'}} MATCH {bar: 'baz'};\nSELECT {a: [1, 2, {c: 3, x: 4}], c: 'b'} MATCH {a: [{x: 4}, 3]}; NOTE: The @> operator is a synonym for MATCH. It is provided as a convenience for users accustomed to the equivalent JSON Containment Operator in Postgres .","breadcrumbs":"SQL Reference » Operators » MATCH (Containment)","id":"91","title":"MATCH (Containment)"},"92":{"body":"SOME is a synonym for ANY. ANY qualifies a subquery by comparing a single column or literal value with the result of that subquery. ANY is used in the form ANY (). It returns true if the subquery returns a one or more values for which the operator is true. The operator must return a boolean and the subquery must return a single column. SELECT 1500 < SOME (SELECT price FROM products);","breadcrumbs":"SQL Reference » Operators » ANY, SOME","id":"92","title":"ANY, SOME"},"93":{"body":"ALL qualifies a subquery by comparing a single column or literal value with the result of that subquery. ALL is used in the form ALL (). It returns true only if all values returned by the subquery are true for the operator provided. The operator must return a boolean and the subquery must return a single column. SELECT \"ok\" = ALL (SELECT status_code FROM statuses);","breadcrumbs":"SQL Reference » Operators » ALL","id":"93","title":"ALL"},"94":{"body":"EXISTS returns TRUE if the subquery which follows it returns at least one row. SELECT name FROM products WHERE EXISTS (SELECT 1 FROM coupons WHERE name = products.name);","breadcrumbs":"SQL Reference » Operators » EXISTS","id":"94","title":"EXISTS"},"95":{"body":"The standard SQL IN clause can be used to test lists and subqueries for containment of a value. SELECT * FROM products WHERE price IN (5.00, 5.99);\nSELECT * FROM products WHERE price IN (SELECT price FROM coupons); NOTE: Use MATCH to test for containment of a value in an array.","breadcrumbs":"SQL Reference » Operators » IN","id":"95","title":"IN"},"96":{"body":"The standard SQL NOT IN clause can be used to test lists and subqueries for absence of a value. SELECT * FROM products WHERE price NOT IN (5.00, 5.99);\nSELECT * FROM products WHERE price NOT IN (SELECT price FROM coupons); NOTE: Use MATCH to test for absence of a value in an array.","breadcrumbs":"SQL Reference » Operators » NOT IN","id":"96","title":"NOT IN"},"97":{"body":"The || operator concatenates two strings or arrays supplied as arguments. When concatenating to an array element: other elements, arrays, and blobs are accepted as the second argument. When concatenating to an array: arrays, blobs, and array elements are accepted as the second argument. Elements other than strings are cast to strings when concatenated with each other. Multiple operators can be chained together. SELECT \"Hello\" || \"World\";\nSELECT [1, 2, 3] || [4, 5, 6];\nSELECT 1 || 2;\nSELECT \"Hello\" || [\"World\"];\nSELECT [\"Hello\"] || \"World\";\nSELECT \"Hello\" || \"World\" || \"And\" || \"Friends\"; The Concatenation Operator is equivalent to the CONCAT function .","breadcrumbs":"SQL Reference » Operators » || (Concatenation)","id":"97","title":"|| (Concatenation)"},"98":{"body":"","breadcrumbs":"SQL Reference » Functions » Functions","id":"98","title":"Functions"},"99":{"body":"","breadcrumbs":"SQL Reference » Functions » String Functions","id":"99","title":"String Functions"}},"length":254,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"0":{":":{"0":{"0":{":":{"0":{"0":{".":{"0":{"0":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"z":{"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":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":16,"docs":{"122":{"tf":2.0},"123":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"137":{"tf":1.0},"161":{"tf":2.23606797749979},"162":{"tf":2.23606797749979},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"225":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"68":{"tf":2.6457513110645907},"69":{"tf":2.0},"71":{"tf":1.7320508075688772}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{".":{"0":{"0":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"3":{"df":0,"docs":{},"z":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"137":{"tf":1.0},"224":{"tf":1.0},"68":{"tf":1.0}},"z":{"df":5,"docs":{"123":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":3,"docs":{"161":{"tf":1.0},"162":{"tf":1.0},"71":{"tf":1.0}}},"3":{":":{"0":{"4":{":":{"0":{"5":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"162":{"tf":1.0},"163":{"tf":1.0}}},"4":{"df":9,"docs":{"161":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}}},"5":{"df":4,"docs":{"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"164":{"tf":1.0}}},"7":{"df":5,"docs":{"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0}}},"8":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"156":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"236":{"tf":1.0}}},"9":{"df":1,"docs":{"245":{"tf":1.4142135623730951}},"t":{"2":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":3,"docs":{"204":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}}}},"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":{"1":{"2":{"d":{"df":0,"docs":{},"e":{"4":{"3":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"105":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"41":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":2.0}}},"1":{",":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":6,"docs":{"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0}}}}}}}},"2":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"4":{"0":{"df":3,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"40":{"tf":1.0}}},"df":1,"docs":{"40":{"tf":1.0}}},"5":{"0":{"df":3,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"40":{"tf":1.0}}},"df":1,"docs":{"40":{"tf":1.0}}},"9":{"8":{"df":1,"docs":{"25":{"tf":1.0}}},"9":{"df":4,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"25":{"tf":1.0}}},"df":1,"docs":{"117":{"tf":1.0}}},"df":1,"docs":{"101":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"229":{"tf":1.0}}}}},"1":{"df":1,"docs":{"233":{"tf":1.0}}},"2":{"3":{"df":5,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"190":{"tf":1.0},"64":{"tf":1.0}}},"8":{".":{"5":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"66":{"tf":1.0}}},":":{"3":{"4":{":":{"5":{"6":{".":{"7":{"8":{"9":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"74":{"tf":1.7320508075688772},"81":{"tf":2.0}}},"3":{"df":1,"docs":{"46":{"tf":1.0}}},"5":{"0":{"0":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":0,"docs":{},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"9":{"2":{"8":{"df":1,"docs":{"245":{"tf":1.0}}},"9":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":1,"docs":{"233":{"tf":1.0}}},"4":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"df":2,"docs":{"233":{"tf":1.7320508075688772},"235":{"tf":1.0}}},"2":{"df":1,"docs":{"74":{"tf":1.7320508075688772}}},"5":{"df":1,"docs":{"233":{"tf":1.0}}},"6":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"0":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"9":{"2":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":29,"docs":{"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"132":{"tf":1.0},"140":{"tf":1.0},"145":{"tf":1.0},"168":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":2.23606797749979},"179":{"tf":1.4142135623730951},"201":{"tf":1.0},"205":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"77":{"tf":3.0},"81":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"91":{"tf":2.8284271247461903},"94":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"2":{",":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}},"'":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"'":{"2":{"0":{"2":{"3":{"df":5,"docs":{"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"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":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"0":{"df":2,"docs":{"25":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":1,"docs":{"81":{"tf":2.0}}},"9":{"9":{"df":7,"docs":{"217":{"tf":1.0},"23":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"1":{"df":8,"docs":{"161":{"tf":2.0},"162":{"tf":2.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"241":{"tf":1.0},"71":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"230":{"tf":1.0}}},"6":{"df":1,"docs":{"241":{"tf":1.0}}},"7":{"df":4,"docs":{"224":{"tf":1.4142135623730951},"241":{"tf":1.0},"68":{"tf":2.23606797749979},"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"1":{"0":{"df":3,"docs":{"229":{"tf":1.0},"233":{"tf":1.0},"241":{"tf":1.0}}},"1":{"df":3,"docs":{"204":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}}},"2":{"df":1,"docs":{"241":{"tf":1.0}}},"5":{"df":1,"docs":{"241":{"tf":1.0}}},"6":{"df":1,"docs":{"241":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":3,"docs":{"229":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"241":{"tf":1.0},"251":{"tf":1.0}}},"3":{"df":8,"docs":{"13":{"tf":1.4142135623730951},"156":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"225":{"tf":1.0},"233":{"tf":1.0},"252":{"tf":1.0},"81":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"134":{"tf":1.0}}},"1":{"df":1,"docs":{"81":{"tf":1.7320508075688772}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"\"":{",":{"\"":{"@":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"\"":{":":{"\"":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"d":{":":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"\"":{"df":0,"docs":{},"}":{"df":0,"docs":{},"}":{",":{"df":0,"docs":{},"{":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"1":{"\"":{":":{"1":{",":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"2":{"\"":{":":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"]":{",":{"[":{"1":{",":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"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":5,"docs":{"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0}}},"3":{":":{"3":{"0":{":":{"0":{"0":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"9":{":":{"1":{"2":{".":{"1":{"2":{"3":{"4":{"5":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"124":{"tf":1.0}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":2,"docs":{"158":{"tf":1.0},"159":{"tf":1.0}}},"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":{"179":{"tf":1.4142135623730951}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":3,"docs":{"156":{"tf":1.0},"158":{"tf":1.0},"236":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":37,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"127":{"tf":1.0},"132":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":2.23606797749979},"176":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.7320508075688772},"226":{"tf":1.0},"23":{"tf":1.0},"238":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":2.23606797749979},"77":{"tf":2.8284271247461903},"78":{"tf":2.6457513110645907},"81":{"tf":1.4142135623730951},"86":{"tf":2.23606797749979},"87":{"tf":1.4142135623730951},"91":{"tf":2.0},"97":{"tf":1.4142135623730951}}},"3":{",":{"4":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},".":{"0":{"0":{"df":1,"docs":{"29":{"tf":1.0}}},"df":1,"docs":{"39":{"tf":1.0}}},"5":{"5":{"5":{"df":1,"docs":{"86":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{"df":5,"docs":{"218":{"tf":1.0},"23":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":0,"docs":{},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"159":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"3":{"5":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"74":{"tf":1.7320508075688772}}},"7":{"9":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"3":{":":{"3":{"8":{"0":{"3":{"df":2,"docs":{"195":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"198":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":1,"docs":{"232":{"tf":1.0}}},"df":21,"docs":{"100":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"132":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.7320508075688772},"179":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.0},"48":{"tf":1.4142135623730951},"54":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"77":{"tf":2.0},"91":{"tf":2.6457513110645907},"97":{"tf":1.0}}},"4":{".":{"0":{"0":{"df":2,"docs":{"23":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"7":{"7":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"9":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"54":{"tf":1.0}}},"1":{"df":1,"docs":{"215":{"tf":1.7320508075688772}}},"9":{"a":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":3,"docs":{"179":{"tf":1.0},"224":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"5":{"6":{"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"7":{"1":{"4":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"b":{"9":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":0,"docs":{},"e":{"1":{"2":{"0":{"0":{"b":{"df":0,"docs":{},"f":{"a":{"4":{"7":{"df":1,"docs":{"144":{"tf":1.0}}},"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":{"8":{"5":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"9":{"2":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"100":{"tf":1.0},"106":{"tf":1.4142135623730951},"132":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":2.0},"178":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"42":{"tf":1.0},"46":{"tf":1.0},"73":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"91":{"tf":2.0},"97":{"tf":1.0}},"f":{"7":{"4":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"}":{"]":{".":{"a":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{".":{"0":{"0":{"df":5,"docs":{"29":{"tf":1.0},"55":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"9":{"8":{"df":2,"docs":{"24":{"tf":1.0},"28":{"tf":1.0}}},"9":{"df":5,"docs":{"139":{"tf":1.0},"23":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"c":{"5":{"a":{"5":{"1":{"2":{"9":{"0":{"7":{"4":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"101":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.4142135623730951},"29":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"77":{"tf":2.0},"78":{"tf":2.0},"97":{"tf":1.0}}},"6":{"0":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}},"4":{"/":{"1":{"2":{"8":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"224":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}},"6":{"df":1,"docs":{"108":{"tf":1.0}}},"7":{"df":1,"docs":{"108":{"tf":1.0}}},"df":2,"docs":{"29":{"tf":1.7320508075688772},"97":{"tf":1.0}},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"238":{"tf":1.0}}}}},"7":{".":{"9":{"9":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"5":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{"6":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"4":{"df":2,"docs":{"224":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":1,"docs":{"112":{"tf":1.0}}},"8":{"9":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"180":{"tf":1.7320508075688772},"29":{"tf":1.0}}},"8":{".":{"9":{"9":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"5":{"2":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{"d":{"d":{"2":{"9":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"8":{"df":0,"docs":{},"e":{"7":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"1":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"233":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"147":{"tf":1.0},"224":{"tf":1.4142135623730951}}},"9":{".":{"9":{"9":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"7":{"1":{"9":{"9":{"2":{"5":{"4":{"7":{"4":{"0":{"9":{"9":{"2":{".":{"1":{"2":{"3":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"2":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"176":{"tf":1.0}}},"7":{",":{"9":{"6":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"176":{"tf":1.0},"228":{"tf":1.0}}},"9":{"df":3,"docs":{"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"_":{"df":1,"docs":{"88":{"tf":1.0}}},"a":{".":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"b":{"7":{"c":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"120":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":10,"docs":{"10":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.0},"241":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"58":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}}}}},"c":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":17,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"208":{"tf":1.7320508075688772},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.0},"35":{"tf":1.4142135623730951},"45":{"tf":1.0},"64":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"125":{"tf":1.0},"151":{"tf":1.0},"155":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"155":{"tf":1.0},"175":{"tf":1.0}}}}}}}},"r":{"d":{"df":6,"docs":{"13":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"233":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"120":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"120":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"55":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"20":{"tf":1.0},"57":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"228":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"243":{"tf":1.0},"251":{"tf":2.0}}}}},"d":{"df":5,"docs":{"15":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.0},"46":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"183":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"245":{"tf":1.0}}}}}}},"df":0,"docs":{}},"[":{"0":{"]":{".":{"c":{"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":6,"docs":{"14":{"tf":1.0},"168":{"tf":1.0},"229":{"tf":1.4142135623730951},"238":{"tf":1.0},"30":{"tf":1.0},"56":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"33":{"tf":1.0},"43":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"253":{"tf":1.0}}}}}}},"g":{"df":1,"docs":{"91":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":5,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"134":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"16":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":2,"docs":{"228":{"tf":1.0},"241":{"tf":1.0}},"m":{"df":1,"docs":{"198":{"tf":1.0}}}},"k":{"a":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"a":{"df":3,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"a":{"df":4,"docs":{"24":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"48":{"tf":1.0}},"s":{"df":2,"docs":{"120":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":8,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"181":{"tf":1.0},"201":{"tf":1.4142135623730951},"239":{"tf":1.0},"246":{"tf":1.0},"47":{"tf":1.0},"57":{"tf":1.0}}},"y":{"d":{"b":{"df":2,"docs":{"241":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"236":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"234":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}}}},"z":{"df":0,"docs":{},"o":{"'":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":2,"docs":{"194":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":5,"docs":{"176":{"tf":1.0},"193":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}},"n":{"df":5,"docs":{"110":{"tf":1.0},"187":{"tf":1.0},"234":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":6,"docs":{"13":{"tf":1.0},"190":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"250":{"tf":1.0},"40":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":10,"docs":{"16":{"tf":1.0},"19":{"tf":1.0},"216":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0},"28":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"237":{"tf":1.0},"241":{"tf":1.4142135623730951},"250":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"245":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"239":{"tf":1.0}}}},"t":{"df":5,"docs":{"228":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"216":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":5,"docs":{"37":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"15":{"tf":1.0},"21":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"77":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"0":{"tf":1.0},"235":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"232":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"220":{"tf":2.0},"228":{"tf":1.0},"234":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":6,"docs":{"192":{"tf":1.0},"199":{"tf":1.0},"238":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"8":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"218":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"235":{"tf":1.4142135623730951},"41":{"tf":1.0},"51":{"tf":1.0}},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"203":{"tf":2.23606797749979},"204":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.7320508075688772},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0}}}}}},"l":{"d":{"+":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"204":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":14,"docs":{"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"205":{"tf":1.7320508075688772},"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},"216":{"tf":1.0},"220":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"n":{"d":{".":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"213":{"tf":1.7320508075688772},"220":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"214":{"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":{}}},"x":{"df":3,"docs":{"207":{"tf":1.7320508075688772},"211":{"tf":1.7320508075688772},"216":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"109":{"tf":1.0},"234":{"tf":1.0}}},"df":2,"docs":{"134":{"tf":1.0},"54":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"168":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"238":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"227":{"tf":1.0},"242":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"238":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"110":{"tf":1.7320508075688772},"141":{"tf":1.0},"147":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"206":{"tf":1.0},"215":{"tf":1.0},"233":{"tf":1.0},"64":{"tf":1.0},"97":{"tf":1.7320508075688772}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"109":{"tf":1.0},"127":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"16":{"tf":1.0},"230":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"(":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":1,"docs":{"40":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"132":{"tf":1.7320508075688772},"40":{"tf":1.0}}}}},"df":0,"docs":{}},"df":22,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"132":{"tf":2.23606797749979},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"180":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772},"73":{"tf":2.6457513110645907},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.0},"91":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":2.449489742783178}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"220":{"tf":3.0},"228":{"tf":1.0},"234":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.0}}}}}},"s":{"c":{"df":2,"docs":{"44":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"120":{"tf":1.0}},"h":{"df":1,"docs":{"120":{"tf":1.0}}}}},"k":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"234":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"185":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":2.449489742783178},"191":{"tf":1.7320508075688772},"20":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"10":{"tf":1.0},"206":{"tf":1.0},"220":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"2":{"df":1,"docs":{"120":{"tf":1.0}}},"df":1,"docs":{"120":{"tf":1.0}},"h":{"df":1,"docs":{"120":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"229":{"tf":1.0},"233":{"tf":1.0},"57":{"tf":1.0},"81":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"131":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":4,"docs":{"229":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.0},"215":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"215":{"tf":1.4142135623730951},"33":{"tf":1.0}}}}},"o":{"df":1,"docs":{"66":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":11,"docs":{"160":{"tf":1.0},"175":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"29":{"tf":1.0},"50":{"tf":1.0},"6":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"130":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"11":{"tf":1.0},"158":{"tf":1.0},"215":{"tf":1.0}}}},"df":1,"docs":{"237":{"tf":1.0}}},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"250":{"tf":1.0}}}}}},"b":{"'":{"1":{"5":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"]":{"[":{"'":{"a":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{".":{"[":{"'":{"a":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"169":{"tf":1.0}}},"c":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"1":{"df":0,"docs":{},"e":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}},"8":{"df":0,"docs":{},"e":{"3":{"5":{"c":{"8":{"2":{"b":{"9":{"3":{"5":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"[":{"'":{"a":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":2.6457513110645907}}}}}}},"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"13":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"229":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"235":{"tf":1.0}}}},"r":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"6":{"4":{"(":{"'":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"'":{"0":{"1":{"0":{"2":{"0":{"3":{"df":1,"docs":{"143":{"tf":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":{"143":{"tf":2.0}}},"df":0,"docs":{}},"df":11,"docs":{"120":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"225":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"25":{"tf":1.0},"45":{"tf":1.0}}},"i":{"c":{"df":6,"docs":{"11":{"tf":1.0},"186":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"215":{"tf":1.7320508075688772},"33":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"y":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":8,"docs":{"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"225":{"tf":1.0},"77":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"233":{"tf":1.0},"235":{"tf":1.0}}}}},"df":1,"docs":{"29":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"20":{"tf":1.0},"47":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"12":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"175":{"tf":1.0},"192":{"tf":1.0},"233":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"85":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"131":{"tf":1.0},"203":{"tf":1.0},"234":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"58":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"232":{"tf":1.0},"234":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":8,"docs":{"167":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"220":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"58":{"tf":1.0},"88":{"tf":1.0}}}}},"n":{"d":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"235":{"tf":1.0}}}}},"t":{"df":3,"docs":{"0":{"tf":1.0},"148":{"tf":1.0},"19":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"158":{"tf":2.23606797749979},"159":{"tf":1.4142135623730951},"233":{"tf":1.0},"84":{"tf":2.6457513110645907}}}}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":2,"docs":{"21":{"tf":1.0},"245":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"226":{"tf":1.0},"66":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"146":{"tf":1.4142135623730951},"194":{"tf":1.0},"197":{"tf":1.7320508075688772},"198":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"6":{"tf":1.0},"72":{"tf":1.0}}}}},"d":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"74":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":4,"docs":{"224":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"86":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":2.449489742783178}}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"df":9,"docs":{"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":2.0},"224":{"tf":1.0},"226":{"tf":1.0},"250":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"215":{"tf":1.0},"216":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"224":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":12,"docs":{"159":{"tf":1.0},"219":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"237":{"tf":1.0},"245":{"tf":1.0},"38":{"tf":1.4142135623730951},"52":{"tf":1.0},"58":{"tf":1.0},"85":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}}}},"x":{"df":1,"docs":{"238":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"35":{"tf":1.0},"74":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"78":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"196":{"tf":1.0}}}},"d":{"df":2,"docs":{"183":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"238":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"229":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":10,"docs":{"193":{"tf":1.0},"196":{"tf":1.0},"21":{"tf":1.0},"229":{"tf":1.4142135623730951},"231":{"tf":1.0},"234":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"247":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":3,"docs":{"241":{"tf":1.4142135623730951},"246":{"tf":1.0},"250":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":3,"docs":{"200":{"tf":1.4142135623730951},"219":{"tf":2.0},"221":{"tf":1.4142135623730951}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":5,"docs":{"230":{"tf":1.0},"233":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.7320508075688772},"241":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"221":{"tf":1.0},"23":{"tf":1.0}}}}}},"y":{"df":2,"docs":{"229":{"tf":1.0},"240":{"tf":1.0}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"101":{"tf":1.0},"146":{"tf":1.4142135623730951}}}}}},"c":{"'":{"]":{"[":{"1":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"74":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":4,"docs":{"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"74":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"34":{"tf":1.0},"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"[":{"1":{"df":1,"docs":{"173":{"tf":1.0}}},"2":{"]":{".":{"df":0,"docs":{},"f":{"df":1,"docs":{"180":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"83":{"tf":1.0}}}},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"220":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}},"a":{"d":{"a":{"'":{"df":0,"docs":{},"}":{",":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"238":{"tf":1.0},"56":{"tf":1.4142135623730951},"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"57":{"tf":1.0},"59":{"tf":1.0}}}}}},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"236":{"tf":1.0},"47":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.0},"34":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":10,"docs":{"129":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"181":{"tf":1.0},"20":{"tf":1.0},"231":{"tf":1.0},"238":{"tf":1.4142135623730951},"54":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0}}},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}},"1":{"2":{"3":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":5,"docs":{"136":{"tf":1.7320508075688772},"64":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.0},"97":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}},"d":{"c":{"df":1,"docs":{"230":{"tf":1.0}}},"df":1,"docs":{"10":{"tf":1.0}}},"df":16,"docs":{"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"168":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.7320508075688772},"177":{"tf":2.0},"178":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"91":{"tf":2.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"230":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":1,"docs":{"239":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"109":{"tf":1.0},"97":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"233":{"tf":1.0},"238":{"tf":1.0}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"c":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"20":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.4142135623730951}}}},"r":{"(":{"1":{"0":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"6":{"5":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"147":{"tf":1.7320508075688772},"77":{"tf":1.0},"88":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"_":{"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":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"100":{"tf":1.7320508075688772},"112":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":4,"docs":{"139":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"185":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"185":{"tf":1.0},"190":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"120":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":4,"docs":{"21":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"238":{"tf":1.0},"250":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":17,"docs":{"167":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":2.0},"34":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":2.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"16":{"tf":1.0},"195":{"tf":1.0},"230":{"tf":1.0}}},"r":{"df":3,"docs":{"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"10":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"215":{"tf":1.7320508075688772},"222":{"tf":1.4142135623730951},"35":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"151":{"tf":1.0},"233":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"10":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"149":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"u":{"d":{"df":1,"docs":{"250":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"141":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"d":{"'":{"df":1,"docs":{"233":{"tf":1.0}}},"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":6,"docs":{"10":{"tf":1.0},"108":{"tf":1.0},"181":{"tf":1.0},"215":{"tf":1.7320508075688772},"253":{"tf":1.0},"9":{"tf":1.0}}}},"df":1,"docs":{"120":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":4,"docs":{"23":{"tf":1.0},"24":{"tf":2.23606797749979},"83":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":2,"docs":{"230":{"tf":1.0},"232":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"120":{"tf":1.0},"179":{"tf":1.0},"225":{"tf":1.0},"40":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"234":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"205":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"222":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"1":{"\"":{",":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"2":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"1":{",":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"2":{"\"":{":":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"211":{"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":{",":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"2":{"\"":{":":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"132":{"tf":1.0},"173":{"tf":2.0},"174":{"tf":1.4142135623730951},"48":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":2.0},"77":{"tf":2.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0}}},"2":{"df":1,"docs":{"48":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"183":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"213":{"tf":1.0},"214":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"246":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951}}}},"df":35,"docs":{"128":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"155":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":2.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"220":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.7320508075688772},"246":{"tf":1.0},"25":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":2.0},"37":{"tf":1.4142135623730951},"38":{"tf":2.6457513110645907},"39":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"54":{"tf":2.6457513110645907},"63":{"tf":1.0},"76":{"tf":2.0},"79":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"205":{"tf":1.0},"215":{"tf":1.0},"221":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"230":{"tf":1.0},"241":{"tf":1.0}}},"m":{"a":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":4,"docs":{"133":{"tf":1.0},"209":{"tf":1.0},"23":{"tf":1.4142135623730951},"35":{"tf":1.0}},"n":{"d":{"df":7,"docs":{"195":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"240":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"190":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"238":{"tf":1.0},"247":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.0},"55":{"tf":1.4142135623730951}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"235":{"tf":1.0}}}},"r":{"df":6,"docs":{"234":{"tf":1.0},"238":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}}}},"t":{"df":9,"docs":{"136":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"194":{"tf":1.0},"241":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.7320508075688772},"6":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"196":{"tf":1.0},"197":{"tf":1.0},"247":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"t":{"df":5,"docs":{"0":{"tf":1.0},"207":{"tf":1.0},"241":{"tf":1.0},"30":{"tf":1.0},"44":{"tf":1.0}}},"x":{"df":4,"docs":{"229":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"13":{"tf":1.0},"228":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}},"s":{"df":1,"docs":{"21":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"49":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"228":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"250":{"tf":1.7320508075688772},"74":{"tf":1.0},"78":{"tf":1.7320508075688772}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.7320508075688772},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"109":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"97":{"tf":2.449489742783178}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"234":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"235":{"tf":1.0},"237":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"138":{"tf":1.0},"139":{"tf":1.7320508075688772},"46":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"151":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":2.8284271247461903},"38":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"232":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"185":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":2,"docs":{"185":{"tf":1.0},"54":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"78":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":17,"docs":{"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"161":{"tf":1.7320508075688772},"20":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":24,"docs":{"132":{"tf":1.0},"199":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":2.0},"204":{"tf":1.7320508075688772},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"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},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"233":{"tf":1.0},"55":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"253":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"22":{"tf":1.0},"37":{"tf":1.0},"91":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"'":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"235":{"tf":1.0}}},"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":2,"docs":{"197":{"tf":1.0},"233":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"253":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":4,"docs":{"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"233":{"tf":1.0},"245":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"247":{"tf":1.0}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"108":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"120":{"tf":1.0}}},"t":{"df":3,"docs":{"229":{"tf":1.0},"233":{"tf":1.4142135623730951},"55":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"h":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":3,"docs":{"112":{"tf":1.0},"131":{"tf":2.0},"173":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"8":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"40":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":8,"docs":{"34":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"241":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"148":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"233":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"237":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":18,"docs":{"12":{"tf":1.4142135623730951},"170":{"tf":1.0},"187":{"tf":2.449489742783178},"190":{"tf":2.23606797749979},"22":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"235":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"55":{"tf":2.23606797749979},"56":{"tf":1.4142135623730951}}}},"u":{"b":{"df":0,"docs":{},"e":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"l":{"df":23,"docs":{"10":{"tf":1.0},"199":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":2.0},"207":{"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},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"5":{"tf":1.0},"8":{"tf":2.0}},"i":{"df":1,"docs":{"74":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":2,"docs":{"125":{"tf":1.4142135623730951},"154":{"tf":1.7320508075688772}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"125":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"125":{"tf":1.4142135623730951},"13":{"tf":1.0},"152":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}},"df":10,"docs":{"13":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"56":{"tf":1.0},"80":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"125":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"d":{"2":{"6":{"8":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"15":{"tf":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":{"15":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"a":{"'":{"df":1,"docs":{"236":{"tf":1.0}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":27,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":1.4142135623730951},"155":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"181":{"tf":1.4142135623730951},"191":{"tf":1.0},"21":{"tf":1.4142135623730951},"228":{"tf":2.23606797749979},"229":{"tf":2.6457513110645907},"230":{"tf":2.0},"231":{"tf":1.7320508075688772},"232":{"tf":1.7320508075688772},"233":{"tf":3.7416573867739413},"234":{"tf":1.7320508075688772},"235":{"tf":2.0},"238":{"tf":2.449489742783178},"239":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}},"df":51,"docs":{"117":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"143":{"tf":1.0},"148":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"16":{"tf":1.7320508075688772},"167":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"192":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"208":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":2.23606797749979},"22":{"tf":2.0},"220":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"230":{"tf":1.7320508075688772},"232":{"tf":1.4142135623730951},"233":{"tf":3.3166247903554},"234":{"tf":1.0},"235":{"tf":2.8284271247461903},"236":{"tf":1.7320508075688772},"237":{"tf":1.4142135623730951},"238":{"tf":3.3166247903554},"239":{"tf":2.0},"241":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.0},"246":{"tf":1.4142135623730951},"249":{"tf":1.0},"28":{"tf":1.7320508075688772},"30":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"234":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"(":{"'":{"2":{"0":{"0":{"1":{"df":1,"docs":{"122":{"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":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"121":{"tf":1.0},"151":{"tf":1.0},"80":{"tf":1.0}}}}}},"df":11,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":2.0},"148":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.4142135623730951},"156":{"tf":1.0},"224":{"tf":1.4142135623730951},"245":{"tf":1.0},"69":{"tf":2.449489742783178}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"'":{"2":{"0":{"0":{"1":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"2":{"0":{"2":{"3":{"df":1,"docs":{"81":{"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":{}}}}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}}}},"y":{"df":4,"docs":{"124":{"tf":1.4142135623730951},"154":{"tf":1.0},"246":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"b":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":21,"docs":{"122":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"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},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.4142135623730951}},"e":{"6":{"df":0,"docs":{},"f":{"df":1,"docs":{"60":{"tf":1.0}}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}}},"c":{"a":{"d":{"df":5,"docs":{"230":{"tf":1.7320508075688772},"232":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951},"241":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"238":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"171":{"tf":1.0}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":12,"docs":{"13":{"tf":1.0},"133":{"tf":1.0},"16":{"tf":1.0},"172":{"tf":1.0},"195":{"tf":1.4142135623730951},"198":{"tf":1.7320508075688772},"208":{"tf":1.0},"228":{"tf":1.0},"236":{"tf":1.0},"44":{"tf":1.0},"57":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"190":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"215":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"88":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"120":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"13":{"tf":1.4142135623730951},"188":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":2.0},"235":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":2.8284271247461903}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"133":{"tf":1.4142135623730951},"211":{"tf":1.0},"222":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"32":{"tf":1.0},"35":{"tf":1.4142135623730951}}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"238":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"233":{"tf":1.0},"239":{"tf":1.0}}}},"t":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"131":{"tf":1.0},"154":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"167":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0}}}}},"s":{"c":{"df":2,"docs":{"132":{"tf":1.0},"44":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"a":{"c":{"df":4,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"58":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"234":{"tf":1.4142135623730951},"235":{"tf":1.0}}}},"r":{"df":4,"docs":{"187":{"tf":1.0},"233":{"tf":1.4142135623730951},"236":{"tf":1.0},"64":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"233":{"tf":2.0},"235":{"tf":1.7320508075688772}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"17":{"tf":1.0},"192":{"tf":1.0},"20":{"tf":1.0},"224":{"tf":1.0},"237":{"tf":1.0},"248":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"20":{"tf":1.0},"229":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"131":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":2.0},"245":{"tf":1.0},"252":{"tf":1.0},"34":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"225":{"tf":1.0}}}},"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"131":{"tf":1.0},"154":{"tf":1.0},"16":{"tf":1.0},"234":{"tf":1.4142135623730951},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"58":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"233":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0}},"i":{"df":2,"docs":{"15":{"tf":1.0},"238":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"132":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"232":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"198":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.4142135623730951},"249":{"tf":1.0},"49":{"tf":1.0},"77":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"197":{"tf":1.0},"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"74":{"tf":1.7320508075688772},"79":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":5,"docs":{"228":{"tf":1.4142135623730951},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"250":{"tf":1.0},"30":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"l":{"df":4,"docs":{"201":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"8":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"df":2,"docs":{"195":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":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":{"195":{"tf":1.0}}}}},"df":5,"docs":{"193":{"tf":1.7320508075688772},"195":{"tf":2.23606797749979},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"4":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":43,"docs":{"0":{"tf":1.4142135623730951},"117":{"tf":2.449489742783178},"12":{"tf":1.0},"120":{"tf":1.0},"131":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.7320508075688772},"17":{"tf":1.0},"171":{"tf":1.0},"18":{"tf":2.0},"181":{"tf":1.4142135623730951},"192":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"22":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.4142135623730951},"23":{"tf":2.23606797749979},"230":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.7320508075688772},"234":{"tf":1.0},"238":{"tf":1.7320508075688772},"24":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"15":{"tf":1.0},"16":{"tf":1.0},"176":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"197":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"22":{"tf":1.0},"247":{"tf":1.0}}}},"t":{"df":2,"docs":{"169":{"tf":1.0},"171":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"171":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"195":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"21":{"tf":1.4142135623730951},"245":{"tf":1.0}},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"228":{"tf":1.0},"235":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}},"r":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"187":{"tf":1.0},"188":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"230":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"71":{"tf":1.0}}},"m":{"df":1,"docs":{"233":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"230":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"233":{"tf":1.0},"236":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":2.23606797749979},"60":{"tf":1.7320508075688772}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"238":{"tf":1.0},"71":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"p":{"1":{"df":0,"docs":{},"y":{"2":{"df":0,"docs":{},"m":{"1":{"0":{"d":{"df":0,"docs":{},"t":{"2":{"df":0,"docs":{},"h":{"3":{"0":{"df":0,"docs":{},"m":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"1":{"2":{"df":0,"docs":{},"h":{"3":{"0":{"df":0,"docs":{},"m":{"5":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"247":{"tf":1.0},"57":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":9,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.7320508075688772},"245":{"tf":1.4142135623730951},"54":{"tf":1.0},"75":{"tf":1.0}},"o":{"d":{"b":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"b":{"0":{"7":{"7":{"6":{"5":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":20,"docs":{"127":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"187":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"221":{"tf":1.4142135623730951},"232":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"34":{"tf":1.0},"45":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"194":{"tf":1.4142135623730951},"233":{"tf":1.0},"252":{"tf":1.0},"6":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"234":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"170":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"236":{"tf":1.0},"34":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"238":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"187":{"tf":1.0},"188":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"40":{"tf":1.0}}}},"df":1,"docs":{"20":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":2.23606797749979}}}}},"df":2,"docs":{"177":{"tf":1.0},"178":{"tf":1.4142135623730951}},"e":{"df":1,"docs":{"105":{"tf":1.0}},"|":{".":{"*":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"89":{"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":3,"docs":{"110":{"tf":1.0},"237":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"228":{"tf":1.0},"250":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"179":{"tf":1.0},"40":{"tf":1.7320508075688772},"97":{"tf":2.0}}}}}}},"i":{"d":{"df":2,"docs":{"206":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"190":{"tf":1.0},"226":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}},"b":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"11":{"tf":1.0},"238":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"33":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"74":{"tf":1.0}}}}},"o":{"d":{"df":7,"docs":{"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"150":{"tf":1.0},"155":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"194":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":17,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"193":{"tf":1.0},"228":{"tf":2.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"232":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"241":{"tf":1.7320508075688772},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.4142135623730951},"250":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"df":2,"docs":{"195":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"'":{"df":8,"docs":{"148":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":1.4142135623730951},"18":{"tf":1.0},"200":{"tf":1.0},"21":{"tf":1.4142135623730951},"246":{"tf":1.0}}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{":":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"195":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"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":{"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"195":{"tf":1.4142135623730951},"198":{"tf":1.0},"4":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"198":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":73,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"13":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"16":{"tf":1.7320508075688772},"167":{"tf":1.0},"17":{"tf":1.0},"181":{"tf":2.0},"185":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.7320508075688772},"198":{"tf":2.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"20":{"tf":2.0},"202":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":2.0},"215":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"220":{"tf":1.4142135623730951},"222":{"tf":1.0},"224":{"tf":1.4142135623730951},"228":{"tf":2.23606797749979},"229":{"tf":1.0},"231":{"tf":1.4142135623730951},"234":{"tf":2.8284271247461903},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"48":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0}}},"df":11,"docs":{"106":{"tf":1.0},"149":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"192":{"tf":1.0},"2":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"228":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"231":{"tf":1.0},"233":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"215":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":8,"docs":{"157":{"tf":1.0},"21":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.0},"76":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"238":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}}},"v":{"df":1,"docs":{"198":{"tf":2.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"186":{"tf":1.0},"35":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"140":{"tf":1.0},"238":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}},"t":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"109":{"tf":1.0},"117":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"229":{"tf":1.0},"39":{"tf":1.0},"71":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":1,"docs":{"233":{"tf":1.0}},"s":{"df":5,"docs":{"13":{"tf":1.0},"228":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":2.23606797749979}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"232":{"tf":1.0},"235":{"tf":1.0},"244":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"19":{"tf":1.4142135623730951},"220":{"tf":1.0},"24":{"tf":1.0},"54":{"tf":1.0},"76":{"tf":1.0}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"110":{"tf":1.0},"88":{"tf":2.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"t":{"c":{"df":3,"docs":{"20":{"tf":1.0},"250":{"tf":1.4142135623730951},"48":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":2,"docs":{"229":{"tf":1.0},"230":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"85":{"tf":2.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"15":{"tf":1.0},"195":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0}},"t":{"df":4,"docs":{"204":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.0}},"u":{"df":1,"docs":{"233":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"232":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"165":{"tf":1.0},"166":{"tf":1.0},"76":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"213":{"tf":1.0},"214":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":18,"docs":{"10":{"tf":2.0},"13":{"tf":1.4142135623730951},"141":{"tf":1.0},"167":{"tf":1.4142135623730951},"199":{"tf":1.0},"206":{"tf":1.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"245":{"tf":1.0},"44":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"76":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.0},"129":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"149":{"tf":1.0},"29":{"tf":1.0}},"e":{"d":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"v":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":1,"docs":{"159":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"190":{"tf":1.0},"198":{"tf":1.0},"215":{"tf":1.0},"228":{"tf":1.0},"243":{"tf":1.0},"247":{"tf":1.4142135623730951},"29":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":19,"docs":{"13":{"tf":1.4142135623730951},"131":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.4142135623730951},"192":{"tf":1.0},"220":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.4142135623730951},"241":{"tf":1.0},"250":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.7320508075688772}}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"120":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"252":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":5,"docs":{"139":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.7320508075688772},"237":{"tf":1.0},"241":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"194":{"tf":1.0},"20":{"tf":1.0},"234":{"tf":1.0},"6":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"193":{"tf":1.0},"199":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"57":{"tf":1.7320508075688772},"61":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"37":{"tf":1.0},"38":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"0":{"tf":1.0},"198":{"tf":1.0}}}}}}},"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"201":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"195":{"tf":1.0},"204":{"tf":1.0},"235":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"r":{"df":1,"docs":{"238":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"195":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"127":{"tf":1.0},"132":{"tf":1.0},"140":{"tf":1.0},"17":{"tf":1.4142135623730951},"37":{"tf":1.0},"44":{"tf":1.0},"55":{"tf":1.4142135623730951},"89":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"125":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":2,"docs":{"125":{"tf":2.23606797749979},"235":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"238":{"tf":1.0}}}}}}}},"f":{"7":{"c":{"3":{"1":{"4":{"d":{"d":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"235":{"tf":1.0},"238":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"237":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"159":{"tf":1.0}}},"s":{"df":6,"docs":{"139":{"tf":1.0},"224":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"11":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"33":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"241":{"tf":1.0},"25":{"tf":1.0}}}}}},"t":{"df":3,"docs":{"228":{"tf":1.0},"237":{"tf":1.0},"243":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"237":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"17":{"tf":1.0},"230":{"tf":1.0}}}}}}},"df":10,"docs":{"180":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":2.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"220":{"tf":1.7320508075688772},"221":{"tf":2.449489742783178},"222":{"tf":1.0},"77":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"192":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"220":{"tf":1.0},"30":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":5,"docs":{"11":{"tf":1.4142135623730951},"226":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"252":{"tf":1.0}}},"t":{"df":1,"docs":{"232":{"tf":1.0}}}},"w":{"df":2,"docs":{"232":{"tf":1.0},"235":{"tf":1.0}}}},"i":{"b":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"56":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":10,"docs":{"117":{"tf":2.23606797749979},"169":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"206":{"tf":1.0},"25":{"tf":1.0},"39":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"213":{"tf":2.0},"214":{"tf":1.4142135623730951},"220":{"tf":2.6457513110645907},"235":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"40":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"134":{"tf":1.0}}}}}}},"df":4,"docs":{"134":{"tf":1.4142135623730951},"29":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":2,"docs":{"173":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"'":{"df":0,"docs":{},"}":{",":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":23,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"117":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"232":{"tf":1.4142135623730951},"234":{"tf":1.0},"238":{"tf":1.4142135623730951},"241":{"tf":1.7320508075688772},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"58":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"232":{"tf":1.0}},"r":{"2":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"219":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}},"t":{"df":1,"docs":{"238":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"233":{"tf":1.0},"238":{"tf":1.4142135623730951},"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"224":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":18,"docs":{"12":{"tf":1.0},"120":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.0},"187":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"222":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"29":{"tf":1.0},"37":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.4142135623730951},"94":{"tf":1.0}}}}}},"o":{"2":{"df":2,"docs":{"74":{"tf":1.0},"78":{"tf":1.0}}},"df":4,"docs":{"74":{"tf":1.7320508075688772},"77":{"tf":1.0},"78":{"tf":2.23606797749979},"91":{"tf":2.0}}},"r":{"c":{"df":4,"docs":{"136":{"tf":1.0},"215":{"tf":1.0},"238":{"tf":1.0},"44":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"238":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"v":{"df":2,"docs":{"0":{"tf":1.0},"232":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"122":{"tf":1.0},"144":{"tf":1.4142135623730951},"170":{"tf":1.0},"202":{"tf":1.0},"213":{"tf":1.0},"220":{"tf":1.0},"228":{"tf":1.0}}}},"df":17,"docs":{"125":{"tf":1.0},"158":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"216":{"tf":2.0},"217":{"tf":1.0},"218":{"tf":1.0},"222":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"84":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"117":{"tf":1.0},"147":{"tf":1.0},"162":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"21":{"tf":1.0},"248":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"233":{"tf":2.23606797749979}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"c":{"a":{"df":2,"docs":{"230":{"tf":1.0},"232":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"234":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"228":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.0},"8":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":64,"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},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"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.4142135623730951},"144":{"tf":1.7320508075688772},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"175":{"tf":2.6457513110645907},"186":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"73":{"tf":1.0},"86":{"tf":1.4142135623730951},"88":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"169":{"tf":1.0},"206":{"tf":1.0},"29":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"237":{"tf":1.0},"248":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":4,"docs":{"13":{"tf":1.0},"228":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"194":{"tf":1.0},"253":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"233":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"245":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":4,"docs":{"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"236":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"221":{"tf":1.0}}}}},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"243":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"213":{"tf":1.0},"214":{"tf":1.0}}}},"t":{"@":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"10":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":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":{"252":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"230":{"tf":1.0},"37":{"tf":1.0}},"n":{"df":10,"docs":{"107":{"tf":1.0},"115":{"tf":1.0},"128":{"tf":1.4142135623730951},"130":{"tf":1.0},"133":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.4142135623730951},"171":{"tf":1.0},"37":{"tf":1.0},"48":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":1,"docs":{"90":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"234":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"253":{"tf":1.0}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"21":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.0}}}},"df":1,"docs":{"232":{"tf":1.0}},"e":{"df":2,"docs":{"230":{"tf":1.0},"56":{"tf":1.0}}},"o":{"d":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"250":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"241":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":4,"docs":{"230":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"83":{"tf":1.4142135623730951},"84":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"w":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"232":{"tf":1.0},"235":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"250":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"133":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"133":{"tf":1.0},"45":{"tf":2.23606797749979},"46":{"tf":1.4142135623730951}}}},"w":{"df":1,"docs":{"231":{"tf":1.0}},"n":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"230":{"tf":1.0}}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"194":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"ö":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"245":{"tf":1.0}}}}}}}}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"229":{"tf":1.0},"230":{"tf":1.0}}}},"n":{"d":{"df":3,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"34":{"tf":1.0}},"l":{"df":3,"docs":{"237":{"tf":1.0},"238":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"74":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"235":{"tf":1.0},"241":{"tf":1.4142135623730951}}}}}},"r":{"d":{"df":2,"docs":{"181":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":1,"docs":{"235":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"247":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"46":{"tf":2.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"241":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":22,"docs":{"122":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"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.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"5":{"tf":1.0},"8":{"tf":1.4142135623730951}},"e":{"a":{"d":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"0":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"199":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"208":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"237":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"c":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"235":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"245":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"175":{"tf":1.0},"21":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"230":{"tf":1.0}}}}}}}}},"o":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"213":{"tf":1.0}}}}}}},"df":0,"docs":{}},"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"102":{"tf":2.449489742783178},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"224":{"tf":1.0},"5":{"tf":1.0},"97":{"tf":2.0}}}},"p":{"df":3,"docs":{"148":{"tf":1.0},"170":{"tf":1.0},"198":{"tf":2.0}}}},"r":{"a":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":4,"docs":{"232":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0},"56":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"247":{"tf":1.0}}}}}}},"x":{"(":{"1":{"5":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"147":{"tf":1.4142135623730951}},"i":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"181":{"tf":1.0},"234":{"tf":1.0},"252":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"132":{"tf":1.0},"234":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"233":{"tf":1.0},"243":{"tf":1.0}},"i":{"df":11,"docs":{"0":{"tf":1.0},"157":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":2.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}}}},"o":{"c":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"228":{"tf":1.0},"239":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"241":{"tf":1.0}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"241":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"228":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"1":{".":{"1":{"df":1,"docs":{"215":{"tf":1.0}}},"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":{":":{"3":{"8":{"0":{"3":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"?":{"df":0,"docs":{},"p":{"=":{"%":{"5":{"b":{"%":{"2":{"2":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"%":{"2":{"2":{"%":{"2":{"c":{"%":{"2":{"2":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"%":{"2":{"2":{"%":{"5":{"d":{"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":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"q":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"%":{"2":{"0":{"1":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":22,"docs":{"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"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},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"5":{"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":{}},"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":1,"docs":{"198":{"tf":1.0}}}}}}},"df":16,"docs":{"10":{"tf":1.0},"192":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.449489742783178},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"215":{"tf":2.23606797749979},"31":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.0}},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"/":{"#":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"196":{"tf":1.0},"197":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"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":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"df":2,"docs":{"193":{"tf":1.4142135623730951},"195":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"238":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"220":{"tf":1.0},"233":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"233":{"tf":1.0},"246":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"å":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"251":{"tf":1.0}}},"df":1,"docs":{"253":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{".":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"m":{"df":1,"docs":{"233":{"tf":1.0}}}},"d":{"df":6,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0}},"e":{"a":{"df":4,"docs":{"148":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"233":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"224":{"tf":1.0},"67":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"131":{"tf":1.0},"147":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"235":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"f":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"139":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"245":{"tf":1.0}}}}}}}},"m":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"193":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":5,"docs":{"149":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"187":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"13":{"tf":1.7320508075688772},"155":{"tf":1.0},"22":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"235":{"tf":1.7320508075688772},"236":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.0}}}}},"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":{"21":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"241":{"tf":1.0},"250":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"232":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"224":{"tf":1.0},"32":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"15":{"tf":1.0},"78":{"tf":1.0}}}}}}},"df":1,"docs":{"232":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"149":{"tf":1.0},"206":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"231":{"tf":1.0},"238":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":11,"docs":{"106":{"tf":1.0},"173":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.4142135623730951},"241":{"tf":1.0},"243":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":2.0},"41":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":2,"docs":{"24":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"230":{"tf":1.0},"233":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"237":{"tf":1.0},"250":{"tf":1.0}}}}}},"l":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"184":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"181":{"tf":2.0},"21":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"248":{"tf":1.0},"251":{"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":{"228":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"117":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}}}},"df":25,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"168":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"199":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.7320508075688772},"222":{"tf":1.0},"23":{"tf":3.1622776601683795},"245":{"tf":1.0},"29":{"tf":2.8284271247461903},"39":{"tf":1.0},"58":{"tf":2.0},"64":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":2,"docs":{"228":{"tf":1.0},"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"158":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"167":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":1.0},"21":{"tf":2.0},"245":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.0},"4":{"tf":1.7320508075688772},"8":{"tf":1.0}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":7,"docs":{"220":{"tf":1.0},"222":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"105":{"tf":1.4142135623730951}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":8,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"119":{"tf":1.0},"136":{"tf":1.0},"224":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.7320508075688772},"86":{"tf":1.0}},"r":{"df":1,"docs":{"232":{"tf":1.0}}}},"n":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1":{"tf":1.0},"233":{"tf":1.0}}}}},"f":{"a":{"c":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":2,"docs":{"125":{"tf":1.0},"234":{"tf":1.0}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"50":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"54":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"v":{"df":3,"docs":{"148":{"tf":1.0},"224":{"tf":1.4142135623730951},"71":{"tf":2.6457513110645907}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":4,"docs":{"231":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"155":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"c":{"df":2,"docs":{"213":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.4142135623730951},"231":{"tf":1.0},"238":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":7,"docs":{"224":{"tf":2.0},"233":{"tf":1.0},"245":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"t":{"'":{"df":5,"docs":{"16":{"tf":1.0},"230":{"tf":1.4142135623730951},"234":{"tf":1.0},"235":{"tf":1.7320508075688772},"241":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"21":{"tf":1.0},"220":{"tf":1.0}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":4,"docs":{"15":{"tf":1.0},"16":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0}}},"m":{"df":1,"docs":{"221":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"18":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"a":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"18":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"245":{"tf":1.0}}}}}}},"o":{"b":{"df":3,"docs":{"237":{"tf":1.0},"239":{"tf":1.4142135623730951},"246":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"225":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"14":{"tf":2.0},"184":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":1.0},"247":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":2.6457513110645907},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.7320508075688772}}}},"y":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":21,"docs":{"17":{"tf":1.0},"175":{"tf":1.0},"203":{"tf":2.0},"204":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.7320508075688772},"216":{"tf":2.0},"217":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":3.3166247903554},"225":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"25":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"91":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"167":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"y":{"(":{"1":{"9":{"7":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"124":{"tf":1.4142135623730951},"148":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}}}}},"k":{"a":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"24":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":4,"docs":{"235":{"tf":1.0},"236":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"219":{"tf":1.0},"222":{"tf":1.0}}}}}},"df":0,"docs":{}},"y":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}}}}},"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":8,"docs":{"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"40":{"tf":1.0},"74":{"tf":1.4142135623730951},"79":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":9,"docs":{"221":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"230":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"11":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0}},"n":{"df":2,"docs":{"235":{"tf":1.0},"77":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"117":{"tf":1.0}}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"187":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"15":{"tf":1.0},"234":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"11":{"tf":1.0},"22":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"234":{"tf":2.8284271247461903},"9":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"146":{"tf":1.4142135623730951},"224":{"tf":1.0},"72":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"179":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"60":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"238":{"tf":1.0},"57":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}},"w":{"df":4,"docs":{"13":{"tf":1.0},"228":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":1.0}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"d":{"df":7,"docs":{"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"212":{"tf":1.0},"216":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"167":{"tf":1.0},"2":{"tf":1.0},"237":{"tf":1.0}}}},"s":{"df":2,"docs":{"57":{"tf":1.0},"60":{"tf":1.0}}},"v":{"df":2,"docs":{"16":{"tf":1.0},"235":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":8,"docs":{"102":{"tf":1.0},"117":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"39":{"tf":1.4142135623730951},"54":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"167":{"tf":1.0},"17":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"46":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"df":1,"docs":{"232":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"'":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":1,"docs":{"112":{"tf":1.0}}}}},"[":{"3":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"44":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":5,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.7320508075688772},"44":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}},"s":{"df":5,"docs":{"106":{"tf":1.0},"230":{"tf":1.0},"238":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.0}}}},"t":{"'":{"df":5,"docs":{"13":{"tf":1.0},"15":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"181":{"tf":1.0},"234":{"tf":1.0},"252":{"tf":1.0},"91":{"tf":1.4142135623730951}}}},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{".":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":1,"docs":{"238":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"227":{"tf":1.0},"253":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"235":{"tf":1.0}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"251":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":2.6457513110645907},"84":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"u":{"a":{"df":2,"docs":{"230":{"tf":1.0},"232":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"df":1,"docs":{"212":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"197":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":2,"docs":{"234":{"tf":1.0},"247":{"tf":1.0}}},"t":{"df":15,"docs":{"133":{"tf":1.0},"169":{"tf":1.0},"187":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":23,"docs":{"170":{"tf":2.0},"216":{"tf":1.4142135623730951},"221":{"tf":1.0},"224":{"tf":2.0},"225":{"tf":1.0},"23":{"tf":1.0},"49":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":2.0},"75":{"tf":1.0},"76":{"tf":2.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"238":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"230":{"tf":1.0},"250":{"tf":1.0}}}}},"n":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"154":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{},"g":{"1":{"0":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"120":{"tf":1.0}}},"df":4,"docs":{"120":{"tf":1.7320508075688772},"198":{"tf":1.0},"235":{"tf":1.7320508075688772},"243":{"tf":1.0}},"i":{"c":{"df":2,"docs":{"233":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"232":{"tf":1.0},"234":{"tf":1.4142135623730951},"241":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"30":{"tf":1.0},"61":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"169":{"tf":1.0},"233":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}}}}},"p":{"df":1,"docs":{"233":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"237":{"tf":1.0}}},"t":{"df":2,"docs":{"13":{"tf":1.0},"243":{"tf":1.0}}}},"t":{"df":2,"docs":{"231":{"tf":1.0},"232":{"tf":1.0}}},"w":{"df":1,"docs":{"233":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"103":{"tf":1.4142135623730951},"181":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.7320508075688772}}}}}},"y":{"df":1,"docs":{"16":{"tf":1.0}}}},"m":{")":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":3,"docs":{"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951}}}}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"237":{"tf":1.0}}}}},"o":{"df":1,"docs":{"197":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"243":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"196":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"229":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"9":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":11,"docs":{"13":{"tf":1.0},"148":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"220":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":12,"docs":{"17":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.0},"231":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.0},"34":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":6,"docs":{"117":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.4142135623730951},"238":{"tf":1.0},"40":{"tf":1.0},"87":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"237":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":1,"docs":{"225":{"tf":1.0}}},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"231":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"233":{"tf":1.7320508075688772},"235":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":13,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"20":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":2.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":3.4641016151377544},"95":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"187":{"tf":1.0},"241":{"tf":1.0}}}}},"h":{"df":2,"docs":{"120":{"tf":1.7320508075688772},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}}}}}},"x":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"127":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}}}}},"df":4,"docs":{"122":{"tf":1.4142135623730951},"147":{"tf":1.0},"200":{"tf":1.0},"219":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":10,"docs":{"149":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}}},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"247":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"247":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"221":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"25":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"220":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"238":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"241":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"54":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":1,"docs":{"127":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"127":{"tf":1.4142135623730951}}}}}},"u":{"df":1,"docs":{"86":{"tf":1.0}},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"224":{"tf":1.0},"63":{"tf":1.0}}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"195":{"tf":1.4142135623730951},"4":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"149":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"235":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"187":{"tf":1.0},"85":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"86":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.7320508075688772}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"d":{"b":{"df":4,"docs":{"234":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"71":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":20,"docs":{"15":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"221":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.7320508075688772},"238":{"tf":1.4142135623730951},"245":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"58":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"197":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"206":{"tf":1.7320508075688772},"216":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":12,"docs":{"151":{"tf":1.0},"180":{"tf":1.0},"222":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"231":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":1.4142135623730951},"40":{"tf":1.0},"86":{"tf":1.0},"97":{"tf":1.0}}}}}}},"n":{"d":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"233":{"tf":1.0},"235":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"56":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":60,"docs":{"110":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.0},"155":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":2.0},"18":{"tf":1.4142135623730951},"181":{"tf":1.0},"187":{"tf":2.23606797749979},"188":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":2.0},"205":{"tf":1.0},"206":{"tf":1.0},"217":{"tf":2.8284271247461903},"218":{"tf":1.4142135623730951},"219":{"tf":2.449489742783178},"220":{"tf":2.23606797749979},"221":{"tf":2.23606797749979},"222":{"tf":1.0},"23":{"tf":2.23606797749979},"24":{"tf":2.449489742783178},"26":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":3.3166247903554},"30":{"tf":1.0},"35":{"tf":1.7320508075688772},"37":{"tf":2.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":2.0},"46":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":2.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":2.0},"60":{"tf":1.7320508075688772},"64":{"tf":1.0},"74":{"tf":2.0},"76":{"tf":2.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.0},"83":{"tf":2.0},"85":{"tf":2.0},"88":{"tf":2.449489742783178},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"94":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"220":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"222":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":7,"docs":{"167":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"120":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":5,"docs":{"167":{"tf":1.4142135623730951},"169":{"tf":2.0},"170":{"tf":1.0},"175":{"tf":1.0},"20":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"211":{"tf":1.7320508075688772}}}}}}},"df":2,"docs":{"225":{"tf":1.0},"41":{"tf":2.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"252":{"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":{"234":{"tf":1.0},"235":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"205":{"tf":1.0}}}}}}},"df":1,"docs":{"235":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":9,"docs":{"12":{"tf":1.0},"190":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"226":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}},"g":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"84":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"250":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.4142135623730951},"21":{"tf":1.0},"219":{"tf":1.0},"238":{"tf":2.6457513110645907},"241":{"tf":1.0},"245":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"237":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"234":{"tf":1.0},"240":{"tf":1.0}}}}},"w":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":13,"docs":{"176":{"tf":1.7320508075688772},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"194":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.7320508075688772},"235":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"211":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"224":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":8,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.7320508075688772},"133":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.4142135623730951},"187":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":5,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"233":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"155":{"tf":1.0},"158":{"tf":1.0},"175":{"tf":1.0},"190":{"tf":1.0},"238":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"169":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":36,"docs":{"112":{"tf":1.0},"120":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.7320508075688772},"131":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"154":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"58":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0}}},"h":{"df":2,"docs":{"179":{"tf":1.0},"29":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"df":11,"docs":{"13":{"tf":1.0},"151":{"tf":1.4142135623730951},"156":{"tf":1.0},"16":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"241":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"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":14,"docs":{"117":{"tf":1.4142135623730951},"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"133":{"tf":1.0},"141":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"40":{"tf":1.0},"63":{"tf":2.23606797749979},"65":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"f":{"(":{"1":{"df":1,"docs":{"140":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"140":{"tf":1.4142135623730951}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"100":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"145":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.7320508075688772},"179":{"tf":1.0},"180":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"233":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.7320508075688772},"67":{"tf":1.0},"86":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"118":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"86":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.4142135623730951}}}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"115":{"tf":1.0},"40":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"[":{"[":{"'":{"a":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"113":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"113":{"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":{"114":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":27,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"146":{"tf":1.4142135623730951},"167":{"tf":1.0},"168":{"tf":1.7320508075688772},"17":{"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},"217":{"tf":1.0},"221":{"tf":2.449489742783178},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"23":{"tf":1.0},"233":{"tf":1.0},"250":{"tf":1.0},"40":{"tf":1.4142135623730951},"49":{"tf":2.6457513110645907},"72":{"tf":1.0},"74":{"tf":2.8284271247461903},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"207":{"tf":1.0},"235":{"tf":1.0}}}}}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"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":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"101":{"tf":1.7320508075688772}}}}}}}}},"df":1,"docs":{"101":{"tf":1.0}}}}}},"df":1,"docs":{"77":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"167":{"tf":1.0},"207":{"tf":1.0},"238":{"tf":1.0},"40":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}}}}},"k":{"df":2,"docs":{"76":{"tf":1.0},"93":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"228":{"tf":1.0},"233":{"tf":1.0},"249":{"tf":1.0}}}},"d":{"df":2,"docs":{"13":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":4,"docs":{"228":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"157":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":5,"docs":{"23":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":1.0}}},"df":27,"docs":{"125":{"tf":1.0},"132":{"tf":1.0},"17":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"230":{"tf":1.7320508075688772},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":2.23606797749979},"235":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"243":{"tf":1.0},"38":{"tf":1.4142135623730951},"51":{"tf":1.0},"73":{"tf":1.4142135623730951},"77":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"233":{"tf":1.0},"238":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"238":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"235":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"149":{"tf":1.4142135623730951},"228":{"tf":1.0},"240":{"tf":1.0},"245":{"tf":1.4142135623730951}}},"r":{"df":40,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"132":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"187":{"tf":1.0},"192":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"219":{"tf":1.4142135623730951},"231":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"50":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"59":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772},"97":{"tf":1.7320508075688772}}}},"t":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"*":{"/":{"*":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"106":{"tf":1.0},"110":{"tf":1.0},"133":{"tf":1.0},"147":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.4142135623730951},"200":{"tf":1.0},"37":{"tf":1.0},"64":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"110":{"tf":1.0},"132":{"tf":1.4142135623730951},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"218":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.0},"247":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.0},"44":{"tf":3.605551275463989},"45":{"tf":1.0},"47":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":2,"docs":{"41":{"tf":2.23606797749979},"77":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"13":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"180":{"tf":1.0},"253":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"229":{"tf":1.0},"240":{"tf":1.0}}}}}}},"t":{"df":4,"docs":{"0":{"tf":1.0},"146":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"199":{"tf":1.0},"241":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"213":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"228":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"0":{"tf":1.0},"199":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"35":{"tf":1.0},"7":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"149":{"tf":1.0},"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"133":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"176":{"tf":1.0}}}}}}}}}},"p":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}}},")":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":6,"docs":{"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"74":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"34":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"1":{"df":0,"docs":{},"y":{"2":{"df":0,"docs":{},"m":{"1":{"0":{"d":{"df":0,"docs":{},"t":{"2":{"df":0,"docs":{},"h":{"3":{"0":{"df":0,"docs":{},"m":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"\"":{"[":{"[":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"221":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"'":{"[":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"df":2,"docs":{"206":{"tf":1.0},"218":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"[":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"@":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{";":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"=":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"d":{".":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"220":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"d":{"df":2,"docs":{"64":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"21":{"tf":1.0},"233":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":8,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"147":{"tf":1.0},"224":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0}}}},"l":{"a":{"c":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"a":{"df":3,"docs":{"203":{"tf":1.0},"217":{"tf":1.0},"37":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"217":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":22,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"144":{"tf":1.0},"147":{"tf":2.0},"199":{"tf":1.0},"200":{"tf":2.0},"205":{"tf":1.7320508075688772},"216":{"tf":2.23606797749979},"217":{"tf":2.23606797749979},"218":{"tf":2.23606797749979},"219":{"tf":1.7320508075688772},"220":{"tf":2.0},"221":{"tf":2.0},"222":{"tf":1.0},"31":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"187":{"tf":1.0},"224":{"tf":1.0},"48":{"tf":1.0}}}}}}}},"t":{"df":3,"docs":{"162":{"tf":1.0},"216":{"tf":1.0},"232":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"236":{"tf":1.0},"239":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"136":{"tf":1.0},"21":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":1,"docs":{"234":{"tf":1.0}},"q":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"234":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"215":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"198":{"tf":1.4142135623730951},"215":{"tf":2.0}}},"df":0,"docs":{}}}}},"t":{"df":3,"docs":{"13":{"tf":1.0},"236":{"tf":1.0},"241":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"117":{"tf":2.449489742783178},"25":{"tf":2.6457513110645907}}}},"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"180":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":1,"docs":{"180":{"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":{},"{":{"a":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"178":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"179":{"tf":1.0},"27":{"tf":1.0}},"e":{"(":{"[":{"0":{",":{"1":{",":{"2":{",":{"3":{",":{"4":{"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":{}},"df":0,"docs":{},"{":{"df":0,"docs":{},"x":{"df":1,"docs":{"179":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"177":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"177":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"176":{"tf":1.0},"26":{"tf":1.0}}}}}},"df":18,"docs":{"167":{"tf":2.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"17":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":2.0},"172":{"tf":3.1622776601683795},"173":{"tf":2.8284271247461903},"174":{"tf":2.0},"175":{"tf":3.0},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":2.0},"20":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"27":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"@":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"110":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":18,"docs":{"14":{"tf":1.0},"184":{"tf":1.0},"195":{"tf":2.23606797749979},"198":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"79":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"29":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951}}}}}},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":4,"docs":{"232":{"tf":1.0},"238":{"tf":1.0},"30":{"tf":1.0},"40":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"29":{"tf":1.0},"81":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"d":{"df":9,"docs":{"149":{"tf":1.7320508075688772},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"238":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"9":{"tf":1.0}}}},"t":{"df":8,"docs":{"13":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"201":{"tf":1.0},"235":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"49":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"i":{"df":1,"docs":{"120":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"236":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"232":{"tf":1.7320508075688772},"234":{"tf":1.7320508075688772},"241":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"d":{"a":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"233":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}}}}}},"l":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"231":{"tf":1.0},"55":{"tf":1.0},"79":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"217":{"tf":1.0},"218":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":4,"docs":{"194":{"tf":1.0},"21":{"tf":1.0},"253":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"u":{"df":1,"docs":{"86":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"224":{"tf":1.0},"67":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"198":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"125":{"tf":2.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"200":{"tf":1.0},"218":{"tf":1.7320508075688772},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"78":{"tf":1.0}}},"x":{"df":1,"docs":{"234":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":19,"docs":{"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":27,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"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},"216":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"32":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"df":6,"docs":{"229":{"tf":1.0},"233":{"tf":1.0},"241":{"tf":1.0},"250":{"tf":1.0},"76":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}}}}}}}}}},"w":{"df":1,"docs":{"120":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"120":{"tf":1.0},"167":{"tf":1.0},"21":{"tf":1.4142135623730951},"231":{"tf":1.0},"40":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"149":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"76":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"224":{"tf":1.0},"226":{"tf":1.0},"234":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":3,"docs":{"149":{"tf":1.0},"160":{"tf":1.4142135623730951},"238":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{".":{"c":{"a":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"76":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"10":{"tf":1.0},"207":{"tf":1.0},"220":{"tf":1.4142135623730951},"35":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":3,"docs":{"85":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":6,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"194":{"tf":1.0},"233":{"tf":1.0},"6":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":32,"docs":{"112":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"23":{"tf":2.449489742783178},"238":{"tf":1.0},"24":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":3.1622776601683795},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"44":{"tf":2.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"55":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772}},"s":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"155":{"tf":1.0},"28":{"tf":1.0},"58":{"tf":1.0}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"235":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"234":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"229":{"tf":1.0},"235":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"64":{"tf":1.0}}}}},"u":{"c":{"df":1,"docs":{"239":{"tf":1.0}},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":10,"docs":{"112":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"25":{"tf":1.0},"29":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":2.0},"55":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772}}}}},"df":60,"docs":{"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.4142135623730951},"194":{"tf":1.0},"203":{"tf":1.7320508075688772},"206":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"221":{"tf":2.0},"229":{"tf":1.0},"23":{"tf":2.23606797749979},"236":{"tf":1.4142135623730951},"24":{"tf":2.23606797749979},"240":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":2.449489742783178},"30":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":2.6457513110645907},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":2.23606797749979},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"6":{"tf":1.0},"74":{"tf":2.0},"76":{"tf":1.4142135623730951},"79":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"85":{"tf":2.449489742783178},"88":{"tf":2.449489742783178},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"40":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}}}}},".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"25":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":1,"docs":{"29":{"tf":1.0}}}},"[":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"234":{"tf":1.0},"241":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"220":{"tf":1.0},"238":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"233":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.0},"77":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":32,"docs":{"10":{"tf":1.0},"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"17":{"tf":1.0},"180":{"tf":1.4142135623730951},"186":{"tf":1.0},"19":{"tf":1.0},"198":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"215":{"tf":1.0},"220":{"tf":1.0},"228":{"tf":2.0},"231":{"tf":1.0},"234":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.7320508075688772},"32":{"tf":1.0},"37":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"t":{"1":{"2":{"df":0,"docs":{},"h":{"3":{"0":{"df":0,"docs":{},"m":{"5":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}}},"4":{"df":0,"docs":{},"m":{"5":{"6":{".":{"7":{"8":{"9":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"230":{"tf":1.0},"233":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"195":{"tf":1.4142135623730951},"231":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":5,"docs":{"110":{"tf":1.0},"224":{"tf":1.0},"246":{"tf":1.0},"63":{"tf":1.0},"81":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"193":{"tf":1.0}}}},"z":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"c":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"213":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"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":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}},"q":{")":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"200":{"tf":1.0}}}}}}},"3":{"df":1,"docs":{"252":{"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":8,"docs":{"205":{"tf":1.0},"206":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"%":{"2":{"0":{"*":{"%":{"2":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"%":{"2":{"0":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"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":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"200":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"92":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":49,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"148":{"tf":1.4142135623730951},"15":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"16":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"220":{"tf":1.0},"228":{"tf":1.7320508075688772},"229":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":2.23606797749979},"234":{"tf":2.449489742783178},"236":{"tf":1.7320508075688772},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":2.0},"28":{"tf":1.0},"30":{"tf":1.4142135623730951},"33":{"tf":2.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.7320508075688772},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":2.23606797749979},"55":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"60":{"tf":1.0}}},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"235":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"233":{"tf":1.7320508075688772},"238":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"2":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"234":{"tf":1.0},"241":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"64":{"tf":1.0},"74":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"r":{"a":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"3":{"2":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"146":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":2,"docs":{"119":{"tf":2.0},"146":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"w":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"106":{"tf":1.0},"241":{"tf":1.0}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"192":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"239":{"tf":1.4142135623730951},"245":{"tf":1.0},"252":{"tf":1.0},"35":{"tf":1.0},"57":{"tf":1.4142135623730951},"8":{"tf":1.0}},"i":{"df":2,"docs":{"0":{"tf":1.0},"238":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"224":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"67":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"238":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"207":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"81":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"215":{"tf":1.0},"220":{"tf":1.0},"63":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"193":{"tf":1.0},"205":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"240":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"d":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"13":{"tf":1.4142135623730951},"155":{"tf":1.0},"16":{"tf":1.0},"212":{"tf":1.0},"228":{"tf":1.0},"235":{"tf":1.4142135623730951},"239":{"tf":1.0},"243":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"237":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":7,"docs":{"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"245":{"tf":1.0},"56":{"tf":3.3166247903554}}}}}},"d":{"df":2,"docs":{"219":{"tf":1.0},"222":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"u":{"c":{"df":2,"docs":{"231":{"tf":1.0},"237":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"187":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"17":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"233":{"tf":1.0},"253":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"79":{"tf":1.0},"91":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":2.23606797749979}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"203":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"df":1,"docs":{"104":{"tf":1.0}},"t":{"df":9,"docs":{"103":{"tf":1.0},"148":{"tf":1.4142135623730951},"167":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"230":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"238":{"tf":1.0},"29":{"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":2,"docs":{"14":{"tf":1.0},"238":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"194":{"tf":1.0},"20":{"tf":1.0},"241":{"tf":2.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":2.23606797749979}}}},"df":0,"docs":{},"v":{"df":2,"docs":{"157":{"tf":1.0},"234":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":11,"docs":{"117":{"tf":1.0},"13":{"tf":1.0},"179":{"tf":1.4142135623730951},"191":{"tf":1.0},"235":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"57":{"tf":1.0},"60":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":1,"docs":{"104":{"tf":1.7320508075688772}},"e":{"(":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"a":{"df":2,"docs":{"237":{"tf":1.0},"239":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"195":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":10,"docs":{"115":{"tf":1.0},"149":{"tf":1.0},"170":{"tf":1.0},"179":{"tf":1.0},"217":{"tf":1.0},"49":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"54":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":13,"docs":{"186":{"tf":1.0},"197":{"tf":1.0},"215":{"tf":1.4142135623730951},"22":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":2.23606797749979},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"203":{"tf":1.0},"204":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"127":{"tf":1.0},"241":{"tf":1.0},"35":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"181":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"t":{"df":3,"docs":{"10":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":25,"docs":{"132":{"tf":1.4142135623730951},"16":{"tf":1.0},"215":{"tf":1.0},"222":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"249":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"64":{"tf":1.0},"81":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"246":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":73,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":2.0},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"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},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.7320508075688772},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"220":{"tf":1.0},"222":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"238":{"tf":1.0},"249":{"tf":1.0},"34":{"tf":1.7320508075688772},"38":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":2.23606797749979},"57":{"tf":2.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":2.0},"63":{"tf":1.0},"76":{"tf":2.0},"84":{"tf":1.0},"85":{"tf":2.8284271247461903},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.7320508075688772},"92":{"tf":2.0},"93":{"tf":2.0},"94":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"233":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"110":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}}}}}}},"f":{"c":{"df":2,"docs":{"215":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"234":{"tf":1.0}}}},"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":7,"docs":{"102":{"tf":1.0},"230":{"tf":1.4142135623730951},"232":{"tf":1.0},"239":{"tf":1.0},"54":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"m":{"df":2,"docs":{"195":{"tf":1.7320508075688772},"4":{"tf":1.0}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":4,"docs":{"227":{"tf":1.0},"248":{"tf":1.0},"252":{"tf":1.4142135623730951},"30":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"57":{"tf":1.0},"58":{"tf":1.7320508075688772},"60":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"230":{"tf":1.0}}},"t":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"187":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":1,"docs":{"120":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"w":{"df":30,"docs":{"159":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":2.23606797749979},"18":{"tf":1.0},"181":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"228":{"tf":1.4142135623730951},"232":{"tf":1.0},"238":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"245":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"63":{"tf":1.0},"74":{"tf":1.4142135623730951},"76":{"tf":2.449489742783178},"77":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"229":{"tf":1.0}}}},"n":{"df":9,"docs":{"0":{"tf":1.0},"13":{"tf":1.0},"154":{"tf":1.0},"195":{"tf":2.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"32":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0}}}},"å":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"253":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"3":{"df":2,"docs":{"241":{"tf":1.0},"250":{"tf":1.0}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.0},"244":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"13":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"40":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":4,"docs":{"131":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"35":{"tf":1.0}},"s":{"_":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":10,"docs":{"117":{"tf":1.7320508075688772},"203":{"tf":1.0},"218":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"39":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"79":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":14,"docs":{"110":{"tf":1.0},"158":{"tf":1.0},"197":{"tf":1.0},"220":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"220":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"u":{"c":{"df":4,"docs":{"205":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"235":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"57":{"tf":3.1622776601683795},"58":{"tf":1.7320508075688772},"59":{"tf":2.8284271247461903},"60":{"tf":2.8284271247461903},"61":{"tf":1.4142135623730951}}}}}}}}},"w":{"df":2,"docs":{"233":{"tf":1.0},"241":{"tf":1.0}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"180":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"216":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"81":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"237":{"tf":1.0}}}},"n":{"df":1,"docs":{"171":{"tf":1.0}}},"r":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":10,"docs":{"181":{"tf":2.449489742783178},"186":{"tf":1.0},"20":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":2.8284271247461903},"24":{"tf":1.0},"34":{"tf":1.0},"76":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"12":{"tf":1.0},"167":{"tf":1.0},"181":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.4142135623730951},"24":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"230":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"60":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"21":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":3,"docs":{"122":{"tf":1.0},"184":{"tf":1.0},"35":{"tf":1.0}},"e":{"a":{"df":2,"docs":{"117":{"tf":1.0},"230":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"tf":1.0}}}}},"df":20,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"117":{"tf":1.7320508075688772},"123":{"tf":1.0},"133":{"tf":1.4142135623730951},"139":{"tf":1.0},"147":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"238":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"71":{"tf":1.0},"84":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"148":{"tf":1.0},"37":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":14,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"170":{"tf":1.0},"204":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0}},"m":{"df":1,"docs":{"16":{"tf":1.0}}},"n":{"df":5,"docs":{"155":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"46":{"tf":1.0},"56":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":143,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"102":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":2.449489742783178},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"13":{"tf":2.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":2.23606797749979},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":2.0},"15":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"16":{"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},"169":{"tf":1.7320508075688772},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":2.23606797749979},"173":{"tf":2.0},"174":{"tf":1.7320508075688772},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"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.4142135623730951},"185":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"19":{"tf":1.0},"190":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"205":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"218":{"tf":1.0},"220":{"tf":1.0},"222":{"tf":1.4142135623730951},"23":{"tf":1.0},"236":{"tf":1.4142135623730951},"245":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":3.0},"37":{"tf":2.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":2.23606797749979},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":2.23606797749979},"56":{"tf":2.449489742783178},"58":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"64":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":2.0},"76":{"tf":2.0},"77":{"tf":2.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"85":{"tf":2.449489742783178},"86":{"tf":3.0},"87":{"tf":1.7320508075688772},"88":{"tf":2.449489742783178},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":2.6457513110645907},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"97":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"f":{"df":2,"docs":{"198":{"tf":1.0},"237":{"tf":1.0}}},"l":{"df":1,"docs":{"240":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"58":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"222":{"tf":1.4142135623730951},"32":{"tf":1.0}}}}}}},"df":5,"docs":{"15":{"tf":1.0},"167":{"tf":1.0},"233":{"tf":1.4142135623730951},"238":{"tf":1.0},"245":{"tf":1.0}}}},"n":{"d":{"df":4,"docs":{"199":{"tf":1.4142135623730951},"202":{"tf":1.0},"222":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"13":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"88":{"tf":1.0},"90":{"tf":1.0}}}}},"t":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"209":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.7320508075688772},"24":{"tf":1.0},"250":{"tf":1.4142135623730951},"40":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"233":{"tf":1.0}}},"n":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"235":{"tf":1.0}},"s":{"df":1,"docs":{"235":{"tf":1.0}}}}}},"v":{"df":4,"docs":{"110":{"tf":1.0},"231":{"tf":1.0},"246":{"tf":1.0},"63":{"tf":1.0}}}},"t":{"df":15,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"175":{"tf":1.0},"219":{"tf":1.0},"24":{"tf":2.23606797749979},"249":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":2.0},"29":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"54":{"tf":2.0},"56":{"tf":1.0},"91":{"tf":1.0}}}},"h":{"a":{"1":{"(":{"'":{"2":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"145":{"tf":1.4142135623730951}}},"df":1,"docs":{"145":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}},"p":{"df":1,"docs":{"9":{"tf":1.0}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"40":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"139":{"tf":1.0},"22":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"w":{"df":1,"docs":{"13":{"tf":1.0}},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"233":{"tf":1.0},"236":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"85":{"tf":2.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":1,"docs":{"120":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"159":{"tf":1.0},"25":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"169":{"tf":1.0},"221":{"tf":1.0},"233":{"tf":1.0},"29":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"201":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"238":{"tf":1.0},"33":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"187":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"230":{"tf":1.0},"233":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.0},"55":{"tf":1.0}}}}}}}},"n":{"df":1,"docs":{"120":{"tf":1.0}},"g":{"df":0,"docs":{},"l":{"df":16,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"180":{"tf":1.0},"201":{"tf":1.0},"213":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":1.4142135623730951},"45":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"76":{"tf":1.4142135623730951},"87":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}},"h":{"df":1,"docs":{"120":{"tf":1.0}}}},"t":{"df":1,"docs":{"234":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"247":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"d":{"a":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"184":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"252":{"tf":1.0}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"19":{"tf":1.0},"230":{"tf":1.0}}}},"v":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"241":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"229":{"tf":1.0},"77":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"235":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":4,"docs":{"106":{"tf":1.0},"21":{"tf":1.0},"228":{"tf":1.0},"240":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"228":{"tf":1.0},"235":{"tf":1.0},"35":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"238":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"155":{"tf":1.0},"34":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":12,"docs":{"21":{"tf":1.7320508075688772},"233":{"tf":1.0},"234":{"tf":1.0},"241":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"58":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}},"i":{"df":15,"docs":{"117":{"tf":1.4142135623730951},"120":{"tf":1.0},"131":{"tf":1.0},"179":{"tf":1.0},"195":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"229":{"tf":1.0},"253":{"tf":1.0},"29":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"76":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"l":{"'":{"df":1,"docs":{"21":{"tf":1.0}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"167":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0}}}}}}},":":{"2":{"0":{"1":{"1":{"df":8,"docs":{"149":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"233":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"241":{"tf":1.0},"245":{"tf":1.0}}},"6":{"df":3,"docs":{"238":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}},"2":{"3":{"df":4,"docs":{"233":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{"df":2,"docs":{"238":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":54,"docs":{"0":{"tf":1.0},"10":{"tf":1.4142135623730951},"11":{"tf":2.449489742783178},"12":{"tf":1.0},"120":{"tf":1.7320508075688772},"131":{"tf":1.0},"148":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":2.449489742783178},"200":{"tf":1.0},"21":{"tf":3.0},"216":{"tf":1.4142135623730951},"22":{"tf":1.0},"220":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":3.4641016151377544},"234":{"tf":4.69041575982343},"238":{"tf":2.449489742783178},"24":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":2.0},"246":{"tf":1.0},"252":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"44":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"'":{"df":4,"docs":{"120":{"tf":1.0},"175":{"tf":1.0},"234":{"tf":1.0},"56":{"tf":1.0}}},"df":5,"docs":{"110":{"tf":1.0},"21":{"tf":1.4142135623730951},"234":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"35":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"229":{"tf":1.0}}},"i":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"193":{"tf":1.0},"199":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"'":{"df":1,"docs":{"149":{"tf":1.0}}},"df":18,"docs":{"120":{"tf":1.4142135623730951},"160":{"tf":1.0},"169":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"44":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":10,"docs":{"106":{"tf":1.0},"12":{"tf":1.0},"149":{"tf":1.4142135623730951},"159":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"204":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"234":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":7,"docs":{"13":{"tf":1.0},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"233":{"tf":1.7320508075688772},"245":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"18":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"220":{"tf":1.4142135623730951},"222":{"tf":2.23606797749979},"228":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"58":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.0}}}}}}},"i":{"c":{"df":5,"docs":{"186":{"tf":1.0},"220":{"tf":1.0},"238":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"215":{"tf":1.4142135623730951},"76":{"tf":2.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"93":{"tf":1.0}}}}},"y":{"df":1,"docs":{"238":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"190":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"16":{"tf":1.0},"194":{"tf":1.0},"230":{"tf":1.4142135623730951},"238":{"tf":1.0},"29":{"tf":1.0},"6":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":1,"docs":{"229":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":11,"docs":{"194":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":2.6457513110645907},"234":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":2.0},"241":{"tf":1.0},"246":{"tf":1.0},"250":{"tf":2.23606797749979},"6":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":11,"docs":{"0":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"235":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0}}},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"214":{"tf":1.4142135623730951},"220":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0}},"e":{"d":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"214":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"'":{"%":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":1.0}}},"y":{"/":{"%":{"df":0,"docs":{},"m":{"/":{"%":{"d":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"122":{"tf":1.4142135623730951},"148":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"241":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"185":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":30,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"145":{"tf":1.0},"147":{"tf":2.23606797749979},"222":{"tf":1.4142135623730951},"224":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.7320508075688772},"99":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"33":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"21":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"15":{"tf":1.0},"167":{"tf":1.0},"181":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"238":{"tf":1.0},"245":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"u":{"b":{"df":2,"docs":{"169":{"tf":1.0},"55":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"205":{"tf":1.0},"220":{"tf":1.7320508075688772}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"92":{"tf":2.23606797749979},"93":{"tf":2.23606797749979},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"175":{"tf":1.0},"203":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"217":{"tf":1.0},"218":{"tf":1.0}}}}}},"r":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"105":{"tf":1.0},"106":{"tf":2.449489742783178}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"71":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"149":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"233":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"222":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":7,"docs":{"148":{"tf":1.0},"181":{"tf":1.4142135623730951},"22":{"tf":1.0},"220":{"tf":1.0},"28":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"13":{"tf":1.0}},"i":{"df":2,"docs":{"229":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":3,"docs":{"157":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"m":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"128":{"tf":1.0},"134":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"128":{"tf":2.0},"129":{"tf":1.0},"45":{"tf":1.0}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":10,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"140":{"tf":1.0},"156":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":15,"docs":{"150":{"tf":1.0},"175":{"tf":1.0},"186":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.0},"39":{"tf":1.0},"80":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"197":{"tf":1.0},"230":{"tf":1.0},"250":{"tf":1.0}}},"f":{"a":{"c":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":7,"docs":{"106":{"tf":1.0},"112":{"tf":1.4142135623730951},"172":{"tf":1.0},"27":{"tf":1.0},"64":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"x":{"df":7,"docs":{"125":{"tf":1.0},"158":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"245":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":7,"docs":{"13":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"236":{"tf":1.0}}}}}},"df":7,"docs":{"155":{"tf":1.7320508075688772},"158":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.0},"235":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"t":{"1":{"df":6,"docs":{"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0}}},"a":{"b":{"df":0,"docs":{},"l":{"df":29,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"157":{"tf":1.0},"168":{"tf":1.4142135623730951},"170":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"185":{"tf":1.0},"190":{"tf":1.4142135623730951},"216":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.4142135623730951},"238":{"tf":2.0},"247":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.7320508075688772},"37":{"tf":2.23606797749979},"42":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772}},"e":{"'":{"df":1,"docs":{"76":{"tf":1.0}}},"_":{"c":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":3,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"182":{"tf":1.7320508075688772},"183":{"tf":1.0},"184":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":3,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":19,"docs":{"117":{"tf":1.0},"130":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.7320508075688772},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"40":{"tf":1.0},"55":{"tf":1.0},"76":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"231":{"tf":1.0},"251":{"tf":1.0}}}},"n":{"df":1,"docs":{"120":{"tf":1.0}},"h":{"df":1,"docs":{"120":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"df":2,"docs":{"197":{"tf":1.0},"215":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"21":{"tf":1.0}}},"t":{"df":1,"docs":{"252":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"234":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"23":{"tf":1.0}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"230":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"241":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"231":{"tf":1.0},"234":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"37":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}},"df":4,"docs":{"149":{"tf":1.0},"230":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0}}}}}},"n":{"d":{"df":1,"docs":{"34":{"tf":1.0}}},"df":1,"docs":{"230":{"tf":1.0}},"t":{"a":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"231":{"tf":1.0},"252":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"56":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":2,"docs":{"201":{"tf":1.0},"209":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":6,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.0},"224":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"13":{"tf":1.0},"232":{"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":2,"docs":{"132":{"tf":1.0},"56":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"0":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":3,"docs":{"229":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"228":{"tf":1.0},"229":{"tf":1.0}}},"k":{"df":3,"docs":{"243":{"tf":1.0},"250":{"tf":1.0},"53":{"tf":1.0}}}},"r":{"d":{"df":6,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"139":{"tf":1.0},"234":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"117":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"81":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"15":{"tf":1.0},"172":{"tf":1.0},"205":{"tf":1.0},"241":{"tf":1.0}},"t":{"df":2,"docs":{"40":{"tf":1.0},"74":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"21":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":2,"docs":{"232":{"tf":1.0},"73":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"2":{"tf":1.0},"234":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"df":2,"docs":{"199":{"tf":1.0},"8":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":31,"docs":{"11":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.7320508075688772},"13":{"tf":2.0},"148":{"tf":2.23606797749979},"149":{"tf":1.7320508075688772},"150":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"20":{"tf":1.0},"224":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"230":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":3.0},"236":{"tf":1.4142135623730951},"238":{"tf":2.0},"241":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":2.6457513110645907},"71":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"232":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":7,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"148":{"tf":1.0},"156":{"tf":1.0},"224":{"tf":1.4142135623730951},"68":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"150":{"tf":1.0},"80":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"64":{"tf":1.0}}}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"241":{"tf":1.4142135623730951},"250":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"_":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":2,"docs":{"23":{"tf":1.0},"88":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"230":{"tf":1.0},"234":{"tf":1.0},"58":{"tf":1.0},"97":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"237":{"tf":1.0}}}}},"m":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"235":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":4,"docs":{"10":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0}}}},"p":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"21":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"235":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"r":{"a":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"229":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"243":{"tf":1.0},"246":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"/":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"13":{"tf":1.0},"156":{"tf":1.4142135623730951},"228":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.4142135623730951},"238":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"156":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"169":{"tf":1.0}}}},"i":{"df":9,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"168":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"7":{"tf":1.0},"9":{"tf":1.0}},"m":{"df":1,"docs":{"102":{"tf":2.0}}},"p":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"232":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"237":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"df":24,"docs":{"139":{"tf":1.0},"140":{"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},"206":{"tf":1.0},"219":{"tf":1.4142135623730951},"229":{"tf":1.0},"230":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.449489742783178},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"244":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"235":{"tf":1.0},"238":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"2":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"210":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"147":{"tf":1.7320508075688772},"235":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"10":{"tf":1.0},"2":{"tf":1.4142135623730951}}}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"'":{"df":1,"docs":{"224":{"tf":1.0}}},"df":18,"docs":{"117":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.4142135623730951},"140":{"tf":1.0},"159":{"tf":1.0},"233":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"58":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.7320508075688772},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"97":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"228":{"tf":1.0},"238":{"tf":1.0}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":46,"docs":{"11":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.4142135623730951},"167":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.7320508075688772},"20":{"tf":1.0},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":2.23606797749979},"204":{"tf":2.0},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":2.23606797749979},"226":{"tf":1.4142135623730951},"228":{"tf":1.0},"234":{"tf":2.0},"245":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"2":{"df":0,"docs":{},"u":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}}},"1":{".":{"1":{"2":{"3":{"4":{"5":{"6":{"7":{"8":{"9":{"0":{"1":{"2":{"3":{"4":{"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":{}},"df":0,"docs":{}},"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":{"0":{"1":{"8":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"185":{"tf":1.0},"190":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"137":{"tf":1.4142135623730951}}}}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"=":{"d":{"a":{"df":0,"docs":{},"t":{"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":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"df":1,"docs":{"14":{"tf":1.0}},"i":{"df":1,"docs":{"245":{"tf":1.0}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"246":{"tf":1.0},"9":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"235":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"224":{"tf":1.0}}}}},"r":{"df":11,"docs":{"120":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"20":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.0},"31":{"tf":1.0},"86":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"234":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"0":{"tf":1.0},"228":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"233":{"tf":1.0},"237":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"(":{"'":{"3":{"1":{"3":{"5":{"df":1,"docs":{"147":{"tf":1.0}},"z":{"df":0,"docs":{},"z":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"147":{"tf":2.0}}}}},"i":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"100":{"tf":1.0},"107":{"tf":1.7320508075688772}},"e":{"(":{"'":{"a":{"d":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":2.0},"54":{"tf":2.449489742783178},"56":{"tf":1.7320508075688772}}}},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}},"t":{"df":1,"docs":{"245":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"144":{"tf":1.0},"229":{"tf":1.0}}}}}},"x":{"df":2,"docs":{"123":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{"'":{"2":{"0":{"2":{"3":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"9":{"7":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"123":{"tf":1.4142135623730951},"148":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"237":{"tf":1.0},"63":{"tf":1.0},"85":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"235":{"tf":1.0},"253":{"tf":1.0},"47":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":3,"docs":{"220":{"tf":1.0},"238":{"tf":1.0},"76":{"tf":1.0}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"[":{"1":{".":{"9":{"9":{"df":2,"docs":{"40":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"40":{"tf":2.0},"41":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}},"df":2,"docs":{"24":{"tf":2.449489742783178},"27":{"tf":2.0}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.7320508075688772}}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"194":{"tf":1.0},"6":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"230":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":13,"docs":{"117":{"tf":1.0},"13":{"tf":2.23606797749979},"16":{"tf":1.0},"175":{"tf":1.4142135623730951},"190":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":3.0},"243":{"tf":1.0},"25":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"27":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":5,"docs":{"149":{"tf":1.0},"16":{"tf":1.0},"195":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"103":{"tf":1.4142135623730951},"147":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.7320508075688772}}}}}}},"r":{"d":{"df":0,"docs":{},"u":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"226":{"tf":1.0}}},"l":{"df":2,"docs":{"201":{"tf":1.0},"216":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"207":{"tf":1.7320508075688772},"216":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"198":{"tf":1.4142135623730951},"76":{"tf":1.0}}}},"df":69,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"148":{"tf":1.0},"18":{"tf":1.0},"181":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":2.23606797749979},"221":{"tf":1.0},"226":{"tf":1.7320508075688772},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"231":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"25":{"tf":1.0},"252":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"40":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}},"df":30,"docs":{"10":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"15":{"tf":2.0},"16":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"220":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"244":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.0},"252":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0},"76":{"tf":2.0},"8":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"198":{"tf":1.4142135623730951},"215":{"tf":2.0}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"[":{"1":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"_":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"76":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":6,"docs":{"124":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":2,"docs":{"147":{"tf":1.0},"224":{"tf":1.0}}}},"u":{"df":0,"docs":{},"i":{"d":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"'":{"d":{"2":{"c":{"df":0,"docs":{},"e":{"2":{"1":{"c":{"9":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"'":{"d":{"2":{"c":{"df":0,"docs":{},"e":{"2":{"1":{"c":{"9":{"d":{"2":{"6":{"8":{"4":{"0":{"9":{"a":{"b":{"1":{"df":0,"docs":{},"e":{"0":{"4":{"9":{"df":0,"docs":{},"e":{"1":{"2":{"0":{"0":{"b":{"df":0,"docs":{},"f":{"a":{"4":{"7":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{"'":{"d":{"2":{"c":{"df":0,"docs":{},"e":{"2":{"1":{"c":{"9":{"d":{"2":{"6":{"8":{"4":{"0":{"9":{"a":{"b":{"1":{"df":0,"docs":{},"e":{"0":{"4":{"9":{"df":0,"docs":{},"e":{"1":{"2":{"0":{"0":{"b":{"df":0,"docs":{},"f":{"a":{"4":{"7":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"'":{"d":{"2":{"c":{"df":0,"docs":{},"e":{"2":{"1":{"c":{"9":{"d":{"2":{"6":{"8":{"4":{"0":{"9":{"a":{"b":{"1":{"df":0,"docs":{},"e":{"0":{"4":{"9":{"df":0,"docs":{},"e":{"1":{"2":{"0":{"0":{"b":{"df":0,"docs":{},"f":{"a":{"4":{"7":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"144":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"144":{"tf":2.449489742783178},"226":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"3":{".":{"0":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"81":{"tf":2.0}},"i":{"d":{"df":2,"docs":{"12":{"tf":1.0},"167":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":67,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.0},"127":{"tf":1.7320508075688772},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"145":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"180":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"224":{"tf":1.0},"23":{"tf":1.7320508075688772},"233":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"37":{"tf":2.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"48":{"tf":2.0},"56":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"/":{"@":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"226":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}},"t":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}},"df":5,"docs":{"195":{"tf":1.7320508075688772},"198":{"tf":1.0},"29":{"tf":2.0},"35":{"tf":1.0},"4":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"df":2,"docs":{"199":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":5,"docs":{"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"241":{"tf":1.4142135623730951}}},"s":{"a":{"df":2,"docs":{"143":{"tf":1.0},"18":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"110":{"tf":1.0},"13":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"230":{"tf":1.0}},"i":{"df":1,"docs":{"230":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"143":{"tf":1.0},"18":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"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":{"184":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"184":{"tf":1.0},"186":{"tf":1.4142135623730951},"187":{"tf":3.0},"188":{"tf":2.0},"20":{"tf":1.0},"28":{"tf":1.0},"55":{"tf":1.0}}}},"k":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"16":{"tf":1.0}}},"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"13":{"tf":1.4142135623730951},"157":{"tf":1.0},"236":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":3,"docs":{"171":{"tf":1.0},"2":{"tf":1.0},"56":{"tf":1.0}}},"l":{"df":1,"docs":{"233":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"167":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"236":{"tf":1.4142135623730951},"24":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"194":{"tf":1.0},"6":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"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":{"233":{"tf":1.0}}}}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":8,"docs":{"0":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"220":{"tf":1.0},"236":{"tf":1.4142135623730951},"238":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"13":{"tf":1.0},"199":{"tf":1.0},"238":{"tf":1.0}}}},"r":{"df":1,"docs":{"230":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"238":{"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":2,"docs":{"231":{"tf":1.0},"234":{"tf":1.4142135623730951}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"71":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"131":{"tf":1.4142135623730951},"233":{"tf":1.0},"35":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"102":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"174":{"tf":1.7320508075688772},"175":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"132":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"55":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"16":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"34":{"tf":1.0},"60":{"tf":1.0}}}}}}}},"o":{"b":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":5,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0}}},"l":{"d":{"df":7,"docs":{"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"238":{"tf":2.0},"250":{"tf":1.0},"5":{"tf":1.0},"97":{"tf":2.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"10":{"tf":1.0},"221":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"215":{"tf":1.0},"228":{"tf":1.0},"34":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"207":{"tf":1.7320508075688772},"216":{"tf":1.0}}}}},"x":{"%":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"'":{"d":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"224":{"tf":1.0},"72":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":30,"docs":{"110":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"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},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"88":{"tf":1.0},"91":{"tf":2.0}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"238":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"21":{"tf":1.0},"241":{"tf":1.4142135623730951}}}}}}},"s":{"d":{":":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"224":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"224":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"204":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"224":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"224":{"tf":1.0}}}}},"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":2,"docs":{"224":{"tf":1.0},"226":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"224":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"216":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":3,"docs":{"158":{"tf":1.0},"179":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"229":{"tf":1.0},"230":{"tf":1.4142135623730951},"241":{"tf":1.0},"71":{"tf":1.0}}}},"df":1,"docs":{"234":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"219":{"tf":1.0},"222":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"13":{"tf":1.0},"195":{"tf":1.0},"234":{"tf":1.0}}}},"r":{"df":2,"docs":{"0":{"tf":1.0},"250":{"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":{"167":{"tf":1.0}}}}}}}}}},"z":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"141":{"tf":1.0},"215":{"tf":1.0},"81":{"tf":1.7320508075688772}}}},"df":1,"docs":{"147":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"3":{"2":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"146":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":4,"docs":{"146":{"tf":1.0},"225":{"tf":1.0},"41":{"tf":1.0},"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"z":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"140":{"tf":1.0},"141":{"tf":1.4142135623730951},"215":{"tf":1.0},"81":{"tf":1.7320508075688772}}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"0":{":":{"0":{"0":{":":{"0":{"0":{".":{"0":{"0":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"z":{"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":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":16,"docs":{"122":{"tf":2.0},"123":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"137":{"tf":1.0},"161":{"tf":2.23606797749979},"162":{"tf":2.23606797749979},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"225":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"68":{"tf":2.6457513110645907},"69":{"tf":2.0},"71":{"tf":1.7320508075688772}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{".":{"0":{"0":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"3":{"df":0,"docs":{},"z":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"137":{"tf":1.0},"224":{"tf":1.0},"68":{"tf":1.0}},"z":{"df":5,"docs":{"123":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":3,"docs":{"161":{"tf":1.0},"162":{"tf":1.0},"71":{"tf":1.0}}},"3":{":":{"0":{"4":{":":{"0":{"5":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"162":{"tf":1.0},"163":{"tf":1.0}}},"4":{"df":9,"docs":{"161":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}}},"5":{"df":4,"docs":{"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"164":{"tf":1.0}}},"7":{"df":5,"docs":{"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0}}},"8":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"156":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"236":{"tf":1.0}}},"9":{"df":1,"docs":{"245":{"tf":1.4142135623730951}},"t":{"2":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":3,"docs":{"204":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}}}},"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":{"1":{"2":{"d":{"df":0,"docs":{},"e":{"4":{"3":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"105":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"41":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":2.0}}},"1":{",":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":6,"docs":{"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0}}}}}}}},"2":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"4":{"0":{"df":3,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"40":{"tf":1.0}}},"df":1,"docs":{"40":{"tf":1.0}}},"5":{"0":{"df":3,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"40":{"tf":1.0}}},"df":1,"docs":{"40":{"tf":1.0}}},"9":{"8":{"df":1,"docs":{"25":{"tf":1.0}}},"9":{"df":4,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"25":{"tf":1.0}}},"df":1,"docs":{"117":{"tf":1.0}}},"df":1,"docs":{"101":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"229":{"tf":1.0}}}}},"1":{"df":1,"docs":{"233":{"tf":1.0}}},"2":{"3":{"df":5,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"190":{"tf":1.0},"64":{"tf":1.0}}},"8":{".":{"5":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"66":{"tf":1.0}}},":":{"3":{"4":{":":{"5":{"6":{".":{"7":{"8":{"9":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"74":{"tf":1.7320508075688772},"81":{"tf":2.0}}},"3":{"df":1,"docs":{"46":{"tf":1.0}}},"5":{"0":{"0":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":0,"docs":{},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"9":{"2":{"8":{"df":1,"docs":{"245":{"tf":1.0}}},"9":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":1,"docs":{"233":{"tf":1.0}}},"4":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"df":2,"docs":{"233":{"tf":1.7320508075688772},"235":{"tf":1.0}}},"2":{"df":1,"docs":{"74":{"tf":1.7320508075688772}}},"5":{"df":1,"docs":{"233":{"tf":1.0}}},"6":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"0":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"9":{"2":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":29,"docs":{"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"132":{"tf":1.0},"140":{"tf":1.0},"145":{"tf":1.0},"168":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":2.23606797749979},"179":{"tf":1.4142135623730951},"201":{"tf":1.0},"205":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"77":{"tf":3.0},"81":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"91":{"tf":2.8284271247461903},"94":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"2":{",":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}},"'":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"'":{"2":{"0":{"2":{"3":{"df":5,"docs":{"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"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":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"0":{"df":2,"docs":{"25":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":1,"docs":{"81":{"tf":2.0}}},"9":{"9":{"df":7,"docs":{"217":{"tf":1.0},"23":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"1":{"df":8,"docs":{"161":{"tf":2.0},"162":{"tf":2.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"241":{"tf":1.0},"71":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"230":{"tf":1.0}}},"6":{"df":1,"docs":{"241":{"tf":1.0}}},"7":{"df":4,"docs":{"224":{"tf":1.4142135623730951},"241":{"tf":1.0},"68":{"tf":2.23606797749979},"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"1":{"0":{"df":3,"docs":{"229":{"tf":1.0},"233":{"tf":1.0},"241":{"tf":1.0}}},"1":{"df":3,"docs":{"204":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}}},"2":{"df":1,"docs":{"241":{"tf":1.0}}},"5":{"df":1,"docs":{"241":{"tf":1.0}}},"6":{"df":1,"docs":{"241":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":3,"docs":{"229":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"241":{"tf":1.0},"251":{"tf":1.0}}},"3":{"df":8,"docs":{"13":{"tf":1.4142135623730951},"156":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"225":{"tf":1.0},"233":{"tf":1.0},"252":{"tf":1.0},"81":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"134":{"tf":1.0}}},"1":{"df":1,"docs":{"81":{"tf":1.7320508075688772}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"\"":{",":{"\"":{"@":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"\"":{":":{"\"":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"d":{":":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"\"":{"df":0,"docs":{},"}":{"df":0,"docs":{},"}":{",":{"df":0,"docs":{},"{":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"1":{"\"":{":":{"1":{",":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"2":{"\"":{":":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"]":{",":{"[":{"1":{",":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"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":5,"docs":{"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0}}},"3":{":":{"3":{"0":{":":{"0":{"0":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"9":{":":{"1":{"2":{".":{"1":{"2":{"3":{"4":{"5":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"124":{"tf":1.0}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":2,"docs":{"158":{"tf":1.0},"159":{"tf":1.0}}},"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":{"179":{"tf":1.4142135623730951}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":3,"docs":{"156":{"tf":1.0},"158":{"tf":1.0},"236":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":37,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"127":{"tf":1.0},"132":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":2.23606797749979},"176":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.7320508075688772},"226":{"tf":1.0},"23":{"tf":1.0},"238":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":2.23606797749979},"77":{"tf":2.8284271247461903},"78":{"tf":2.6457513110645907},"81":{"tf":1.4142135623730951},"86":{"tf":2.23606797749979},"87":{"tf":1.4142135623730951},"91":{"tf":2.0},"97":{"tf":1.4142135623730951}}},"3":{",":{"4":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},".":{"0":{"0":{"df":1,"docs":{"29":{"tf":1.0}}},"df":1,"docs":{"39":{"tf":1.0}}},"5":{"5":{"5":{"df":1,"docs":{"86":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{"df":5,"docs":{"218":{"tf":1.0},"23":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":0,"docs":{},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"159":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"3":{"5":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"74":{"tf":1.7320508075688772}}},"7":{"9":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"3":{":":{"3":{"8":{"0":{"3":{"df":2,"docs":{"195":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"198":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":1,"docs":{"232":{"tf":1.0}}},"df":21,"docs":{"100":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"132":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.7320508075688772},"179":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.0},"48":{"tf":1.4142135623730951},"54":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"77":{"tf":2.0},"91":{"tf":2.6457513110645907},"97":{"tf":1.0}}},"4":{".":{"0":{"0":{"df":2,"docs":{"23":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"7":{"7":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"9":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"54":{"tf":1.0}}},"1":{"df":1,"docs":{"215":{"tf":1.7320508075688772}}},"9":{"a":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":3,"docs":{"179":{"tf":1.0},"224":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"5":{"6":{"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"7":{"1":{"4":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"b":{"9":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":0,"docs":{},"e":{"1":{"2":{"0":{"0":{"b":{"df":0,"docs":{},"f":{"a":{"4":{"7":{"df":1,"docs":{"144":{"tf":1.0}}},"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":{"8":{"5":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"9":{"2":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"100":{"tf":1.0},"106":{"tf":1.4142135623730951},"132":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":2.0},"178":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"42":{"tf":1.0},"46":{"tf":1.0},"73":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"91":{"tf":2.0},"97":{"tf":1.0}},"f":{"7":{"4":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"}":{"]":{".":{"a":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{".":{"0":{"0":{"df":5,"docs":{"29":{"tf":1.0},"55":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"9":{"8":{"df":2,"docs":{"24":{"tf":1.0},"28":{"tf":1.0}}},"9":{"df":5,"docs":{"139":{"tf":1.0},"23":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"c":{"5":{"a":{"5":{"1":{"2":{"9":{"0":{"7":{"4":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"101":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.4142135623730951},"29":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"77":{"tf":2.0},"78":{"tf":2.0},"97":{"tf":1.0}}},"6":{"0":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}},"4":{"/":{"1":{"2":{"8":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"224":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}},"6":{"df":1,"docs":{"108":{"tf":1.0}}},"7":{"df":1,"docs":{"108":{"tf":1.0}}},"df":2,"docs":{"29":{"tf":1.7320508075688772},"97":{"tf":1.0}},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"238":{"tf":1.0}}}}},"7":{".":{"9":{"9":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"5":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{"6":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"4":{"df":2,"docs":{"224":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":1,"docs":{"112":{"tf":1.0}}},"8":{"9":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"180":{"tf":1.7320508075688772},"29":{"tf":1.0}}},"8":{".":{"9":{"9":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"5":{"2":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{"d":{"d":{"2":{"9":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"8":{"df":0,"docs":{},"e":{"7":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"1":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"233":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"147":{"tf":1.0},"224":{"tf":1.4142135623730951}}},"9":{".":{"9":{"9":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"7":{"1":{"9":{"9":{"2":{"5":{"4":{"7":{"4":{"0":{"9":{"9":{"2":{".":{"1":{"2":{"3":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"2":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"176":{"tf":1.0}}},"7":{",":{"9":{"6":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"176":{"tf":1.0},"228":{"tf":1.0}}},"9":{"df":3,"docs":{"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"_":{"df":1,"docs":{"88":{"tf":1.0}}},"a":{".":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"b":{"7":{"c":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"120":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":10,"docs":{"10":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.0},"241":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"58":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}}}}},"c":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":17,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"208":{"tf":2.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},"220":{"tf":1.0},"35":{"tf":1.4142135623730951},"45":{"tf":1.0},"64":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"125":{"tf":1.0},"151":{"tf":1.0},"155":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"155":{"tf":1.0},"175":{"tf":1.0}}}}}}}},"r":{"d":{"df":6,"docs":{"13":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"233":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"120":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"120":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"55":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"20":{"tf":1.0},"57":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"228":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"243":{"tf":1.0},"251":{"tf":2.23606797749979}}}}},"d":{"df":5,"docs":{"15":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.0},"46":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"183":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"245":{"tf":1.0}}}}}}},"df":0,"docs":{}},"[":{"0":{"]":{".":{"c":{"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":6,"docs":{"14":{"tf":1.0},"168":{"tf":1.0},"229":{"tf":1.4142135623730951},"238":{"tf":1.0},"30":{"tf":1.0},"56":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"33":{"tf":1.0},"43":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"253":{"tf":1.0}}}}}}},"g":{"df":1,"docs":{"91":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":5,"docs":{"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"134":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"16":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":2,"docs":{"228":{"tf":1.0},"241":{"tf":1.0}},"m":{"df":1,"docs":{"198":{"tf":1.0}}}},"k":{"a":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"a":{"df":3,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"a":{"df":4,"docs":{"24":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.7320508075688772},"48":{"tf":1.0}},"s":{"df":2,"docs":{"120":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":8,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"181":{"tf":1.0},"201":{"tf":1.4142135623730951},"239":{"tf":1.0},"246":{"tf":1.0},"47":{"tf":1.0},"57":{"tf":1.0}}},"y":{"d":{"b":{"df":2,"docs":{"241":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"236":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"234":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}}}},"z":{"df":0,"docs":{},"o":{"'":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":2,"docs":{"194":{"tf":2.0},"6":{"tf":2.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":5,"docs":{"176":{"tf":1.0},"193":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}},"n":{"df":5,"docs":{"110":{"tf":1.0},"187":{"tf":1.0},"234":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":6,"docs":{"13":{"tf":1.0},"190":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"250":{"tf":1.0},"40":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":10,"docs":{"16":{"tf":1.0},"19":{"tf":1.0},"216":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0},"28":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"237":{"tf":1.0},"241":{"tf":1.4142135623730951},"250":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"245":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"239":{"tf":1.0}}}},"t":{"df":5,"docs":{"228":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"246":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"216":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":5,"docs":{"37":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"15":{"tf":1.0},"21":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"77":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"0":{"tf":1.0},"235":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"232":{"tf":1.4142135623730951},"234":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"220":{"tf":2.23606797749979},"228":{"tf":1.0},"234":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":29,"docs":{"192":{"tf":1.0},"199":{"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.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},"238":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"8":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"218":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"235":{"tf":1.4142135623730951},"41":{"tf":1.0},"51":{"tf":1.0}},"i":{"df":0,"docs":{},"x":{"df":27,"docs":{"227":{"tf":1.7320508075688772},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"203":{"tf":2.449489742783178},"204":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":2.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0}}}}}},"l":{"d":{"+":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"204":{"tf":2.0},"212":{"tf":2.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":14,"docs":{"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"205":{"tf":2.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},"216":{"tf":1.0},"220":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"n":{"d":{".":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"213":{"tf":2.0},"220":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"214":{"tf":2.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":3,"docs":{"207":{"tf":2.0},"211":{"tf":2.0},"216":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"109":{"tf":1.0},"234":{"tf":1.0}}},"df":2,"docs":{"134":{"tf":1.0},"54":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"168":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"238":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":11,"docs":{"227":{"tf":1.0},"242":{"tf":1.7320508075688772},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"238":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"110":{"tf":1.7320508075688772},"141":{"tf":1.0},"147":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"206":{"tf":1.0},"215":{"tf":1.0},"233":{"tf":1.0},"64":{"tf":1.0},"97":{"tf":1.7320508075688772}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"109":{"tf":1.0},"127":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"16":{"tf":1.0},"230":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"(":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":1,"docs":{"40":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"132":{"tf":2.0},"40":{"tf":1.0}}}}},"df":0,"docs":{}},"df":22,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"132":{"tf":2.23606797749979},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"180":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772},"73":{"tf":2.8284271247461903},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.0},"91":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":2.449489742783178}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"220":{"tf":3.1622776601683795},"228":{"tf":1.0},"234":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.0}}}}}},"s":{"c":{"df":2,"docs":{"44":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"120":{"tf":1.0}},"h":{"df":1,"docs":{"120":{"tf":1.0}}}}},"k":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"234":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"185":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":2.8284271247461903},"191":{"tf":2.23606797749979},"20":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"10":{"tf":1.0},"206":{"tf":1.0},"220":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"2":{"df":1,"docs":{"120":{"tf":1.0}}},"df":1,"docs":{"120":{"tf":1.0}},"h":{"df":1,"docs":{"120":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"229":{"tf":1.0},"233":{"tf":1.0},"57":{"tf":1.0},"81":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"131":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":4,"docs":{"229":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.0},"215":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"215":{"tf":1.4142135623730951},"33":{"tf":1.0}}}}},"o":{"df":1,"docs":{"66":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":11,"docs":{"160":{"tf":1.0},"175":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"29":{"tf":1.0},"50":{"tf":1.0},"6":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"130":{"tf":1.7320508075688772}}},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"11":{"tf":1.0},"158":{"tf":1.0},"215":{"tf":1.0}}}},"df":1,"docs":{"237":{"tf":1.0}}},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"250":{"tf":1.0}}}}}},"b":{"'":{"1":{"5":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"]":{"[":{"'":{"a":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{".":{"[":{"'":{"a":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"169":{"tf":1.0}}},"c":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"1":{"df":0,"docs":{},"e":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}},"8":{"df":0,"docs":{},"e":{"3":{"5":{"c":{"8":{"2":{"b":{"9":{"3":{"5":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"[":{"'":{"a":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":2.6457513110645907}}}}}}},"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"13":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"229":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"235":{"tf":1.0}}}},"r":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"6":{"4":{"(":{"'":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"'":{"0":{"1":{"0":{"2":{"0":{"3":{"df":1,"docs":{"143":{"tf":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":{"143":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":11,"docs":{"120":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"225":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"25":{"tf":1.0},"45":{"tf":1.0}}},"i":{"c":{"df":14,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"215":{"tf":2.0},"33":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"y":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":8,"docs":{"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"225":{"tf":1.0},"77":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"233":{"tf":1.0},"235":{"tf":1.0}}}}},"df":1,"docs":{"29":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"20":{"tf":1.0},"47":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"12":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"175":{"tf":1.0},"192":{"tf":1.0},"233":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"85":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"131":{"tf":1.0},"203":{"tf":1.0},"234":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"58":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"232":{"tf":1.0},"234":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":8,"docs":{"167":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"220":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"58":{"tf":1.0},"88":{"tf":1.0}}}}},"n":{"d":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"235":{"tf":1.0}}}}},"t":{"df":3,"docs":{"0":{"tf":1.0},"148":{"tf":1.0},"19":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"158":{"tf":2.449489742783178},"159":{"tf":1.4142135623730951},"233":{"tf":1.0},"84":{"tf":2.8284271247461903}}}}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":2,"docs":{"21":{"tf":1.0},"245":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"226":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"146":{"tf":1.4142135623730951},"194":{"tf":1.0},"197":{"tf":2.0},"198":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"6":{"tf":1.0},"72":{"tf":1.0}}}}},"d":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"74":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":4,"docs":{"224":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"86":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":2.6457513110645907}}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"df":9,"docs":{"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":2.0},"224":{"tf":1.0},"226":{"tf":1.0},"250":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"215":{"tf":1.0},"216":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"224":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"85":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":12,"docs":{"159":{"tf":1.0},"219":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"237":{"tf":1.0},"245":{"tf":1.0},"38":{"tf":1.4142135623730951},"52":{"tf":1.0},"58":{"tf":1.0},"85":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}}}},"x":{"df":1,"docs":{"238":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"35":{"tf":1.0},"74":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"78":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"196":{"tf":1.0}}}},"d":{"df":2,"docs":{"183":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"238":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"229":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":10,"docs":{"193":{"tf":1.0},"196":{"tf":1.0},"21":{"tf":1.0},"229":{"tf":1.4142135623730951},"231":{"tf":1.0},"234":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"247":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":3,"docs":{"241":{"tf":1.4142135623730951},"246":{"tf":1.0},"250":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":3,"docs":{"200":{"tf":1.4142135623730951},"219":{"tf":2.23606797749979},"221":{"tf":1.7320508075688772}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":5,"docs":{"230":{"tf":1.0},"233":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.7320508075688772},"241":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"221":{"tf":1.0},"23":{"tf":1.0}}}}}},"y":{"df":2,"docs":{"229":{"tf":1.0},"240":{"tf":1.0}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"101":{"tf":1.0},"146":{"tf":1.4142135623730951}}}}}},"c":{"'":{"]":{"[":{"1":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"74":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":4,"docs":{"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"74":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"34":{"tf":1.0},"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"[":{"1":{"df":1,"docs":{"173":{"tf":1.0}}},"2":{"]":{".":{"df":0,"docs":{},"f":{"df":1,"docs":{"180":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"83":{"tf":1.0}}}},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"220":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}},"a":{"d":{"a":{"'":{"df":0,"docs":{},"}":{",":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"238":{"tf":1.0},"56":{"tf":1.4142135623730951},"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"57":{"tf":1.0},"59":{"tf":1.0}}}}}},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"236":{"tf":1.0},"47":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.0},"34":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":10,"docs":{"129":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"181":{"tf":1.0},"20":{"tf":1.0},"231":{"tf":1.0},"238":{"tf":1.4142135623730951},"54":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0}}},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}},"1":{"2":{"3":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":5,"docs":{"136":{"tf":2.0},"64":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.0},"97":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}},"d":{"c":{"df":1,"docs":{"230":{"tf":1.0}}},"df":1,"docs":{"10":{"tf":1.0}}},"df":16,"docs":{"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"168":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.7320508075688772},"177":{"tf":2.0},"178":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"91":{"tf":2.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"230":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":1,"docs":{"239":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"109":{"tf":1.0},"97":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"233":{"tf":1.0},"238":{"tf":1.0}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"c":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"20":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.4142135623730951}}}},"r":{"(":{"1":{"0":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"6":{"5":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"147":{"tf":1.7320508075688772},"77":{"tf":1.0},"88":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"_":{"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":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"100":{"tf":2.0},"112":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.7320508075688772},"64":{"tf":2.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":4,"docs":{"139":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"185":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"185":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"172":{"tf":1.7320508075688772},"173":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"120":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":4,"docs":{"21":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"238":{"tf":1.0},"250":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":17,"docs":{"167":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":2.0},"34":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":2.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"16":{"tf":1.0},"195":{"tf":1.0},"230":{"tf":1.0}}},"r":{"df":3,"docs":{"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"10":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"215":{"tf":1.7320508075688772},"222":{"tf":1.4142135623730951},"35":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"151":{"tf":1.0},"233":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"10":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"149":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"u":{"d":{"df":1,"docs":{"250":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"141":{"tf":1.7320508075688772}},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"d":{"'":{"df":1,"docs":{"233":{"tf":1.0}}},"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":6,"docs":{"10":{"tf":1.0},"108":{"tf":1.0},"181":{"tf":1.0},"215":{"tf":1.7320508075688772},"253":{"tf":1.0},"9":{"tf":1.0}}}},"df":1,"docs":{"120":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":4,"docs":{"23":{"tf":1.0},"24":{"tf":2.23606797749979},"83":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":2,"docs":{"230":{"tf":1.0},"232":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"120":{"tf":1.0},"179":{"tf":1.0},"225":{"tf":1.4142135623730951},"40":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"234":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"205":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"222":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"1":{"\"":{",":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"2":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"1":{",":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"2":{"\"":{":":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"211":{"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":{",":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"2":{"\"":{":":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"132":{"tf":1.0},"173":{"tf":2.0},"174":{"tf":1.4142135623730951},"48":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":2.0},"77":{"tf":2.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0}}},"2":{"df":1,"docs":{"48":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"183":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"213":{"tf":1.0},"214":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"246":{"tf":1.7320508075688772},"249":{"tf":1.7320508075688772}}}},"df":35,"docs":{"128":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"155":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.4142135623730951},"187":{"tf":2.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"220":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.7320508075688772},"246":{"tf":1.0},"25":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":2.0},"37":{"tf":1.4142135623730951},"38":{"tf":2.8284271247461903},"39":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"54":{"tf":2.6457513110645907},"63":{"tf":1.0},"76":{"tf":2.0},"79":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"205":{"tf":1.0},"215":{"tf":1.0},"221":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"230":{"tf":1.0},"241":{"tf":1.0}}},"m":{"a":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":4,"docs":{"133":{"tf":1.0},"209":{"tf":1.0},"23":{"tf":1.4142135623730951},"35":{"tf":1.0}},"n":{"d":{"df":7,"docs":{"195":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"240":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"190":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"238":{"tf":1.0},"247":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.0},"55":{"tf":1.7320508075688772}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"235":{"tf":1.0}}}},"r":{"df":6,"docs":{"234":{"tf":1.0},"238":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.7320508075688772}}}}}}},"t":{"df":9,"docs":{"136":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"194":{"tf":1.0},"241":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":2.0},"6":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"196":{"tf":1.0},"197":{"tf":1.0},"247":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"t":{"df":5,"docs":{"0":{"tf":1.0},"207":{"tf":1.0},"241":{"tf":1.0},"30":{"tf":1.0},"44":{"tf":1.0}}},"x":{"df":4,"docs":{"229":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"13":{"tf":1.0},"228":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}},"s":{"df":1,"docs":{"21":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"49":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"228":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"237":{"tf":2.0},"250":{"tf":2.0},"74":{"tf":1.0},"78":{"tf":2.0}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":2.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"109":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"97":{"tf":2.6457513110645907}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"234":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"235":{"tf":1.0},"237":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"138":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"46":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"151":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":3.0},"38":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"232":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":2.0}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"185":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":2,"docs":{"185":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"78":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":17,"docs":{"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"161":{"tf":2.0},"20":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":2.0},"95":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":24,"docs":{"132":{"tf":1.0},"199":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951},"202":{"tf":1.7320508075688772},"203":{"tf":2.0},"204":{"tf":1.7320508075688772},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"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},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"233":{"tf":1.0},"55":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"253":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"22":{"tf":1.0},"37":{"tf":1.0},"91":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"'":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"235":{"tf":1.0}}},"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":2,"docs":{"197":{"tf":1.0},"233":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"253":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":4,"docs":{"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"233":{"tf":1.0},"245":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"247":{"tf":1.0}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"108":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"120":{"tf":1.0}}},"t":{"df":3,"docs":{"229":{"tf":1.0},"233":{"tf":1.4142135623730951},"55":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"h":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":3,"docs":{"112":{"tf":1.0},"131":{"tf":2.23606797749979},"173":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"8":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"40":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":8,"docs":{"34":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"241":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"148":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"233":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"237":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":18,"docs":{"12":{"tf":1.4142135623730951},"170":{"tf":1.0},"187":{"tf":2.6457513110645907},"190":{"tf":2.449489742783178},"22":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"235":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"55":{"tf":2.23606797749979},"56":{"tf":1.4142135623730951}}}},"u":{"b":{"df":0,"docs":{},"e":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"l":{"df":23,"docs":{"10":{"tf":1.0},"199":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":2.0},"207":{"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},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"5":{"tf":1.0},"8":{"tf":2.23606797749979}},"i":{"df":1,"docs":{"74":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":2,"docs":{"125":{"tf":1.4142135623730951},"154":{"tf":2.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"125":{"tf":1.4142135623730951},"153":{"tf":2.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"125":{"tf":1.4142135623730951},"13":{"tf":1.0},"152":{"tf":2.0}}}}},"df":0,"docs":{}}}}}}}},"df":10,"docs":{"13":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"56":{"tf":1.0},"80":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"125":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"d":{"2":{"6":{"8":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"15":{"tf":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":{"15":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"a":{"'":{"df":1,"docs":{"236":{"tf":1.0}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":27,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":1.4142135623730951},"155":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"181":{"tf":1.4142135623730951},"191":{"tf":1.0},"21":{"tf":1.4142135623730951},"228":{"tf":2.23606797749979},"229":{"tf":2.8284271247461903},"230":{"tf":2.23606797749979},"231":{"tf":1.7320508075688772},"232":{"tf":1.7320508075688772},"233":{"tf":3.7416573867739413},"234":{"tf":1.7320508075688772},"235":{"tf":2.0},"238":{"tf":2.449489742783178},"239":{"tf":1.7320508075688772},"241":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}},"df":79,"docs":{"117":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"143":{"tf":1.0},"148":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772},"16":{"tf":2.0},"167":{"tf":1.0},"17":{"tf":1.4142135623730951},"170":{"tf":1.0},"192":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":2.0},"208":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":2.23606797749979},"22":{"tf":2.449489742783178},"220":{"tf":1.0},"223":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.7320508075688772},"232":{"tf":1.4142135623730951},"233":{"tf":3.3166247903554},"234":{"tf":1.0},"235":{"tf":2.8284271247461903},"236":{"tf":1.7320508075688772},"237":{"tf":1.4142135623730951},"238":{"tf":3.3166247903554},"239":{"tf":2.0},"24":{"tf":1.0},"241":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.0},"246":{"tf":1.4142135623730951},"249":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":2.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.7320508075688772},"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.4142135623730951},"81":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"234":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"(":{"'":{"2":{"0":{"0":{"1":{"df":1,"docs":{"122":{"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":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"121":{"tf":1.4142135623730951},"151":{"tf":1.0},"80":{"tf":1.0}}}}}},"df":11,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":2.0},"148":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.4142135623730951},"156":{"tf":1.0},"224":{"tf":1.4142135623730951},"245":{"tf":1.0},"69":{"tf":2.6457513110645907}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"'":{"2":{"0":{"0":{"1":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"2":{"0":{"2":{"3":{"df":1,"docs":{"81":{"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":{}}}}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}}}},"y":{"df":4,"docs":{"124":{"tf":1.4142135623730951},"154":{"tf":1.0},"246":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"b":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":21,"docs":{"122":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"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},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.4142135623730951}},"e":{"6":{"df":0,"docs":{},"f":{"df":1,"docs":{"60":{"tf":1.0}}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}}},"c":{"a":{"d":{"df":5,"docs":{"230":{"tf":1.7320508075688772},"232":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951},"241":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"238":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"171":{"tf":1.0}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":12,"docs":{"13":{"tf":1.0},"133":{"tf":1.0},"16":{"tf":1.0},"172":{"tf":1.0},"195":{"tf":1.4142135623730951},"198":{"tf":1.7320508075688772},"208":{"tf":1.0},"228":{"tf":1.0},"236":{"tf":1.0},"44":{"tf":1.0},"57":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"190":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"215":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"88":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"120":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"13":{"tf":1.4142135623730951},"188":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":2.0},"235":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":3.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"133":{"tf":1.4142135623730951},"211":{"tf":1.0},"222":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"32":{"tf":1.0},"35":{"tf":1.4142135623730951}}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"238":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"233":{"tf":1.0},"239":{"tf":1.0}}}},"t":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"131":{"tf":1.0},"154":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"167":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0}}}}},"s":{"c":{"df":2,"docs":{"132":{"tf":1.0},"44":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"a":{"c":{"df":4,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"58":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"234":{"tf":1.4142135623730951},"235":{"tf":1.0}}}},"r":{"df":4,"docs":{"187":{"tf":1.0},"233":{"tf":1.4142135623730951},"236":{"tf":1.0},"64":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"233":{"tf":2.0},"235":{"tf":1.7320508075688772}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"17":{"tf":1.0},"192":{"tf":1.0},"20":{"tf":1.0},"224":{"tf":1.0},"237":{"tf":1.0},"248":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"20":{"tf":1.0},"229":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"131":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":2.0},"245":{"tf":1.0},"252":{"tf":1.0},"34":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"225":{"tf":1.0}}}},"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"131":{"tf":1.0},"154":{"tf":1.0},"16":{"tf":1.0},"234":{"tf":1.4142135623730951},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"58":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"233":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0}},"i":{"df":2,"docs":{"15":{"tf":1.0},"238":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"132":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"232":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"198":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.4142135623730951},"249":{"tf":1.0},"49":{"tf":1.0},"77":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"197":{"tf":1.0},"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"74":{"tf":1.7320508075688772},"79":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":5,"docs":{"228":{"tf":1.4142135623730951},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"250":{"tf":1.0},"30":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"l":{"df":4,"docs":{"201":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"8":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"df":2,"docs":{"195":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":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":{"195":{"tf":1.0}}}}},"df":5,"docs":{"193":{"tf":1.7320508075688772},"195":{"tf":2.449489742783178},"196":{"tf":1.7320508075688772},"197":{"tf":1.0},"4":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":43,"docs":{"0":{"tf":1.4142135623730951},"117":{"tf":2.449489742783178},"12":{"tf":1.0},"120":{"tf":1.0},"131":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.7320508075688772},"17":{"tf":1.0},"171":{"tf":1.0},"18":{"tf":2.23606797749979},"181":{"tf":1.4142135623730951},"192":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"22":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.4142135623730951},"23":{"tf":2.23606797749979},"230":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.7320508075688772},"234":{"tf":1.0},"238":{"tf":2.0},"24":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"15":{"tf":1.0},"16":{"tf":1.0},"176":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"197":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"22":{"tf":1.0},"247":{"tf":1.0}}}},"t":{"df":2,"docs":{"169":{"tf":1.0},"171":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"171":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"195":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"21":{"tf":1.4142135623730951},"245":{"tf":1.0}},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"228":{"tf":1.0},"235":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}},"r":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"187":{"tf":1.0},"188":{"tf":2.0},"191":{"tf":1.7320508075688772},"230":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"71":{"tf":1.0}}},"m":{"df":1,"docs":{"233":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"230":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"233":{"tf":1.0},"236":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":2.23606797749979},"60":{"tf":1.7320508075688772}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"238":{"tf":1.0},"71":{"tf":2.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"p":{"1":{"df":0,"docs":{},"y":{"2":{"df":0,"docs":{},"m":{"1":{"0":{"d":{"df":0,"docs":{},"t":{"2":{"df":0,"docs":{},"h":{"3":{"0":{"df":0,"docs":{},"m":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"1":{"2":{"df":0,"docs":{},"h":{"3":{"0":{"df":0,"docs":{},"m":{"5":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"247":{"tf":1.0},"57":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":9,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.7320508075688772},"15":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.7320508075688772},"245":{"tf":1.7320508075688772},"54":{"tf":1.0},"75":{"tf":1.4142135623730951}},"o":{"d":{"b":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"b":{"0":{"7":{"7":{"6":{"5":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":20,"docs":{"127":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"187":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"221":{"tf":1.4142135623730951},"232":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"34":{"tf":1.0},"45":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"194":{"tf":1.7320508075688772},"233":{"tf":1.0},"252":{"tf":1.0},"6":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"234":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"170":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"236":{"tf":1.0},"34":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"238":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"187":{"tf":1.0},"188":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"40":{"tf":1.0}}}},"df":1,"docs":{"20":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":2.23606797749979}}}}},"df":2,"docs":{"177":{"tf":1.0},"178":{"tf":1.4142135623730951}},"e":{"df":1,"docs":{"105":{"tf":1.0}},"|":{".":{"*":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"89":{"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":3,"docs":{"110":{"tf":1.0},"237":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"228":{"tf":1.0},"250":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"179":{"tf":1.0},"40":{"tf":1.7320508075688772},"97":{"tf":2.0}}}}}}},"i":{"d":{"df":2,"docs":{"206":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"190":{"tf":1.0},"226":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}},"b":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"11":{"tf":1.0},"238":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"33":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"74":{"tf":1.0}}}}},"o":{"d":{"df":7,"docs":{"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"150":{"tf":1.0},"155":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"194":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":17,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"193":{"tf":1.0},"228":{"tf":2.23606797749979},"230":{"tf":1.4142135623730951},"231":{"tf":2.0},"232":{"tf":2.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"241":{"tf":1.7320508075688772},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.4142135623730951},"250":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"df":2,"docs":{"195":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"'":{"df":8,"docs":{"148":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":1.4142135623730951},"18":{"tf":1.0},"200":{"tf":1.0},"21":{"tf":1.4142135623730951},"246":{"tf":1.0}}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{":":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"195":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"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":{"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"195":{"tf":1.4142135623730951},"198":{"tf":1.0},"4":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"198":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":75,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":2.23606797749979},"12":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"16":{"tf":2.0},"167":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"181":{"tf":2.0},"185":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.4142135623730951},"192":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.7320508075688772},"198":{"tf":2.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"20":{"tf":2.0},"202":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":2.0},"215":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"220":{"tf":1.4142135623730951},"222":{"tf":1.0},"224":{"tf":1.4142135623730951},"228":{"tf":2.23606797749979},"229":{"tf":1.0},"231":{"tf":1.4142135623730951},"234":{"tf":2.8284271247461903},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.7320508075688772},"41":{"tf":1.0},"48":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0}}},"df":11,"docs":{"106":{"tf":1.0},"149":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"192":{"tf":1.0},"2":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"228":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"231":{"tf":1.0},"233":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"215":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":8,"docs":{"157":{"tf":1.0},"21":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.0},"76":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"238":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}}},"v":{"df":1,"docs":{"198":{"tf":2.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"186":{"tf":1.0},"35":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"140":{"tf":1.0},"238":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}},"t":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"109":{"tf":1.0},"117":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"229":{"tf":1.0},"39":{"tf":1.0},"71":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":1,"docs":{"233":{"tf":1.0}},"s":{"df":5,"docs":{"13":{"tf":1.0},"228":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":2.449489742783178}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"232":{"tf":1.0},"235":{"tf":1.0},"244":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"19":{"tf":1.7320508075688772},"220":{"tf":1.0},"24":{"tf":1.0},"54":{"tf":1.0},"76":{"tf":1.0}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"110":{"tf":1.0},"88":{"tf":2.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"t":{"c":{"df":3,"docs":{"20":{"tf":1.0},"250":{"tf":1.4142135623730951},"48":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":2,"docs":{"229":{"tf":1.0},"230":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"85":{"tf":2.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"15":{"tf":1.0},"195":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0}},"t":{"df":4,"docs":{"204":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.0}},"u":{"df":1,"docs":{"233":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"232":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"165":{"tf":1.0},"166":{"tf":1.0},"76":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"213":{"tf":1.0},"214":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":18,"docs":{"10":{"tf":2.23606797749979},"13":{"tf":1.4142135623730951},"141":{"tf":1.0},"167":{"tf":1.4142135623730951},"199":{"tf":1.0},"206":{"tf":1.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"245":{"tf":1.0},"44":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"76":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.7320508075688772}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.0},"129":{"tf":1.0},"50":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"149":{"tf":1.0},"29":{"tf":1.0}},"e":{"d":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"v":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":1,"docs":{"159":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"190":{"tf":1.0},"198":{"tf":1.0},"215":{"tf":1.0},"228":{"tf":1.0},"243":{"tf":1.0},"247":{"tf":1.7320508075688772},"29":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":19,"docs":{"13":{"tf":1.4142135623730951},"131":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.4142135623730951},"192":{"tf":1.0},"220":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.4142135623730951},"241":{"tf":1.0},"250":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":2.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"120":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"252":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":5,"docs":{"139":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.7320508075688772},"237":{"tf":1.0},"241":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"194":{"tf":1.0},"20":{"tf":1.0},"234":{"tf":1.0},"6":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"193":{"tf":1.0},"199":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"57":{"tf":1.7320508075688772},"61":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"37":{"tf":1.0},"38":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"0":{"tf":1.0},"198":{"tf":1.0}}}}}}},"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"201":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"195":{"tf":1.0},"204":{"tf":1.0},"235":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"r":{"df":1,"docs":{"238":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"195":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"127":{"tf":1.0},"132":{"tf":1.0},"140":{"tf":1.0},"17":{"tf":1.4142135623730951},"37":{"tf":1.0},"44":{"tf":1.0},"55":{"tf":1.7320508075688772},"89":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"125":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":2,"docs":{"125":{"tf":2.449489742783178},"235":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"238":{"tf":1.0}}}}}}}},"f":{"7":{"c":{"3":{"1":{"4":{"d":{"d":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"235":{"tf":1.0},"238":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"237":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"159":{"tf":1.0}}},"s":{"df":6,"docs":{"139":{"tf":1.0},"224":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"11":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"33":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"241":{"tf":1.0},"25":{"tf":1.0}}}}}},"t":{"df":3,"docs":{"228":{"tf":1.0},"237":{"tf":1.0},"243":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"237":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"17":{"tf":1.0},"230":{"tf":1.0}}}}}}},"df":10,"docs":{"180":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":2.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"220":{"tf":1.7320508075688772},"221":{"tf":2.449489742783178},"222":{"tf":1.0},"77":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"192":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"220":{"tf":1.0},"30":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":5,"docs":{"11":{"tf":1.4142135623730951},"226":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"252":{"tf":1.0}}},"t":{"df":1,"docs":{"232":{"tf":1.0}}}},"w":{"df":2,"docs":{"232":{"tf":1.0},"235":{"tf":1.0}}}},"i":{"b":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"56":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":10,"docs":{"117":{"tf":2.23606797749979},"169":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"206":{"tf":1.0},"25":{"tf":1.0},"39":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":2.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"213":{"tf":2.0},"214":{"tf":1.4142135623730951},"220":{"tf":2.8284271247461903},"235":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"40":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"134":{"tf":1.0}}}}}}},"df":4,"docs":{"134":{"tf":1.7320508075688772},"29":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.7320508075688772}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":2,"docs":{"173":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"'":{"df":0,"docs":{},"}":{",":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":23,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"117":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"232":{"tf":1.4142135623730951},"234":{"tf":1.0},"238":{"tf":1.4142135623730951},"241":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"58":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"232":{"tf":1.0}},"r":{"2":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"219":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}},"t":{"df":1,"docs":{"238":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"233":{"tf":1.0},"238":{"tf":1.4142135623730951},"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"224":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":18,"docs":{"12":{"tf":1.0},"120":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.0},"187":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"222":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"29":{"tf":1.0},"37":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.4142135623730951},"94":{"tf":1.0}}}}}},"o":{"2":{"df":2,"docs":{"74":{"tf":1.0},"78":{"tf":1.0}}},"df":4,"docs":{"74":{"tf":1.7320508075688772},"77":{"tf":1.0},"78":{"tf":2.23606797749979},"91":{"tf":2.0}}},"r":{"c":{"df":4,"docs":{"136":{"tf":1.0},"215":{"tf":1.0},"238":{"tf":1.0},"44":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"238":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"v":{"df":2,"docs":{"0":{"tf":1.0},"232":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"122":{"tf":1.0},"144":{"tf":1.4142135623730951},"170":{"tf":1.0},"202":{"tf":1.0},"213":{"tf":1.0},"220":{"tf":1.0},"228":{"tf":1.0}}}},"df":17,"docs":{"125":{"tf":1.0},"158":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":2.0},"216":{"tf":2.0},"217":{"tf":1.0},"218":{"tf":1.0},"222":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"84":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"117":{"tf":1.0},"147":{"tf":1.0},"162":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"21":{"tf":1.0},"248":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"233":{"tf":2.23606797749979}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"c":{"a":{"df":2,"docs":{"230":{"tf":1.0},"232":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"234":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"228":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"241":{"tf":1.0},"8":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":69,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":2.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"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.7320508075688772},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"143":{"tf":1.7320508075688772},"144":{"tf":2.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"148":{"tf":1.0},"175":{"tf":2.8284271247461903},"186":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"73":{"tf":1.0},"86":{"tf":1.4142135623730951},"88":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"169":{"tf":1.0},"206":{"tf":1.0},"29":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"237":{"tf":1.0},"248":{"tf":1.7320508075688772},"57":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":4,"docs":{"13":{"tf":1.0},"228":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"194":{"tf":1.0},"253":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"233":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"245":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":4,"docs":{"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"236":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"221":{"tf":1.0}}}}},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"243":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"213":{"tf":1.0},"214":{"tf":1.0}}}},"t":{"@":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"10":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":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":{"252":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"230":{"tf":1.0},"37":{"tf":1.0}},"n":{"df":10,"docs":{"107":{"tf":1.0},"115":{"tf":1.0},"128":{"tf":1.4142135623730951},"130":{"tf":1.0},"133":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.4142135623730951},"171":{"tf":1.0},"37":{"tf":1.0},"48":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":1,"docs":{"90":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"234":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"253":{"tf":1.0}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"21":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.0}}}},"df":1,"docs":{"232":{"tf":1.0}},"e":{"df":2,"docs":{"230":{"tf":1.0},"56":{"tf":1.0}}},"o":{"d":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"250":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"241":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":4,"docs":{"230":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"83":{"tf":1.4142135623730951},"84":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"w":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"232":{"tf":1.0},"235":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"250":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"133":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"133":{"tf":1.0},"45":{"tf":2.449489742783178},"46":{"tf":1.4142135623730951}}}},"w":{"df":1,"docs":{"231":{"tf":1.0}},"n":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"230":{"tf":1.0}}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"194":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"ö":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"245":{"tf":1.0}}}}}}}}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"229":{"tf":1.0},"230":{"tf":1.0}}}},"n":{"d":{"df":3,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"34":{"tf":1.0}},"l":{"df":3,"docs":{"237":{"tf":1.0},"238":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"74":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"235":{"tf":1.0},"241":{"tf":1.4142135623730951}}}}}},"r":{"d":{"df":2,"docs":{"181":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":1,"docs":{"235":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"247":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"46":{"tf":2.23606797749979}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"241":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":22,"docs":{"122":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"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.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"5":{"tf":1.0},"8":{"tf":1.4142135623730951}},"e":{"a":{"d":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"0":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"199":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"208":{"tf":2.0},"35":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"237":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"c":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"235":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"245":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"175":{"tf":1.0},"21":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"230":{"tf":1.0}}}}}}}}},"o":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"213":{"tf":1.0}}}}}}},"df":0,"docs":{}},"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"102":{"tf":2.449489742783178},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"224":{"tf":1.0},"5":{"tf":1.0},"97":{"tf":2.0}}}},"p":{"df":3,"docs":{"148":{"tf":1.0},"170":{"tf":1.0},"198":{"tf":2.0}}}},"r":{"a":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":4,"docs":{"232":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0},"56":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"247":{"tf":1.0}}}}}}},"x":{"(":{"1":{"5":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"147":{"tf":1.7320508075688772}},"i":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"181":{"tf":1.0},"234":{"tf":1.0},"252":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"132":{"tf":1.0},"234":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"233":{"tf":1.0},"243":{"tf":1.0}},"i":{"df":11,"docs":{"0":{"tf":1.0},"157":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":2.23606797749979},"234":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}}}},"o":{"c":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"228":{"tf":1.0},"239":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"241":{"tf":1.0}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"241":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"228":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"1":{".":{"1":{"df":1,"docs":{"215":{"tf":1.0}}},"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":{":":{"3":{"8":{"0":{"3":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"?":{"df":0,"docs":{},"p":{"=":{"%":{"5":{"b":{"%":{"2":{"2":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"%":{"2":{"2":{"%":{"2":{"c":{"%":{"2":{"2":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"%":{"2":{"2":{"%":{"5":{"d":{"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":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"q":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"%":{"2":{"0":{"1":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":22,"docs":{"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"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},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"5":{"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":{}},"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":1,"docs":{"198":{"tf":1.0}}}}}}},"df":33,"docs":{"10":{"tf":1.0},"192":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.8284271247461903},"200":{"tf":2.0},"201":{"tf":1.7320508075688772},"202":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"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":2.6457513110645907},"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},"31":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.0}},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"/":{"#":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"196":{"tf":1.0},"197":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"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":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"df":2,"docs":{"193":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"238":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"220":{"tf":1.0},"233":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"233":{"tf":1.0},"246":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"å":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"251":{"tf":1.0}}},"df":1,"docs":{"253":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{".":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"m":{"df":1,"docs":{"233":{"tf":1.0}}}},"d":{"df":6,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0}},"e":{"a":{"df":4,"docs":{"148":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"233":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"224":{"tf":1.0},"67":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"131":{"tf":1.0},"147":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"235":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"f":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"139":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"245":{"tf":1.0}}}}}}}},"m":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"193":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":5,"docs":{"149":{"tf":1.4142135623730951},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"187":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"13":{"tf":2.0},"155":{"tf":1.0},"22":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"235":{"tf":1.7320508075688772},"236":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"250":{"tf":1.0},"251":{"tf":1.0}}}}},"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":{"21":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"241":{"tf":1.0},"250":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"232":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"224":{"tf":1.0},"32":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"15":{"tf":1.0},"78":{"tf":1.0}}}}}}},"df":1,"docs":{"232":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"149":{"tf":1.0},"206":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"231":{"tf":1.0},"238":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":11,"docs":{"106":{"tf":1.0},"173":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.4142135623730951},"241":{"tf":1.0},"243":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":2.23606797749979},"41":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":2,"docs":{"24":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"230":{"tf":1.0},"233":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"237":{"tf":1.0},"250":{"tf":1.0}}}}}},"l":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"184":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"181":{"tf":2.0},"21":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"248":{"tf":1.0},"251":{"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":{"228":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"117":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}}}},"df":25,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"168":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"199":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":2.0},"222":{"tf":1.0},"23":{"tf":3.3166247903554},"245":{"tf":1.0},"29":{"tf":2.8284271247461903},"39":{"tf":1.0},"58":{"tf":2.0},"64":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":2,"docs":{"228":{"tf":1.0},"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"158":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"167":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":1.0},"21":{"tf":2.0},"245":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"192":{"tf":1.0},"193":{"tf":2.0},"194":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":1.7320508075688772},"197":{"tf":1.7320508075688772},"2":{"tf":1.0},"4":{"tf":2.0},"8":{"tf":1.0}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":7,"docs":{"220":{"tf":1.0},"222":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"105":{"tf":1.7320508075688772}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":8,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"119":{"tf":1.0},"136":{"tf":1.0},"224":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":2.0},"86":{"tf":1.0}},"r":{"df":1,"docs":{"232":{"tf":1.0}}}},"n":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1":{"tf":1.0},"233":{"tf":1.0}}}}},"f":{"a":{"c":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":2,"docs":{"125":{"tf":1.0},"234":{"tf":1.0}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"50":{"tf":1.7320508075688772},"52":{"tf":2.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"v":{"df":3,"docs":{"148":{"tf":1.0},"224":{"tf":1.4142135623730951},"71":{"tf":2.8284271247461903}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":4,"docs":{"231":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951}},"t":{"df":2,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"155":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"c":{"df":2,"docs":{"213":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.4142135623730951},"231":{"tf":1.0},"238":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":7,"docs":{"224":{"tf":2.0},"233":{"tf":1.0},"245":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"t":{"'":{"df":5,"docs":{"16":{"tf":1.0},"230":{"tf":1.4142135623730951},"234":{"tf":1.0},"235":{"tf":1.7320508075688772},"241":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"21":{"tf":1.0},"220":{"tf":1.0}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":4,"docs":{"15":{"tf":1.0},"16":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0}}},"m":{"df":1,"docs":{"221":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"18":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"a":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"18":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"245":{"tf":1.0}}}}}}},"o":{"b":{"df":3,"docs":{"237":{"tf":1.0},"239":{"tf":1.4142135623730951},"246":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"225":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"14":{"tf":2.23606797749979},"184":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":1.0},"247":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":2.8284271247461903},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.7320508075688772}}}},"y":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":21,"docs":{"17":{"tf":1.0},"175":{"tf":1.0},"203":{"tf":2.0},"204":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.7320508075688772},"216":{"tf":2.0},"217":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":3.3166247903554},"225":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"25":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"91":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"167":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"y":{"(":{"1":{"9":{"7":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"124":{"tf":1.7320508075688772},"148":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}}}}},"k":{"a":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"24":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":4,"docs":{"235":{"tf":1.0},"236":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"219":{"tf":1.0},"222":{"tf":1.0}}}}}},"df":0,"docs":{}},"y":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}}}}},"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":8,"docs":{"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"40":{"tf":1.0},"74":{"tf":1.4142135623730951},"79":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":9,"docs":{"221":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"230":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"11":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0}},"n":{"df":2,"docs":{"235":{"tf":1.0},"77":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"117":{"tf":1.0}}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"187":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"15":{"tf":1.0},"234":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"11":{"tf":1.0},"22":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"234":{"tf":2.8284271247461903},"9":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"146":{"tf":1.4142135623730951},"224":{"tf":1.0},"72":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"179":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"60":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"238":{"tf":1.0},"57":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}},"w":{"df":4,"docs":{"13":{"tf":1.0},"228":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":1.0}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"d":{"df":7,"docs":{"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"212":{"tf":1.0},"216":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"167":{"tf":1.0},"2":{"tf":1.0},"237":{"tf":1.0}}}},"s":{"df":2,"docs":{"57":{"tf":1.0},"60":{"tf":1.0}}},"v":{"df":2,"docs":{"16":{"tf":1.0},"235":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":8,"docs":{"102":{"tf":1.0},"117":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"39":{"tf":1.4142135623730951},"54":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"167":{"tf":1.0},"17":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"46":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"df":1,"docs":{"232":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"'":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":1,"docs":{"112":{"tf":1.0}}}}},"[":{"3":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"44":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":5,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":2.0},"44":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}},"s":{"df":5,"docs":{"106":{"tf":1.0},"230":{"tf":1.0},"238":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.0}}}},"t":{"'":{"df":5,"docs":{"13":{"tf":1.0},"15":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"181":{"tf":1.0},"234":{"tf":1.0},"252":{"tf":1.0},"91":{"tf":1.4142135623730951}}}},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{".":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":1,"docs":{"238":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"227":{"tf":1.0},"253":{"tf":2.23606797749979},"9":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"235":{"tf":1.0}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"251":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":2.8284271247461903},"84":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"u":{"a":{"df":2,"docs":{"230":{"tf":1.0},"232":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"df":1,"docs":{"212":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"197":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":2,"docs":{"234":{"tf":1.0},"247":{"tf":1.0}}},"t":{"df":15,"docs":{"133":{"tf":1.0},"169":{"tf":1.0},"187":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":2.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":23,"docs":{"170":{"tf":2.23606797749979},"216":{"tf":1.4142135623730951},"221":{"tf":1.0},"224":{"tf":2.0},"225":{"tf":1.0},"23":{"tf":1.0},"49":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":2.0},"75":{"tf":1.4142135623730951},"76":{"tf":2.23606797749979},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"238":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"230":{"tf":1.0},"250":{"tf":1.0}}}}},"n":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"154":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{},"g":{"1":{"0":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"120":{"tf":1.0}}},"df":4,"docs":{"120":{"tf":1.7320508075688772},"198":{"tf":1.0},"235":{"tf":1.7320508075688772},"243":{"tf":1.0}},"i":{"c":{"df":2,"docs":{"233":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"232":{"tf":1.0},"234":{"tf":1.4142135623730951},"241":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"30":{"tf":1.0},"61":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"169":{"tf":1.0},"233":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}}}}},"p":{"df":1,"docs":{"233":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"237":{"tf":1.0}}},"t":{"df":2,"docs":{"13":{"tf":1.0},"243":{"tf":1.0}}}},"t":{"df":2,"docs":{"231":{"tf":1.0},"232":{"tf":1.0}}},"w":{"df":1,"docs":{"233":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"103":{"tf":1.7320508075688772},"181":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":2.0}}}}}},"y":{"df":1,"docs":{"16":{"tf":1.0}}}},"m":{")":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":3,"docs":{"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951}}}}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"237":{"tf":1.0}}}}},"o":{"df":1,"docs":{"197":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"243":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"196":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"229":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"9":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":11,"docs":{"13":{"tf":1.0},"148":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"220":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":12,"docs":{"17":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.0},"231":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.0},"34":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":16,"docs":{"117":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":2.0},"23":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"40":{"tf":1.0},"87":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"237":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":1,"docs":{"225":{"tf":1.0}}},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"231":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"233":{"tf":1.7320508075688772},"235":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":13,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"20":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":2.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":3.605551275463989},"95":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"187":{"tf":1.0},"241":{"tf":1.0}}}}},"h":{"df":2,"docs":{"120":{"tf":2.0},"86":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}}}}}},"x":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"127":{"tf":2.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}}}}},"df":4,"docs":{"122":{"tf":1.4142135623730951},"147":{"tf":1.0},"200":{"tf":1.0},"219":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":10,"docs":{"149":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}}},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"247":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"247":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"221":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"25":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"19":{"tf":1.7320508075688772},"220":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"238":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"241":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"54":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":1,"docs":{"127":{"tf":2.0}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"127":{"tf":1.4142135623730951}}}}}},"u":{"df":1,"docs":{"86":{"tf":1.0}},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"224":{"tf":1.0},"63":{"tf":1.0}}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"195":{"tf":1.4142135623730951},"4":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"149":{"tf":1.7320508075688772},"17":{"tf":1.0},"18":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"235":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"187":{"tf":1.0},"85":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"86":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.7320508075688772}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"d":{"b":{"df":4,"docs":{"234":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"71":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":20,"docs":{"15":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"221":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.7320508075688772},"238":{"tf":1.4142135623730951},"245":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"58":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"197":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"206":{"tf":2.0},"216":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":12,"docs":{"151":{"tf":1.0},"180":{"tf":1.0},"222":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"231":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":1.4142135623730951},"40":{"tf":1.0},"86":{"tf":1.0},"97":{"tf":1.0}}}}}}},"n":{"d":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"233":{"tf":1.0},"235":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"56":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":60,"docs":{"110":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.0},"155":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":2.23606797749979},"18":{"tf":1.4142135623730951},"181":{"tf":1.0},"187":{"tf":2.23606797749979},"188":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":2.0},"205":{"tf":1.0},"206":{"tf":1.0},"217":{"tf":3.0},"218":{"tf":1.4142135623730951},"219":{"tf":2.449489742783178},"220":{"tf":2.23606797749979},"221":{"tf":2.23606797749979},"222":{"tf":1.0},"23":{"tf":2.23606797749979},"24":{"tf":2.449489742783178},"26":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":3.3166247903554},"30":{"tf":1.0},"35":{"tf":1.7320508075688772},"37":{"tf":2.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":2.0},"46":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":2.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":2.0},"60":{"tf":1.7320508075688772},"64":{"tf":1.0},"74":{"tf":2.0},"76":{"tf":2.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.0},"83":{"tf":2.0},"85":{"tf":2.0},"88":{"tf":2.449489742783178},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"94":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"220":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"222":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":7,"docs":{"167":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"120":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":15,"docs":{"167":{"tf":2.0},"168":{"tf":1.0},"169":{"tf":2.449489742783178},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"20":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"211":{"tf":2.0}}}}}}},"df":2,"docs":{"225":{"tf":1.0},"41":{"tf":2.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"252":{"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":{"234":{"tf":1.0},"235":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"205":{"tf":1.0}}}}}}},"df":1,"docs":{"235":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":9,"docs":{"12":{"tf":1.0},"190":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"226":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}},"g":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"84":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"250":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"167":{"tf":1.0},"168":{"tf":1.7320508075688772},"169":{"tf":1.0},"17":{"tf":1.7320508075688772},"21":{"tf":1.0},"219":{"tf":1.0},"238":{"tf":2.6457513110645907},"241":{"tf":1.0},"245":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"237":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"234":{"tf":1.0},"240":{"tf":1.0}}}}},"w":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":13,"docs":{"176":{"tf":1.7320508075688772},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"194":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.7320508075688772},"235":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"211":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"224":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":8,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.7320508075688772},"133":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.4142135623730951},"187":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":5,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"233":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"155":{"tf":1.0},"158":{"tf":1.0},"175":{"tf":1.0},"190":{"tf":1.0},"238":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"169":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":36,"docs":{"112":{"tf":1.0},"120":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.7320508075688772},"131":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"154":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"58":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"84":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0}}},"h":{"df":2,"docs":{"179":{"tf":1.0},"29":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"df":11,"docs":{"13":{"tf":1.0},"151":{"tf":1.7320508075688772},"156":{"tf":1.0},"16":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"241":{"tf":1.7320508075688772},"9":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"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":14,"docs":{"117":{"tf":1.4142135623730951},"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"133":{"tf":1.0},"141":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"40":{"tf":1.0},"63":{"tf":2.449489742783178},"65":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"f":{"(":{"1":{"df":1,"docs":{"140":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"140":{"tf":1.7320508075688772}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"100":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"145":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":2.0},"179":{"tf":1.0},"180":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"233":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.7320508075688772},"67":{"tf":1.0},"86":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"118":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":1.0},"86":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.4142135623730951}}}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"40":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"(":{"[":{"[":{"'":{"a":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"113":{"tf":1.7320508075688772}},"s":{"(":{"df":0,"docs":{},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"113":{"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":{"114":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":27,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"146":{"tf":1.4142135623730951},"167":{"tf":1.0},"168":{"tf":2.0},"17":{"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},"217":{"tf":1.0},"221":{"tf":2.449489742783178},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"23":{"tf":1.0},"233":{"tf":1.0},"250":{"tf":1.0},"40":{"tf":1.4142135623730951},"49":{"tf":2.8284271247461903},"72":{"tf":1.0},"74":{"tf":3.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"207":{"tf":1.0},"235":{"tf":1.0}}}}}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"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":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"101":{"tf":2.0}}}}}}}}},"df":1,"docs":{"101":{"tf":1.0}}}}}},"df":1,"docs":{"77":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"167":{"tf":1.0},"207":{"tf":1.0},"238":{"tf":1.0},"40":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}}}}},"k":{"df":2,"docs":{"76":{"tf":1.0},"93":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"228":{"tf":1.0},"233":{"tf":1.0},"249":{"tf":1.4142135623730951}}}},"d":{"df":2,"docs":{"13":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":4,"docs":{"228":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"157":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":5,"docs":{"23":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":1.0}}},"df":27,"docs":{"125":{"tf":1.0},"132":{"tf":1.0},"17":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"230":{"tf":2.0},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":2.23606797749979},"235":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"243":{"tf":1.0},"38":{"tf":1.4142135623730951},"51":{"tf":1.0},"73":{"tf":1.4142135623730951},"77":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"233":{"tf":1.0},"238":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"238":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"235":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"149":{"tf":1.7320508075688772},"228":{"tf":1.0},"240":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951}}},"r":{"df":46,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"132":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"187":{"tf":1.0},"192":{"tf":1.0},"198":{"tf":1.7320508075688772},"20":{"tf":1.0},"21":{"tf":1.0},"219":{"tf":1.4142135623730951},"231":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"50":{"tf":1.7320508075688772},"54":{"tf":1.7320508075688772},"59":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":2.0},"86":{"tf":1.4142135623730951},"87":{"tf":2.23606797749979},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.7320508075688772},"92":{"tf":2.0},"93":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":2.0}}}},"t":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"*":{"/":{"*":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"106":{"tf":1.0},"110":{"tf":1.0},"133":{"tf":1.0},"147":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.4142135623730951},"200":{"tf":1.0},"37":{"tf":1.0},"64":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"110":{"tf":1.0},"132":{"tf":1.4142135623730951},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"218":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.0},"247":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.0},"44":{"tf":3.7416573867739413},"45":{"tf":1.0},"47":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":2,"docs":{"41":{"tf":2.449489742783178},"77":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"13":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"180":{"tf":1.0},"253":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"229":{"tf":1.0},"240":{"tf":1.0}}}}}}},"t":{"df":4,"docs":{"0":{"tf":1.0},"146":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"199":{"tf":1.0},"241":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"213":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"228":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"0":{"tf":1.0},"199":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"35":{"tf":1.0},"7":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"149":{"tf":1.0},"162":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"133":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"176":{"tf":1.0}}}}}}}}}},"p":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}}},")":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":6,"docs":{"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"74":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"34":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"1":{"df":0,"docs":{},"y":{"2":{"df":0,"docs":{},"m":{"1":{"0":{"d":{"df":0,"docs":{},"t":{"2":{"df":0,"docs":{},"h":{"3":{"0":{"df":0,"docs":{},"m":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"\"":{"[":{"[":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"221":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"'":{"[":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"df":2,"docs":{"206":{"tf":1.0},"218":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"[":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"@":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{";":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"=":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"d":{".":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"220":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"d":{"df":2,"docs":{"64":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"21":{"tf":1.0},"233":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":8,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"147":{"tf":1.0},"224":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0}}}},"l":{"a":{"c":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"a":{"df":3,"docs":{"203":{"tf":1.0},"217":{"tf":1.0},"37":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"217":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":22,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"144":{"tf":1.0},"147":{"tf":2.0},"199":{"tf":1.0},"200":{"tf":2.23606797749979},"205":{"tf":1.7320508075688772},"216":{"tf":2.449489742783178},"217":{"tf":2.449489742783178},"218":{"tf":2.449489742783178},"219":{"tf":2.0},"220":{"tf":2.23606797749979},"221":{"tf":2.0},"222":{"tf":1.0},"31":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"187":{"tf":1.0},"224":{"tf":1.0},"48":{"tf":1.0}}}}}}}},"t":{"df":3,"docs":{"162":{"tf":1.0},"216":{"tf":1.0},"232":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"236":{"tf":1.0},"239":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"136":{"tf":1.0},"21":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":1,"docs":{"234":{"tf":1.0}},"q":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"234":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"215":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"198":{"tf":1.4142135623730951},"215":{"tf":2.0}}},"df":0,"docs":{}}}}},"t":{"df":3,"docs":{"13":{"tf":1.0},"236":{"tf":1.0},"241":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"117":{"tf":2.6457513110645907},"25":{"tf":2.8284271247461903}}}},"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"180":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":1,"docs":{"180":{"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":{},"{":{"a":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"178":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"179":{"tf":1.4142135623730951},"27":{"tf":1.0}},"e":{"(":{"[":{"0":{",":{"1":{",":{"2":{",":{"3":{",":{"4":{"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":{}},"df":0,"docs":{},"{":{"df":0,"docs":{},"x":{"df":1,"docs":{"179":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"177":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"177":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"176":{"tf":1.4142135623730951},"26":{"tf":1.0}}}}}},"df":18,"docs":{"167":{"tf":2.449489742783178},"168":{"tf":1.7320508075688772},"169":{"tf":1.7320508075688772},"17":{"tf":1.0},"170":{"tf":1.7320508075688772},"171":{"tf":2.449489742783178},"172":{"tf":3.3166247903554},"173":{"tf":3.0},"174":{"tf":2.23606797749979},"175":{"tf":3.3166247903554},"176":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"178":{"tf":1.7320508075688772},"179":{"tf":1.7320508075688772},"180":{"tf":2.23606797749979},"20":{"tf":1.4142135623730951},"26":{"tf":2.0},"27":{"tf":2.0}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"@":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"110":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":18,"docs":{"14":{"tf":1.0},"184":{"tf":1.0},"195":{"tf":2.23606797749979},"198":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"79":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"29":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951}}}}}},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":4,"docs":{"232":{"tf":1.0},"238":{"tf":1.0},"30":{"tf":1.0},"40":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"29":{"tf":1.0},"81":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"d":{"df":9,"docs":{"149":{"tf":2.0},"160":{"tf":1.7320508075688772},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"238":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"9":{"tf":1.0}}}},"t":{"df":8,"docs":{"13":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"201":{"tf":1.0},"235":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"49":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"i":{"df":1,"docs":{"120":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"236":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"232":{"tf":1.7320508075688772},"234":{"tf":1.7320508075688772},"241":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"d":{"a":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"233":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}}}}}},"l":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"231":{"tf":1.0},"55":{"tf":1.0},"79":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"217":{"tf":1.0},"218":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":4,"docs":{"194":{"tf":1.0},"21":{"tf":1.0},"253":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"u":{"df":1,"docs":{"86":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"224":{"tf":1.0},"67":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"198":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"125":{"tf":2.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"200":{"tf":1.0},"218":{"tf":2.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"78":{"tf":1.0}}},"x":{"df":1,"docs":{"234":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":19,"docs":{"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":27,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"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},"216":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"32":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"df":6,"docs":{"229":{"tf":1.0},"233":{"tf":1.0},"241":{"tf":1.0},"250":{"tf":1.0},"76":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}}}}}}}}}},"w":{"df":1,"docs":{"120":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"120":{"tf":1.0},"167":{"tf":1.0},"21":{"tf":1.4142135623730951},"231":{"tf":1.0},"40":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"149":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"165":{"tf":1.7320508075688772},"76":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"224":{"tf":1.0},"226":{"tf":1.0},"234":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":3,"docs":{"149":{"tf":1.0},"160":{"tf":1.7320508075688772},"238":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{".":{"c":{"a":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"76":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"10":{"tf":1.0},"207":{"tf":1.0},"220":{"tf":1.4142135623730951},"35":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":3,"docs":{"85":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":6,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"194":{"tf":1.0},"233":{"tf":1.0},"6":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":32,"docs":{"112":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"23":{"tf":2.449489742783178},"238":{"tf":1.0},"24":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":3.1622776601683795},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"44":{"tf":2.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"55":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772}},"s":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"155":{"tf":1.0},"28":{"tf":1.0},"58":{"tf":1.0}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"235":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"234":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"229":{"tf":1.0},"235":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"246":{"tf":1.7320508075688772}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"64":{"tf":1.0}}}}},"u":{"c":{"df":1,"docs":{"239":{"tf":1.0}},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":10,"docs":{"112":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"25":{"tf":1.0},"29":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":2.0},"55":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772}}}}},"df":60,"docs":{"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.4142135623730951},"194":{"tf":1.0},"203":{"tf":1.7320508075688772},"206":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"221":{"tf":2.0},"229":{"tf":1.0},"23":{"tf":2.23606797749979},"236":{"tf":1.4142135623730951},"24":{"tf":2.23606797749979},"240":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":2.449489742783178},"30":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":2.6457513110645907},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":2.23606797749979},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"6":{"tf":1.0},"74":{"tf":2.0},"76":{"tf":1.4142135623730951},"79":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"85":{"tf":2.449489742783178},"88":{"tf":2.449489742783178},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"40":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}}}}},".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"25":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":1,"docs":{"29":{"tf":1.0}}}},"[":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"234":{"tf":1.0},"241":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"220":{"tf":1.0},"238":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"233":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.0},"77":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":32,"docs":{"10":{"tf":1.0},"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"17":{"tf":1.0},"180":{"tf":1.4142135623730951},"186":{"tf":1.0},"19":{"tf":1.0},"198":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"215":{"tf":1.0},"220":{"tf":1.0},"228":{"tf":2.0},"231":{"tf":1.0},"234":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.7320508075688772},"32":{"tf":1.0},"37":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"t":{"1":{"2":{"df":0,"docs":{},"h":{"3":{"0":{"df":0,"docs":{},"m":{"5":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}}},"4":{"df":0,"docs":{},"m":{"5":{"6":{".":{"7":{"8":{"9":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"230":{"tf":1.0},"233":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"195":{"tf":1.4142135623730951},"231":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":5,"docs":{"110":{"tf":1.0},"224":{"tf":1.0},"246":{"tf":1.0},"63":{"tf":1.0},"81":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"193":{"tf":1.0}}}},"z":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"c":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"213":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"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":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}},"q":{")":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"200":{"tf":1.0}}}}}}},"3":{"df":1,"docs":{"252":{"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":8,"docs":{"205":{"tf":1.0},"206":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"%":{"2":{"0":{"*":{"%":{"2":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"%":{"2":{"0":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"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":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"200":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"92":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":76,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"148":{"tf":2.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.4142135623730951},"155":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"157":{"tf":1.7320508075688772},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"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},"181":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":2.0},"205":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"220":{"tf":1.0},"228":{"tf":1.7320508075688772},"229":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":2.23606797749979},"234":{"tf":2.449489742783178},"236":{"tf":1.7320508075688772},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":2.23606797749979},"28":{"tf":1.0},"30":{"tf":1.4142135623730951},"33":{"tf":2.449489742783178},"34":{"tf":1.4142135623730951},"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.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":2.0},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":2.0},"54":{"tf":2.449489742783178},"55":{"tf":2.23606797749979},"56":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0}}},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"235":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"233":{"tf":1.7320508075688772},"238":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"2":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"0":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.7320508075688772},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"234":{"tf":1.0},"241":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"64":{"tf":1.0},"74":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"r":{"a":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"3":{"2":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"146":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":2,"docs":{"119":{"tf":2.23606797749979},"146":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"w":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"106":{"tf":1.0},"241":{"tf":1.0}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"192":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"239":{"tf":1.4142135623730951},"245":{"tf":1.0},"252":{"tf":1.0},"35":{"tf":1.0},"57":{"tf":1.7320508075688772},"8":{"tf":1.0}},"i":{"df":2,"docs":{"0":{"tf":1.0},"238":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"224":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"67":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"238":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"207":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"81":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"215":{"tf":1.0},"220":{"tf":1.0},"63":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"193":{"tf":1.0},"205":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"240":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"d":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"13":{"tf":1.4142135623730951},"155":{"tf":1.0},"16":{"tf":1.0},"212":{"tf":1.0},"228":{"tf":1.0},"235":{"tf":1.4142135623730951},"239":{"tf":1.0},"243":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"237":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":7,"docs":{"171":{"tf":1.7320508075688772},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"245":{"tf":1.0},"56":{"tf":3.4641016151377544}}}}}},"d":{"df":2,"docs":{"219":{"tf":1.0},"222":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"u":{"c":{"df":2,"docs":{"231":{"tf":1.0},"237":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"187":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":210,"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},"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},"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.4142135623730951},"191":{"tf":1.0},"192":{"tf":2.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},"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},"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},"224":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"253":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"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},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"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.4142135623730951},"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.4142135623730951},"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}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":2.449489742783178}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"203":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"df":1,"docs":{"104":{"tf":1.0}},"t":{"df":9,"docs":{"103":{"tf":1.0},"148":{"tf":1.4142135623730951},"167":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"230":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"238":{"tf":1.0},"29":{"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":2,"docs":{"14":{"tf":1.0},"238":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"194":{"tf":1.0},"20":{"tf":1.0},"241":{"tf":2.0},"57":{"tf":2.0},"58":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":2.449489742783178}}}},"df":0,"docs":{},"v":{"df":2,"docs":{"157":{"tf":1.0},"234":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":11,"docs":{"117":{"tf":1.0},"13":{"tf":1.0},"179":{"tf":1.4142135623730951},"191":{"tf":1.0},"235":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"57":{"tf":1.0},"60":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.7320508075688772}},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":1,"docs":{"104":{"tf":2.0}},"e":{"(":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"a":{"df":2,"docs":{"237":{"tf":1.0},"239":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"195":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":10,"docs":{"115":{"tf":1.0},"149":{"tf":1.0},"170":{"tf":1.0},"179":{"tf":1.0},"217":{"tf":1.0},"49":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"54":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":13,"docs":{"186":{"tf":1.0},"197":{"tf":1.0},"215":{"tf":1.4142135623730951},"22":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":2.23606797749979},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"203":{"tf":1.0},"204":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"127":{"tf":1.0},"241":{"tf":1.0},"35":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"181":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"t":{"df":3,"docs":{"10":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":25,"docs":{"132":{"tf":1.4142135623730951},"16":{"tf":1.0},"215":{"tf":1.0},"222":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"249":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"64":{"tf":1.0},"81":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"246":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":73,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":2.0},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"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},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.7320508075688772},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"220":{"tf":1.0},"222":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"238":{"tf":1.0},"249":{"tf":1.0},"34":{"tf":1.7320508075688772},"38":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":2.23606797749979},"57":{"tf":2.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":2.0},"63":{"tf":1.0},"76":{"tf":2.0},"84":{"tf":1.0},"85":{"tf":2.8284271247461903},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.7320508075688772},"92":{"tf":2.0},"93":{"tf":2.0},"94":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"233":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"110":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}}}}}}},"f":{"c":{"df":2,"docs":{"215":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"234":{"tf":1.0}}}},"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":7,"docs":{"102":{"tf":1.0},"230":{"tf":1.4142135623730951},"232":{"tf":1.0},"239":{"tf":1.0},"54":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"m":{"df":2,"docs":{"195":{"tf":1.7320508075688772},"4":{"tf":1.0}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":4,"docs":{"227":{"tf":1.0},"248":{"tf":1.0},"252":{"tf":2.0},"30":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"57":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"60":{"tf":3.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"230":{"tf":1.0}}},"t":{"df":1,"docs":{"169":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"187":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":1,"docs":{"120":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"w":{"df":30,"docs":{"159":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":2.449489742783178},"18":{"tf":1.0},"181":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"228":{"tf":1.4142135623730951},"232":{"tf":1.0},"238":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"245":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"63":{"tf":1.0},"74":{"tf":1.4142135623730951},"76":{"tf":2.6457513110645907},"77":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":2.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"229":{"tf":1.0}}}},"n":{"df":9,"docs":{"0":{"tf":1.0},"13":{"tf":1.0},"154":{"tf":1.0},"195":{"tf":2.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"32":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.4142135623730951}}}},"å":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"253":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"3":{"df":2,"docs":{"241":{"tf":1.0},"250":{"tf":1.0}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.0},"244":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"13":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"40":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":4,"docs":{"131":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"35":{"tf":1.0}},"s":{"_":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":10,"docs":{"117":{"tf":1.7320508075688772},"203":{"tf":1.0},"218":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"39":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"79":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":14,"docs":{"110":{"tf":1.0},"158":{"tf":1.0},"197":{"tf":1.0},"220":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"220":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"u":{"c":{"df":4,"docs":{"205":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"235":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"57":{"tf":3.3166247903554},"58":{"tf":1.7320508075688772},"59":{"tf":3.0},"60":{"tf":2.8284271247461903},"61":{"tf":1.4142135623730951}}}}}}}}},"w":{"df":2,"docs":{"233":{"tf":1.0},"241":{"tf":1.0}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"180":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"216":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"228":{"tf":1.0},"81":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"237":{"tf":1.0}}}},"n":{"df":1,"docs":{"171":{"tf":1.0}}},"r":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":14,"docs":{"181":{"tf":2.8284271247461903},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"20":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":2.8284271247461903},"24":{"tf":1.0},"34":{"tf":1.0},"76":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"12":{"tf":1.0},"167":{"tf":1.0},"181":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.4142135623730951},"24":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"230":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"60":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"21":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":3,"docs":{"122":{"tf":1.0},"184":{"tf":1.0},"35":{"tf":1.0}},"e":{"a":{"df":2,"docs":{"117":{"tf":1.0},"230":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"tf":1.0}}}}},"df":20,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"117":{"tf":1.7320508075688772},"123":{"tf":1.0},"133":{"tf":1.4142135623730951},"139":{"tf":1.0},"147":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"238":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"71":{"tf":1.0},"84":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"148":{"tf":1.0},"37":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":14,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"170":{"tf":1.0},"204":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0}},"m":{"df":1,"docs":{"16":{"tf":1.0}}},"n":{"df":5,"docs":{"155":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"46":{"tf":1.0},"56":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":143,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"102":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":2.449489742783178},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"13":{"tf":2.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":2.23606797749979},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":2.0},"15":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"16":{"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},"169":{"tf":1.7320508075688772},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":2.23606797749979},"173":{"tf":2.0},"174":{"tf":1.7320508075688772},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"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.4142135623730951},"185":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"19":{"tf":1.0},"190":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"205":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"218":{"tf":1.0},"220":{"tf":1.0},"222":{"tf":1.4142135623730951},"23":{"tf":1.0},"236":{"tf":1.4142135623730951},"245":{"tf":1.0},"34":{"tf":2.23606797749979},"35":{"tf":3.1622776601683795},"37":{"tf":2.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":2.23606797749979},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":2.23606797749979},"56":{"tf":2.449489742783178},"58":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"64":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":2.0},"76":{"tf":2.0},"77":{"tf":2.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"85":{"tf":2.449489742783178},"86":{"tf":3.0},"87":{"tf":1.7320508075688772},"88":{"tf":2.449489742783178},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":2.6457513110645907},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"97":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"f":{"df":2,"docs":{"198":{"tf":1.0},"237":{"tf":1.0}}},"l":{"df":1,"docs":{"240":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"58":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"222":{"tf":1.4142135623730951},"32":{"tf":1.0}}}}}}},"df":5,"docs":{"15":{"tf":1.4142135623730951},"167":{"tf":1.0},"233":{"tf":1.4142135623730951},"238":{"tf":1.0},"245":{"tf":1.0}}}},"n":{"d":{"df":4,"docs":{"199":{"tf":1.4142135623730951},"202":{"tf":1.0},"222":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"13":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"88":{"tf":1.0},"90":{"tf":1.0}}}}},"t":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"209":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":2.0},"24":{"tf":1.0},"250":{"tf":1.7320508075688772},"40":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"233":{"tf":1.0}}},"n":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"235":{"tf":1.0}},"s":{"df":1,"docs":{"235":{"tf":1.0}}}}}},"v":{"df":4,"docs":{"110":{"tf":1.0},"231":{"tf":1.0},"246":{"tf":1.0},"63":{"tf":1.0}}}},"t":{"df":15,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"175":{"tf":1.0},"219":{"tf":1.0},"24":{"tf":2.23606797749979},"249":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":2.23606797749979},"29":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"47":{"tf":1.0},"50":{"tf":1.7320508075688772},"54":{"tf":2.0},"56":{"tf":1.0},"91":{"tf":1.0}}}},"h":{"a":{"1":{"(":{"'":{"2":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"145":{"tf":1.7320508075688772}}},"df":1,"docs":{"145":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}},"p":{"df":1,"docs":{"9":{"tf":1.0}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"40":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"139":{"tf":1.0},"22":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"w":{"df":1,"docs":{"13":{"tf":1.0}},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"233":{"tf":1.0},"236":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"85":{"tf":2.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":1,"docs":{"120":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"159":{"tf":1.0},"25":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"169":{"tf":1.0},"221":{"tf":1.0},"233":{"tf":1.0},"29":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"201":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"238":{"tf":1.0},"33":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"187":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"230":{"tf":1.0},"233":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.0},"55":{"tf":1.0}}}}}}}},"n":{"df":1,"docs":{"120":{"tf":1.0}},"g":{"df":0,"docs":{},"l":{"df":16,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"180":{"tf":1.0},"201":{"tf":1.0},"213":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":1.4142135623730951},"45":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"76":{"tf":1.4142135623730951},"87":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}},"h":{"df":1,"docs":{"120":{"tf":1.0}}}},"t":{"df":1,"docs":{"234":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"247":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"d":{"a":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"184":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"252":{"tf":1.0}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"19":{"tf":1.0},"230":{"tf":1.0}}}},"v":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"241":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"229":{"tf":1.0},"77":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"235":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":4,"docs":{"106":{"tf":1.0},"21":{"tf":1.0},"228":{"tf":1.0},"240":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"228":{"tf":1.0},"235":{"tf":1.0},"35":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"238":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"155":{"tf":1.0},"34":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":12,"docs":{"21":{"tf":1.7320508075688772},"233":{"tf":1.0},"234":{"tf":1.0},"241":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"58":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}},"i":{"df":15,"docs":{"117":{"tf":1.4142135623730951},"120":{"tf":1.0},"131":{"tf":1.0},"179":{"tf":1.0},"195":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"229":{"tf":1.0},"253":{"tf":1.0},"29":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"76":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"l":{"'":{"df":1,"docs":{"21":{"tf":1.0}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"167":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0}}}}}}},":":{"2":{"0":{"1":{"1":{"df":8,"docs":{"149":{"tf":1.7320508075688772},"156":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"233":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"241":{"tf":1.0},"245":{"tf":1.0}}},"6":{"df":3,"docs":{"238":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}},"2":{"3":{"df":4,"docs":{"233":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{"df":2,"docs":{"238":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":203,"docs":{"0":{"tf":1.0},"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":2.8284271247461903},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.4142135623730951},"120":{"tf":2.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.4142135623730951},"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},"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.7320508075688772},"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.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.4142135623730951},"17":{"tf":1.4142135623730951},"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},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":2.8284271247461903},"200":{"tf":1.0},"21":{"tf":3.1622776601683795},"216":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":3.4641016151377544},"234":{"tf":4.795831523312719},"238":{"tf":2.449489742783178},"24":{"tf":1.4142135623730951},"241":{"tf":1.0},"245":{"tf":2.23606797749979},"246":{"tf":1.0},"25":{"tf":1.0},"252":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":2.0},"34":{"tf":1.7320508075688772},"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.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":2.0},"69":{"tf":2.0},"7":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"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.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"'":{"df":4,"docs":{"120":{"tf":1.0},"175":{"tf":1.0},"234":{"tf":1.0},"56":{"tf":1.0}}},"df":5,"docs":{"110":{"tf":1.0},"21":{"tf":1.4142135623730951},"234":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"35":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"229":{"tf":1.0}}},"i":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"193":{"tf":1.0},"199":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"'":{"df":1,"docs":{"149":{"tf":1.0}}},"df":18,"docs":{"120":{"tf":1.4142135623730951},"160":{"tf":1.0},"169":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"44":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":10,"docs":{"106":{"tf":1.0},"12":{"tf":1.0},"149":{"tf":1.4142135623730951},"159":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"204":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"234":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":7,"docs":{"13":{"tf":1.0},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"233":{"tf":1.7320508075688772},"245":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"18":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"220":{"tf":1.4142135623730951},"222":{"tf":2.449489742783178},"228":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"58":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.0}}}}}}},"i":{"c":{"df":5,"docs":{"186":{"tf":1.0},"220":{"tf":1.0},"238":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"215":{"tf":1.4142135623730951},"76":{"tf":2.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"93":{"tf":1.0}}}}},"y":{"df":1,"docs":{"238":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"190":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"16":{"tf":1.0},"194":{"tf":1.0},"230":{"tf":1.4142135623730951},"238":{"tf":1.0},"29":{"tf":1.0},"6":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":1,"docs":{"229":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":11,"docs":{"194":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":2.6457513110645907},"234":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":2.23606797749979},"241":{"tf":1.0},"246":{"tf":1.0},"250":{"tf":2.449489742783178},"6":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":11,"docs":{"0":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"235":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0}}},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"214":{"tf":1.4142135623730951},"220":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0}},"e":{"d":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"214":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"'":{"%":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":1.0}}},"y":{"/":{"%":{"df":0,"docs":{},"m":{"/":{"%":{"d":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"122":{"tf":1.7320508075688772},"148":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"241":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"185":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":30,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"145":{"tf":1.0},"147":{"tf":2.23606797749979},"222":{"tf":1.4142135623730951},"224":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"33":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"21":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"15":{"tf":1.4142135623730951},"167":{"tf":1.0},"181":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"238":{"tf":1.0},"245":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"u":{"b":{"df":2,"docs":{"169":{"tf":1.0},"55":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"205":{"tf":1.0},"220":{"tf":1.7320508075688772}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"92":{"tf":2.23606797749979},"93":{"tf":2.23606797749979},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"175":{"tf":1.0},"203":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"217":{"tf":1.0},"218":{"tf":1.0}}}}}},"r":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"105":{"tf":1.0},"106":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"71":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"149":{"tf":1.4142135623730951},"164":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"233":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"222":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":7,"docs":{"148":{"tf":1.0},"181":{"tf":1.4142135623730951},"22":{"tf":1.0},"220":{"tf":1.0},"28":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"13":{"tf":1.0}},"i":{"df":2,"docs":{"229":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":3,"docs":{"157":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"m":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"128":{"tf":1.0},"134":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"128":{"tf":2.23606797749979},"129":{"tf":1.0},"45":{"tf":1.0}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":10,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"140":{"tf":1.0},"156":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":15,"docs":{"150":{"tf":1.0},"175":{"tf":1.0},"186":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.0},"39":{"tf":1.0},"80":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"197":{"tf":1.0},"230":{"tf":1.0},"250":{"tf":1.0}}},"f":{"a":{"c":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":7,"docs":{"106":{"tf":1.0},"112":{"tf":1.4142135623730951},"172":{"tf":1.0},"27":{"tf":1.0},"64":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"x":{"df":7,"docs":{"125":{"tf":1.0},"158":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"245":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":7,"docs":{"13":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"236":{"tf":1.0}}}}}},"df":7,"docs":{"155":{"tf":2.0},"158":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.0},"235":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"t":{"1":{"df":6,"docs":{"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0}}},"a":{"b":{"df":0,"docs":{},"l":{"df":29,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"157":{"tf":1.0},"168":{"tf":1.4142135623730951},"170":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"185":{"tf":1.0},"190":{"tf":1.4142135623730951},"216":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.4142135623730951},"238":{"tf":2.0},"247":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.7320508075688772},"37":{"tf":2.449489742783178},"42":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.0},"76":{"tf":1.7320508075688772}},"e":{"'":{"df":1,"docs":{"76":{"tf":1.0}}},"_":{"c":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":3,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"182":{"tf":1.7320508075688772},"183":{"tf":1.0},"184":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":3,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":19,"docs":{"117":{"tf":1.0},"130":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.7320508075688772},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"40":{"tf":1.0},"55":{"tf":1.0},"76":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"231":{"tf":1.0},"251":{"tf":1.0}}}},"n":{"df":1,"docs":{"120":{"tf":1.0}},"h":{"df":1,"docs":{"120":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"df":2,"docs":{"197":{"tf":1.0},"215":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"21":{"tf":1.0}}},"t":{"df":1,"docs":{"252":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"234":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"23":{"tf":1.0}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"230":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"241":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"231":{"tf":1.0},"234":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"37":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}},"df":4,"docs":{"149":{"tf":1.0},"230":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0}}}}}},"n":{"d":{"df":1,"docs":{"34":{"tf":1.0}}},"df":1,"docs":{"230":{"tf":1.0}},"t":{"a":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"231":{"tf":1.0},"252":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"56":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":2,"docs":{"201":{"tf":1.0},"209":{"tf":2.0}}}}},"df":0,"docs":{}},"df":6,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.0},"224":{"tf":1.0},"64":{"tf":1.7320508075688772}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"13":{"tf":1.0},"232":{"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":2,"docs":{"132":{"tf":1.0},"56":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"0":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":3,"docs":{"229":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"228":{"tf":1.0},"229":{"tf":1.0}}},"k":{"df":3,"docs":{"243":{"tf":1.0},"250":{"tf":1.0},"53":{"tf":1.0}}}},"r":{"d":{"df":6,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"139":{"tf":1.0},"234":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"117":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"81":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"15":{"tf":1.0},"172":{"tf":1.0},"205":{"tf":1.0},"241":{"tf":1.0}},"t":{"df":2,"docs":{"40":{"tf":1.0},"74":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"21":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":2,"docs":{"232":{"tf":1.0},"73":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"2":{"tf":1.0},"234":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"df":2,"docs":{"199":{"tf":1.0},"8":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":39,"docs":{"11":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.7320508075688772},"13":{"tf":2.0},"148":{"tf":2.6457513110645907},"149":{"tf":2.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":2.23606797749979},"156":{"tf":2.23606797749979},"157":{"tf":2.0},"158":{"tf":1.7320508075688772},"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},"20":{"tf":1.0},"224":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"230":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":3.0},"236":{"tf":1.4142135623730951},"238":{"tf":2.0},"241":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":2.8284271247461903},"71":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"232":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":2.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":7,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"148":{"tf":1.0},"156":{"tf":1.0},"224":{"tf":1.4142135623730951},"68":{"tf":2.8284271247461903}}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"150":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}}}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"64":{"tf":1.0}}}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"241":{"tf":1.4142135623730951},"250":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"_":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":2,"docs":{"23":{"tf":1.0},"88":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"230":{"tf":1.0},"234":{"tf":1.0},"58":{"tf":1.0},"97":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"237":{"tf":1.0}}}}},"m":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"235":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":4,"docs":{"10":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0}}}},"p":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"21":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":1.7320508075688772},"235":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"r":{"a":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"229":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"243":{"tf":1.0},"246":{"tf":1.7320508075688772},"32":{"tf":2.0},"58":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"/":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"13":{"tf":1.0},"156":{"tf":1.7320508075688772},"228":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.4142135623730951},"238":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"156":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"169":{"tf":1.0}}}},"i":{"df":10,"docs":{"0":{"tf":1.0},"10":{"tf":1.4142135623730951},"168":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"7":{"tf":1.7320508075688772},"8":{"tf":1.0},"9":{"tf":1.4142135623730951}},"m":{"df":1,"docs":{"102":{"tf":2.23606797749979}}},"p":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"232":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"237":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"df":24,"docs":{"139":{"tf":1.0},"140":{"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},"206":{"tf":1.0},"219":{"tf":1.4142135623730951},"229":{"tf":1.0},"230":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.449489742783178},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"244":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"235":{"tf":1.0},"238":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"2":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"210":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"147":{"tf":1.7320508075688772},"235":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":18,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":2.0},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"'":{"df":1,"docs":{"224":{"tf":1.0}}},"df":18,"docs":{"117":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.4142135623730951},"140":{"tf":1.0},"159":{"tf":1.0},"233":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"58":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.7320508075688772},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"97":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"228":{"tf":1.0},"238":{"tf":1.0}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":64,"docs":{"11":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.4142135623730951},"167":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.7320508075688772},"20":{"tf":1.0},"201":{"tf":1.4142135623730951},"202":{"tf":1.7320508075688772},"203":{"tf":2.23606797749979},"204":{"tf":2.0},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.7320508075688772},"224":{"tf":2.449489742783178},"225":{"tf":1.0},"226":{"tf":2.0},"228":{"tf":1.0},"234":{"tf":2.0},"245":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"f":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"2":{"df":0,"docs":{},"u":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}}},"1":{".":{"1":{"2":{"3":{"4":{"5":{"6":{"7":{"8":{"9":{"0":{"1":{"2":{"3":{"4":{"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":{}},"df":0,"docs":{}},"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":{"0":{"1":{"8":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"185":{"tf":1.0},"190":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"137":{"tf":1.7320508075688772}}}}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"=":{"d":{"a":{"df":0,"docs":{},"t":{"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":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"df":1,"docs":{"14":{"tf":1.0}},"i":{"df":1,"docs":{"245":{"tf":1.0}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"246":{"tf":1.0},"9":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"235":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"224":{"tf":1.0}}}}},"r":{"df":11,"docs":{"120":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"20":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.0},"31":{"tf":1.0},"86":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"234":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"0":{"tf":1.0},"228":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"233":{"tf":1.0},"237":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"(":{"'":{"3":{"1":{"3":{"5":{"df":1,"docs":{"147":{"tf":1.0}},"z":{"df":0,"docs":{},"z":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"147":{"tf":2.23606797749979}}}}},"i":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"100":{"tf":1.0},"107":{"tf":2.0}},"e":{"(":{"'":{"a":{"d":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.7320508075688772},"51":{"tf":2.23606797749979},"54":{"tf":2.6457513110645907},"56":{"tf":1.7320508075688772}}}},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}},"t":{"df":1,"docs":{"245":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"144":{"tf":1.0},"229":{"tf":1.0}}}}}},"x":{"df":2,"docs":{"123":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{"'":{"2":{"0":{"2":{"3":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"9":{"7":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"123":{"tf":1.7320508075688772},"148":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"237":{"tf":1.0},"63":{"tf":1.0},"85":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"235":{"tf":1.0},"253":{"tf":1.0},"47":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":3,"docs":{"220":{"tf":1.0},"238":{"tf":1.0},"76":{"tf":1.0}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"[":{"1":{".":{"9":{"9":{"df":2,"docs":{"40":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"40":{"tf":2.23606797749979},"41":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}},"df":2,"docs":{"24":{"tf":2.449489742783178},"27":{"tf":2.23606797749979}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":2.0}}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"194":{"tf":1.0},"6":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"230":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":13,"docs":{"117":{"tf":1.0},"13":{"tf":2.23606797749979},"16":{"tf":1.0},"175":{"tf":1.4142135623730951},"190":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":3.1622776601683795},"243":{"tf":1.0},"25":{"tf":2.0},"26":{"tf":2.0},"27":{"tf":2.0},"29":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":5,"docs":{"149":{"tf":1.0},"16":{"tf":1.0},"195":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"103":{"tf":1.7320508075688772},"147":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":2.0}}}}}}},"r":{"d":{"df":0,"docs":{},"u":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"226":{"tf":1.0}}},"l":{"df":2,"docs":{"201":{"tf":1.0},"216":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"207":{"tf":2.0},"216":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"198":{"tf":1.4142135623730951},"76":{"tf":1.0}}}},"df":69,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"148":{"tf":1.0},"18":{"tf":1.0},"181":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":2.23606797749979},"221":{"tf":1.0},"226":{"tf":1.7320508075688772},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"231":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"25":{"tf":1.0},"252":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"40":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}},"df":30,"docs":{"10":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"15":{"tf":2.0},"16":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"220":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"244":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.0},"252":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0},"76":{"tf":2.0},"8":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"198":{"tf":1.4142135623730951},"215":{"tf":2.0}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"[":{"1":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"_":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"76":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":6,"docs":{"124":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":2,"docs":{"147":{"tf":1.0},"224":{"tf":1.0}}}},"u":{"df":0,"docs":{},"i":{"d":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"'":{"d":{"2":{"c":{"df":0,"docs":{},"e":{"2":{"1":{"c":{"9":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"'":{"d":{"2":{"c":{"df":0,"docs":{},"e":{"2":{"1":{"c":{"9":{"d":{"2":{"6":{"8":{"4":{"0":{"9":{"a":{"b":{"1":{"df":0,"docs":{},"e":{"0":{"4":{"9":{"df":0,"docs":{},"e":{"1":{"2":{"0":{"0":{"b":{"df":0,"docs":{},"f":{"a":{"4":{"7":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{"'":{"d":{"2":{"c":{"df":0,"docs":{},"e":{"2":{"1":{"c":{"9":{"d":{"2":{"6":{"8":{"4":{"0":{"9":{"a":{"b":{"1":{"df":0,"docs":{},"e":{"0":{"4":{"9":{"df":0,"docs":{},"e":{"1":{"2":{"0":{"0":{"b":{"df":0,"docs":{},"f":{"a":{"4":{"7":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"'":{"d":{"2":{"c":{"df":0,"docs":{},"e":{"2":{"1":{"c":{"9":{"d":{"2":{"6":{"8":{"4":{"0":{"9":{"a":{"b":{"1":{"df":0,"docs":{},"e":{"0":{"4":{"9":{"df":0,"docs":{},"e":{"1":{"2":{"0":{"0":{"b":{"df":0,"docs":{},"f":{"a":{"4":{"7":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"144":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"144":{"tf":2.6457513110645907},"226":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"3":{".":{"0":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"81":{"tf":2.0}},"i":{"d":{"df":2,"docs":{"12":{"tf":1.0},"167":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":67,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.0},"127":{"tf":1.7320508075688772},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"145":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"180":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"224":{"tf":1.0},"23":{"tf":1.7320508075688772},"233":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"37":{"tf":2.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"48":{"tf":2.23606797749979},"56":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"/":{"@":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"226":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}},"t":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}},"df":5,"docs":{"195":{"tf":1.7320508075688772},"198":{"tf":1.0},"29":{"tf":2.0},"35":{"tf":1.0},"4":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"df":2,"docs":{"199":{"tf":1.0},"201":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":5,"docs":{"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"241":{"tf":1.4142135623730951}}},"s":{"a":{"df":2,"docs":{"143":{"tf":1.0},"18":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"110":{"tf":1.0},"13":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"230":{"tf":1.0}},"i":{"df":1,"docs":{"230":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"143":{"tf":1.0},"18":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"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":{"184":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"184":{"tf":1.4142135623730951},"186":{"tf":2.0},"187":{"tf":3.3166247903554},"188":{"tf":2.449489742783178},"20":{"tf":1.0},"28":{"tf":1.0},"55":{"tf":1.0}}}},"k":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"16":{"tf":1.0}}},"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"13":{"tf":1.4142135623730951},"157":{"tf":1.0},"236":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":3,"docs":{"171":{"tf":1.0},"2":{"tf":1.0},"56":{"tf":1.0}}},"l":{"df":1,"docs":{"233":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"167":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"236":{"tf":1.4142135623730951},"24":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"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":{"233":{"tf":1.0}}}}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":8,"docs":{"0":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"220":{"tf":1.0},"236":{"tf":1.4142135623730951},"238":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"13":{"tf":1.0},"199":{"tf":1.0},"238":{"tf":1.0}}}},"r":{"df":1,"docs":{"230":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"238":{"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":2,"docs":{"231":{"tf":1.0},"234":{"tf":1.4142135623730951}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"71":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"131":{"tf":1.4142135623730951},"233":{"tf":1.0},"35":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"102":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":2.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"174":{"tf":2.0},"175":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"132":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"55":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"16":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"34":{"tf":1.0},"60":{"tf":1.0}}}}}}}},"o":{"b":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":5,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0}}},"l":{"d":{"df":7,"docs":{"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"238":{"tf":2.0},"250":{"tf":1.0},"5":{"tf":1.0},"97":{"tf":2.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"10":{"tf":1.0},"221":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"215":{"tf":1.0},"228":{"tf":1.0},"34":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"207":{"tf":2.0},"216":{"tf":1.0}}}}},"x":{"%":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"'":{"d":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"224":{"tf":1.0},"72":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":30,"docs":{"110":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"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},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"88":{"tf":1.0},"91":{"tf":2.0}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"238":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"21":{"tf":1.0},"241":{"tf":1.4142135623730951}}}}}}},"s":{"d":{":":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"224":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"224":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"204":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"224":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"224":{"tf":1.0}}}}},"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":2,"docs":{"224":{"tf":1.0},"226":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"224":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"216":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":3,"docs":{"158":{"tf":1.0},"179":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"229":{"tf":1.0},"230":{"tf":1.4142135623730951},"241":{"tf":1.0},"71":{"tf":1.0}}}},"df":1,"docs":{"234":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"219":{"tf":1.0},"222":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"13":{"tf":1.0},"195":{"tf":1.0},"234":{"tf":1.0}}}},"r":{"df":2,"docs":{"0":{"tf":1.0},"250":{"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":{"167":{"tf":1.0}}}}}}}}}},"z":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"141":{"tf":1.0},"215":{"tf":1.0},"81":{"tf":1.7320508075688772}}}},"df":1,"docs":{"147":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"3":{"2":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"146":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":4,"docs":{"146":{"tf":1.0},"225":{"tf":1.0},"41":{"tf":1.0},"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"z":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"140":{"tf":1.0},"141":{"tf":1.4142135623730951},"215":{"tf":1.0},"81":{"tf":1.7320508075688772}}}}}}},"title":{"root":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"a":{"df":2,"docs":{"37":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"h":{"a":{"df":2,"docs":{"194":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"246":{"tf":1.0}}}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"232":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"203":{"tf":1.0},"210":{"tf":1.0}}}}}},"l":{"d":{"+":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"204":{"tf":1.0},"212":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"205":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"n":{"d":{".":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"213":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"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":{}}},"x":{"df":2,"docs":{"207":{"tf":1.0},"211":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"242":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"220":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"189":{"tf":1.0},"190":{"tf":1.0},"191":{"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":1,"docs":{"215":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"g":{"df":1,"docs":{"130":{"tf":1.0}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"c":{"df":2,"docs":{"11":{"tf":1.0},"215":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"158":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"65":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"219":{"tf":1.0},"221":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"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":{"100":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"185":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"149":{"tf":1.0}}}},"u":{"d":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"225":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"246":{"tf":1.0},"249":{"tf":1.0}}}},"df":2,"docs":{"183":{"tf":1.0},"38":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"240":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"237":{"tf":1.0},"250":{"tf":1.0},"78":{"tf":1.0}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"161":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"187":{"tf":1.0},"190":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"8":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"153":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"152":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"239":{"tf":1.0}}}},"df":0,"docs":{}},"df":8,"docs":{"135":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"206":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"195":{"tf":1.0},"196":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"18":{"tf":1.0},"238":{"tf":1.0}}}}}}}},"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"188":{"tf":1.0},"191":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"14":{"tf":1.0},"245":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"194":{"tf":1.0},"6":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":3,"docs":{"228":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":2,"docs":{"11":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"30":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"244":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"58":{"tf":1.0},"9":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"50":{"tf":1.0},"53":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"247":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"55":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"220":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"134":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"207":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"235":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"111":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"175":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"248":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"196":{"tf":1.0},"197":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"45":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"208":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"147":{"tf":1.0}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.0},"235":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"246":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":4,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0}}}}},"u":{"b":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"246":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"139":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"165":{"tf":1.0},"166":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"13":{"tf":1.0},"243":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"251":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"221":{"tf":1.0},"23":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"4":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"105":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"66":{"tf":1.0}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"50":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":1,"docs":{"71":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"39":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"253":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"170":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":2,"docs":{"120":{"tf":1.0},"86":{"tf":1.0}}}},"x":{"df":1,"docs":{"127":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":1,"docs":{"127":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"222":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"172":{"tf":1.0},"217":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"167":{"tf":1.0},"169":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"211":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"168":{"tf":1.0},"17":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"149":{"tf":1.0},"150":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}}},"w":{"df":2,"docs":{"151":{"tf":1.0},"241":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"140":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"173":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"118":{"tf":1.0}}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"113":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"168":{"tf":1.0},"49":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"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":{"101":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"249":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"239":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"149":{"tf":1.0},"240":{"tf":1.0}}},"r":{"df":5,"docs":{"198":{"tf":1.0},"50":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"200":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"31":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"117":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"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":1,"docs":{"178":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"179":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"df":5,"docs":{"167":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"149":{"tf":1.0},"160":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"218":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"163":{"tf":1.0},"165":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"246":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"148":{"tf":1.0},"200":{"tf":1.0},"247":{"tf":1.0},"33":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"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":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"171":{"tf":1.0},"56":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"192":{"tf":1.0},"20":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"57":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"249":{"tf":1.0},"44":{"tf":1.0}}}}}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"252":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"57":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.0}}}},"w":{"df":2,"docs":{"170":{"tf":1.0},"76":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"57":{"tf":1.0},"59":{"tf":1.0}}}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"224":{"tf":1.0},"226":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"181":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.0},"35":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"15":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"237":{"tf":1.0},"250":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":3,"docs":{"249":{"tf":1.0},"26":{"tf":1.0},"50":{"tf":1.0}}}},"h":{"a":{"1":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"240":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"l":{":":{"2":{"0":{"1":{"1":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"11":{"tf":1.0},"20":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0},"62":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"237":{"tf":1.0},"250":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"122":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"99":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"164":{"tf":1.0},"166":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":1,"docs":{"128":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"155":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"182":{"tf":1.0},"37":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"64":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":5,"docs":{"148":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"70":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"236":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"150":{"tf":1.0},"80":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"246":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"7":{"tf":1.0}},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":6,"docs":{"135":{"tf":1.0},"202":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":1.0},"62":{"tf":1.0},"81":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"147":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"50":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}}}},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"48":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"184":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"194":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"w":{"df":1,"docs":{"207":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}}); \ No newline at end of file +Object.assign(window.search, {"doc_urls":["index.html#introduction","index.html#elsewhere","tutorial/index.html#tutorial","tutorial/quickstart.html#quickstart","tutorial/quickstart.html#install-endb","tutorial/quickstart.html#run-your-first-query","tutorial/quickstart.html#warning-early-alpha","tutorial/try_it.html#try-it","tutorial/try_it.html#curl","tutorial/try_it.html#example-libraries","tutorial/try_it.html#example-console","tutorial/sql_basics.html#endb-sql-basics","tutorial/sql_basics.html#just-begin","tutorial/sql_basics.html#immutable","tutorial/sql_basics.html#dynamic-joins","tutorial/sql_basics.html#semi-structured-data","tutorial/sql_basics.html#data-migration","tutorial/sql_basics.html#nested-data","tutorial/sql_basics.html#documents","tutorial/sql_basics.html#error-messages","sql/index.html#sql-reference","sql/intention.html#intention","sql/data_manipulation.html#data-manipulation","sql/data_manipulation.html#insert","sql/data_manipulation.html#update","sql/data_manipulation.html#update-patch","sql/data_manipulation.html#update-set-path","sql/data_manipulation.html#update-unset-path","sql/data_manipulation.html#delete","sql/data_manipulation.html#on-conflict-upsert","sql/data_manipulation.html#erase","sql/data_manipulation.html#parameters","sql/data_manipulation.html#transactions","sql/queries.html#queries","sql/queries.html#select-","sql/queries.html#select","sql/queries.html#from","sql/queries.html#alias-tables","sql/queries.html#alias-columns","sql/queries.html#join","sql/queries.html#unnest","sql/queries.html#with-ordinality","sql/queries.html#where-filtering","sql/queries.html#advanced-filtering","sql/queries.html#order-by-sorting-results","sql/queries.html#group-by","sql/queries.html#having","sql/queries.html#limit","sql/queries.html#values-lists","sql/queries.html#objects-lists","sql/queries.html#set-operations-union-intersect-except","sql/queries.html#union","sql/queries.html#intersect","sql/queries.html#except","sql/queries.html#union-compatibility","sql/queries.html#with-common-table-expressions","sql/queries.html#with-recursive","sql/queries.html#repeatable-reads-savepoint-rollback-release","sql/queries.html#minimal-example","sql/queries.html#savepoint","sql/queries.html#rollback","sql/queries.html#release","sql/data_types.html#sql-data-types","sql/data_types.html#null","sql/data_types.html#text-char-varchar","sql/data_types.html#boolean","sql/data_types.html#integer-bigint","sql/data_types.html#real-double","sql/data_types.html#timestamp","sql/data_types.html#date","sql/data_types.html#time","sql/data_types.html#interval-duration","sql/data_types.html#blob-varbinary","sql/data_types.html#array","sql/data_types.html#object","sql/data_types.html#dynamic-literals","sql/data_types.html#row-literals","sql/data_types.html#spread","sql/data_types.html#computed-fields","sql/data_types.html#shorthands","sql/data_types.html#note-on-timezones","sql/data_types.html#note-on-type-widening","sql/operators.html#operators","sql/operators.html#comparison","sql/operators.html#between","sql/operators.html#boolean-operators","sql/operators.html#math","sql/operators.html#bitwise-operators","sql/operators.html#like","sql/operators.html#regexp","sql/operators.html#glob","sql/operators.html#match-containment","sql/operators.html#any-some","sql/operators.html#all","sql/operators.html#exists","sql/operators.html#in","sql/operators.html#not-in","sql/operators.html#-concatenation","sql/functions.html#functions","sql/functions.html#string-functions","sql/functions.html#character_length","sql/functions.html#octet_length","sql/functions.html#trim-ltrim-rtrim","sql/functions.html#lower-upper","sql/functions.html#replace","sql/functions.html#instr","sql/functions.html#substring","sql/functions.html#unicode","sql/functions.html#char","sql/functions.html#concat","sql/functions.html#like","sql/functions.html#collection-functions","sql/functions.html#length","sql/functions.html#object_keys","sql/functions.html#object_values","sql/functions.html#object_entries","sql/functions.html#object_from_entries","sql/functions.html#patch","sql/functions.html#numeric-functions","sql/functions.html#random","sql/functions.html#math","sql/functions.html#datetime-functions","sql/functions.html#strftime","sql/functions.html#unixepoch","sql/functions.html#julianday","sql/functions.html#extract","sql/functions.html#aggregate-functions","sql/functions.html#min-max","sql/functions.html#sum","sql/functions.html#total","sql/functions.html#avg","sql/functions.html#count","sql/functions.html#array_agg","sql/functions.html#group_concat","sql/functions.html#filter","sql/functions.html#data-type-functions","sql/functions.html#cast","sql/functions.html#typeof","sql/functions.html#conditional-functions","sql/functions.html#iif","sql/functions.html#nullif","sql/functions.html#coalesce","sql/functions.html#encoding-functions","sql/functions.html#base64","sql/functions.html#uuid","sql/functions.html#sha1","sql/functions.html#randomblob-zeroblob","sql/functions.html#hex-unhex","sql/time_queries.html#time-queries","sql/time_queries.html#note-on-sql2011-closed-open-period-model","sql/time_queries.html#note-on-timezones","sql/time_queries.html#now","sql/time_queries.html#current_timestamp","sql/time_queries.html#current_time","sql/time_queries.html#current_date","sql/time_queries.html#system-time","sql/time_queries.html#as-of-time-travel","sql/time_queries.html#all-time-omniscience","sql/time_queries.html#between","sql/time_queries.html#from--to","sql/time_queries.html#period-predicates","sql/time_queries.html#contains","sql/time_queries.html#overlaps","sql/time_queries.html#precedes","sql/time_queries.html#succeeds","sql/time_queries.html#immediately-precedes","sql/time_queries.html#immediately-succeeds","sql/path_navigation.html#path-navigation","sql/path_navigation.html#nested-objects","sql/path_navigation.html#root-navigation","sql/path_navigation.html#row-literals","sql/path_navigation.html#recursive-paths","sql/path_navigation.html#named-child","sql/path_navigation.html#numbered-child","sql/path_navigation.html#wildcard-child","sql/path_navigation.html#path-functions","sql/path_navigation.html#path_set","sql/path_navigation.html#path_replace","sql/path_navigation.html#path_insert","sql/path_navigation.html#path_remove","sql/path_navigation.html#path_extract","sql/schema.html#schema","sql/schema.html#tables","sql/schema.html#columns","sql/schema.html#views","sql/schema.html#check-constraints","sql/views.html#views","sql/views.html#create-view","sql/views.html#drop-view","sql/assertions.html#assertions","sql/assertions.html#create-assertion","sql/assertions.html#drop-assertion","reference/index.html#reference","reference/installation.html#installation","reference/installation.html#warning-early-alpha","reference/installation.html#installing-from-docker-hub","reference/installation.html#installing-from-git-docker","reference/installation.html#installing-from-git-binary","reference/operation.html#operation","reference/http_api.html#http-api","reference/http_api.html#http-query-parameters","reference/http_api.html#http-verbs","reference/http_api.html#content-types","reference/http_api.html#applicationjson","reference/http_api.html#applicationldjson","reference/http_api.html#applicationsql","reference/http_api.html#multipartform-data","reference/http_api.html#applicationx-www-form-urlencoded","reference/http_api.html#accept-headers","reference/http_api.html#textcsv","reference/http_api.html#applicationjson-1","reference/http_api.html#applicationx-ndjson","reference/http_api.html#applicationldjson-1","reference/http_api.html#applicationvndapachearrowfile","reference/http_api.html#applicationvndapachearrowstream","reference/http_api.html#http-basic-authentication","reference/http_api.html#parameters","reference/http_api.html#named-parameters","reference/http_api.html#positional-parameters","reference/http_api.html#bulk-parameters","reference/http_api.html#apache-arrow-file-parameters","reference/http_api.html#bulk-insert","reference/http_api.html#multiple-statements","reference/data_types.html#data-types","reference/data_types.html#scalars","reference/data_types.html#collections","reference/data_types.html#unsupported-scalar-types","appendix/index.html#appendix","appendix/what.html#what-is-endatabas","appendix/what.html#who-wants-one-database","appendix/what.html#when-is-one-database-possible","appendix/why.html#why-endatabas","appendix/why.html#what-is-endatabas-anyway","appendix/why.html#history","appendix/why.html#why-sql","appendix/why.html#why-full-history","appendix/why.html#why-a-timeline","appendix/why.html#why-separation-of-storage-and-compute","appendix/why.html#why-documents","appendix/why.html#why-one-database","appendix/why.html#why-commercial-open-source","appendix/why.html#why-now","appendix/architecture.html#architecture","appendix/architecture.html#immutable","appendix/architecture.html#erasure","appendix/architecture.html#dynamic-sql","appendix/architecture.html#columnar-hybrid-transactional-analytic-processing-htap","appendix/architecture.html#query-execution","appendix/architecture.html#future","appendix/architecture.html#columnar-olap-result-sets","appendix/architecture.html#cloud-separation-of-storage-from-compute","appendix/architecture.html#adaptive-indexing","appendix/roadmap.html#roadmap","appendix/license.html#license"],"index":{"documentStore":{"docInfo":{"0":{"body":31,"breadcrumbs":2,"title":1},"1":{"body":7,"breadcrumbs":2,"title":1},"10":{"body":42,"breadcrumbs":4,"title":2},"100":{"body":13,"breadcrumbs":4,"title":1},"101":{"body":13,"breadcrumbs":4,"title":1},"102":{"body":25,"breadcrumbs":6,"title":3},"103":{"body":17,"breadcrumbs":5,"title":2},"104":{"body":16,"breadcrumbs":4,"title":1},"105":{"body":15,"breadcrumbs":4,"title":1},"106":{"body":32,"breadcrumbs":4,"title":1},"107":{"body":12,"breadcrumbs":4,"title":1},"108":{"body":13,"breadcrumbs":4,"title":1},"109":{"body":11,"breadcrumbs":4,"title":1},"11":{"body":25,"breadcrumbs":7,"title":3},"110":{"body":35,"breadcrumbs":3,"title":0},"111":{"body":0,"breadcrumbs":5,"title":2},"112":{"body":26,"breadcrumbs":4,"title":1},"113":{"body":12,"breadcrumbs":4,"title":1},"114":{"body":12,"breadcrumbs":4,"title":1},"115":{"body":20,"breadcrumbs":4,"title":1},"116":{"body":18,"breadcrumbs":4,"title":1},"117":{"body":54,"breadcrumbs":4,"title":1},"118":{"body":0,"breadcrumbs":5,"title":2},"119":{"body":7,"breadcrumbs":4,"title":1},"12":{"body":30,"breadcrumbs":5,"title":1},"120":{"body":62,"breadcrumbs":4,"title":1},"121":{"body":0,"breadcrumbs":5,"title":2},"122":{"body":23,"breadcrumbs":4,"title":1},"123":{"body":19,"breadcrumbs":4,"title":1},"124":{"body":21,"breadcrumbs":4,"title":1},"125":{"body":53,"breadcrumbs":4,"title":1},"126":{"body":0,"breadcrumbs":5,"title":2},"127":{"body":33,"breadcrumbs":5,"title":2},"128":{"body":21,"breadcrumbs":4,"title":1},"129":{"body":11,"breadcrumbs":4,"title":1},"13":{"body":95,"breadcrumbs":5,"title":1},"130":{"body":15,"breadcrumbs":4,"title":1},"131":{"body":37,"breadcrumbs":4,"title":1},"132":{"body":43,"breadcrumbs":4,"title":1},"133":{"body":28,"breadcrumbs":4,"title":1},"134":{"body":12,"breadcrumbs":4,"title":1},"135":{"body":0,"breadcrumbs":6,"title":3},"136":{"body":16,"breadcrumbs":4,"title":1},"137":{"body":14,"breadcrumbs":4,"title":1},"138":{"body":0,"breadcrumbs":5,"title":2},"139":{"body":19,"breadcrumbs":4,"title":1},"14":{"body":31,"breadcrumbs":6,"title":2},"140":{"body":14,"breadcrumbs":4,"title":1},"141":{"body":16,"breadcrumbs":4,"title":1},"142":{"body":0,"breadcrumbs":5,"title":2},"143":{"body":22,"breadcrumbs":4,"title":1},"144":{"body":45,"breadcrumbs":4,"title":1},"145":{"body":15,"breadcrumbs":4,"title":1},"146":{"body":25,"breadcrumbs":5,"title":2},"147":{"body":70,"breadcrumbs":5,"title":2},"148":{"body":35,"breadcrumbs":6,"title":2},"149":{"body":30,"breadcrumbs":10,"title":6},"15":{"body":38,"breadcrumbs":7,"title":3},"150":{"body":6,"breadcrumbs":6,"title":2},"151":{"body":10,"breadcrumbs":5,"title":1},"152":{"body":8,"breadcrumbs":5,"title":1},"153":{"body":7,"breadcrumbs":5,"title":1},"154":{"body":16,"breadcrumbs":5,"title":1},"155":{"body":23,"breadcrumbs":6,"title":2},"156":{"body":21,"breadcrumbs":6,"title":2},"157":{"body":20,"breadcrumbs":6,"title":2},"158":{"body":26,"breadcrumbs":5,"title":1},"159":{"body":22,"breadcrumbs":4,"title":0},"16":{"body":52,"breadcrumbs":6,"title":2},"160":{"body":5,"breadcrumbs":6,"title":2},"161":{"body":25,"breadcrumbs":5,"title":1},"162":{"body":26,"breadcrumbs":5,"title":1},"163":{"body":20,"breadcrumbs":5,"title":1},"164":{"body":19,"breadcrumbs":5,"title":1},"165":{"body":21,"breadcrumbs":6,"title":2},"166":{"body":21,"breadcrumbs":6,"title":2},"167":{"body":39,"breadcrumbs":6,"title":2},"168":{"body":20,"breadcrumbs":6,"title":2},"169":{"body":38,"breadcrumbs":6,"title":2},"17":{"body":53,"breadcrumbs":6,"title":2},"170":{"body":22,"breadcrumbs":6,"title":2},"171":{"body":22,"breadcrumbs":6,"title":2},"172":{"body":40,"breadcrumbs":6,"title":2},"173":{"body":44,"breadcrumbs":6,"title":2},"174":{"body":40,"breadcrumbs":6,"title":2},"175":{"body":43,"breadcrumbs":6,"title":2},"176":{"body":27,"breadcrumbs":5,"title":1},"177":{"body":31,"breadcrumbs":5,"title":1},"178":{"body":24,"breadcrumbs":5,"title":1},"179":{"body":32,"breadcrumbs":5,"title":1},"18":{"body":30,"breadcrumbs":5,"title":1},"180":{"body":44,"breadcrumbs":5,"title":1},"181":{"body":45,"breadcrumbs":4,"title":1},"182":{"body":15,"breadcrumbs":4,"title":1},"183":{"body":16,"breadcrumbs":4,"title":1},"184":{"body":17,"breadcrumbs":4,"title":1},"185":{"body":20,"breadcrumbs":5,"title":2},"186":{"body":10,"breadcrumbs":4,"title":1},"187":{"body":52,"breadcrumbs":5,"title":2},"188":{"body":9,"breadcrumbs":5,"title":2},"189":{"body":0,"breadcrumbs":4,"title":1},"19":{"body":11,"breadcrumbs":6,"title":2},"190":{"body":36,"breadcrumbs":5,"title":2},"191":{"body":8,"breadcrumbs":5,"title":2},"192":{"body":18,"breadcrumbs":2,"title":1},"193":{"body":27,"breadcrumbs":3,"title":1},"194":{"body":23,"breadcrumbs":5,"title":3},"195":{"body":62,"breadcrumbs":5,"title":3},"196":{"body":11,"breadcrumbs":5,"title":3},"197":{"body":25,"breadcrumbs":5,"title":3},"198":{"body":52,"breadcrumbs":3,"title":1},"199":{"body":64,"breadcrumbs":5,"title":2},"2":{"body":18,"breadcrumbs":2,"title":1},"20":{"body":51,"breadcrumbs":4,"title":2},"200":{"body":25,"breadcrumbs":6,"title":3},"201":{"body":30,"breadcrumbs":5,"title":2},"202":{"body":11,"breadcrumbs":5,"title":2},"203":{"body":72,"breadcrumbs":4,"title":1},"204":{"body":42,"breadcrumbs":4,"title":1},"205":{"body":36,"breadcrumbs":4,"title":1},"206":{"body":46,"breadcrumbs":5,"title":2},"207":{"body":25,"breadcrumbs":7,"title":4},"208":{"body":15,"breadcrumbs":5,"title":2},"209":{"body":31,"breadcrumbs":4,"title":1},"21":{"body":86,"breadcrumbs":4,"title":1},"210":{"body":34,"breadcrumbs":4,"title":1},"211":{"body":42,"breadcrumbs":5,"title":2},"212":{"body":44,"breadcrumbs":4,"title":1},"213":{"body":46,"breadcrumbs":4,"title":1},"214":{"body":43,"breadcrumbs":4,"title":1},"215":{"body":87,"breadcrumbs":6,"title":3},"216":{"body":51,"breadcrumbs":4,"title":1},"217":{"body":71,"breadcrumbs":5,"title":2},"218":{"body":62,"breadcrumbs":5,"title":2},"219":{"body":57,"breadcrumbs":5,"title":2},"22":{"body":31,"breadcrumbs":6,"title":2},"220":{"body":110,"breadcrumbs":7,"title":4},"221":{"body":72,"breadcrumbs":5,"title":2},"222":{"body":55,"breadcrumbs":5,"title":2},"223":{"body":0,"breadcrumbs":5,"title":2},"224":{"body":117,"breadcrumbs":4,"title":1},"225":{"body":26,"breadcrumbs":4,"title":1},"226":{"body":34,"breadcrumbs":6,"title":3},"227":{"body":3,"breadcrumbs":2,"title":1},"228":{"body":99,"breadcrumbs":2,"title":1},"229":{"body":96,"breadcrumbs":3,"title":2},"23":{"body":80,"breadcrumbs":5,"title":1},"230":{"body":102,"breadcrumbs":4,"title":3},"231":{"body":73,"breadcrumbs":2,"title":1},"232":{"body":102,"breadcrumbs":3,"title":2},"233":{"body":394,"breadcrumbs":2,"title":1},"234":{"body":228,"breadcrumbs":2,"title":1},"235":{"body":130,"breadcrumbs":3,"title":2},"236":{"body":61,"breadcrumbs":2,"title":1},"237":{"body":63,"breadcrumbs":4,"title":3},"238":{"body":226,"breadcrumbs":2,"title":1},"239":{"body":45,"breadcrumbs":3,"title":2},"24":{"body":78,"breadcrumbs":5,"title":1},"240":{"body":7,"breadcrumbs":4,"title":3},"241":{"body":120,"breadcrumbs":2,"title":1},"242":{"body":0,"breadcrumbs":3,"title":1},"243":{"body":22,"breadcrumbs":3,"title":1},"244":{"body":13,"breadcrumbs":3,"title":1},"245":{"body":69,"breadcrumbs":4,"title":2},"246":{"body":30,"breadcrumbs":8,"title":6},"247":{"body":23,"breadcrumbs":4,"title":2},"248":{"body":7,"breadcrumbs":3,"title":1},"249":{"body":7,"breadcrumbs":6,"title":4},"25":{"body":36,"breadcrumbs":6,"title":2},"250":{"body":46,"breadcrumbs":6,"title":4},"251":{"body":18,"breadcrumbs":4,"title":2},"252":{"body":19,"breadcrumbs":3,"title":1},"253":{"body":20,"breadcrumbs":3,"title":1},"26":{"body":24,"breadcrumbs":7,"title":3},"27":{"body":25,"breadcrumbs":7,"title":3},"28":{"body":42,"breadcrumbs":5,"title":1},"29":{"body":120,"breadcrumbs":6,"title":2},"3":{"body":0,"breadcrumbs":3,"title":1},"30":{"body":17,"breadcrumbs":5,"title":1},"31":{"body":6,"breadcrumbs":5,"title":1},"32":{"body":18,"breadcrumbs":5,"title":1},"33":{"body":14,"breadcrumbs":4,"title":1},"34":{"body":63,"breadcrumbs":4,"title":1},"35":{"body":77,"breadcrumbs":4,"title":1},"36":{"body":0,"breadcrumbs":3,"title":0},"37":{"body":56,"breadcrumbs":5,"title":2},"38":{"body":52,"breadcrumbs":5,"title":2},"39":{"body":33,"breadcrumbs":4,"title":1},"4":{"body":21,"breadcrumbs":4,"title":2},"40":{"body":80,"breadcrumbs":4,"title":1},"41":{"body":31,"breadcrumbs":4,"title":1},"42":{"body":11,"breadcrumbs":4,"title":1},"43":{"body":6,"breadcrumbs":5,"title":2},"44":{"body":56,"breadcrumbs":6,"title":3},"45":{"body":43,"breadcrumbs":4,"title":1},"46":{"body":27,"breadcrumbs":4,"title":1},"47":{"body":55,"breadcrumbs":4,"title":1},"48":{"body":53,"breadcrumbs":5,"title":2},"49":{"body":49,"breadcrumbs":5,"title":2},"5":{"body":12,"breadcrumbs":5,"title":3},"50":{"body":9,"breadcrumbs":8,"title":5},"51":{"body":23,"breadcrumbs":4,"title":1},"52":{"body":12,"breadcrumbs":4,"title":1},"53":{"body":22,"breadcrumbs":4,"title":1},"54":{"body":82,"breadcrumbs":5,"title":2},"55":{"body":46,"breadcrumbs":6,"title":3},"56":{"body":80,"breadcrumbs":4,"title":1},"57":{"body":50,"breadcrumbs":8,"title":5},"58":{"body":67,"breadcrumbs":5,"title":2},"59":{"body":31,"breadcrumbs":4,"title":1},"6":{"body":23,"breadcrumbs":5,"title":3},"60":{"body":63,"breadcrumbs":4,"title":1},"61":{"body":19,"breadcrumbs":4,"title":1},"62":{"body":0,"breadcrumbs":8,"title":3},"63":{"body":30,"breadcrumbs":6,"title":1},"64":{"body":39,"breadcrumbs":8,"title":3},"65":{"body":5,"breadcrumbs":6,"title":1},"66":{"body":9,"breadcrumbs":7,"title":2},"67":{"body":8,"breadcrumbs":7,"title":2},"68":{"body":32,"breadcrumbs":6,"title":1},"69":{"body":20,"breadcrumbs":6,"title":1},"7":{"body":8,"breadcrumbs":3,"title":1},"70":{"body":19,"breadcrumbs":6,"title":1},"71":{"body":50,"breadcrumbs":7,"title":2},"72":{"body":11,"breadcrumbs":7,"title":2},"73":{"body":48,"breadcrumbs":6,"title":1},"74":{"body":119,"breadcrumbs":6,"title":1},"75":{"body":0,"breadcrumbs":7,"title":2},"76":{"body":78,"breadcrumbs":7,"title":2},"77":{"body":67,"breadcrumbs":6,"title":1},"78":{"body":37,"breadcrumbs":7,"title":2},"79":{"body":24,"breadcrumbs":6,"title":1},"8":{"body":39,"breadcrumbs":3,"title":1},"80":{"body":9,"breadcrumbs":7,"title":2},"81":{"body":68,"breadcrumbs":8,"title":3},"82":{"body":0,"breadcrumbs":4,"title":1},"83":{"body":32,"breadcrumbs":4,"title":1},"84":{"body":37,"breadcrumbs":4,"title":1},"85":{"body":89,"breadcrumbs":5,"title":2},"86":{"body":59,"breadcrumbs":4,"title":1},"87":{"body":24,"breadcrumbs":5,"title":2},"88":{"body":75,"breadcrumbs":3,"title":0},"89":{"body":20,"breadcrumbs":4,"title":1},"9":{"body":15,"breadcrumbs":4,"title":2},"90":{"body":23,"breadcrumbs":4,"title":1},"91":{"body":104,"breadcrumbs":5,"title":2},"92":{"body":36,"breadcrumbs":3,"title":0},"93":{"body":34,"breadcrumbs":3,"title":0},"94":{"body":17,"breadcrumbs":4,"title":1},"95":{"body":27,"breadcrumbs":3,"title":0},"96":{"body":27,"breadcrumbs":3,"title":0},"97":{"body":63,"breadcrumbs":4,"title":1},"98":{"body":0,"breadcrumbs":4,"title":1},"99":{"body":0,"breadcrumbs":5,"title":2}},"docs":{"0":{"body":"Welcome to Endatabas! Endatabas is a SQL document database with complete history. It will store anything, forever. The best way to understand Endatabas is to use it. Head on over to the Quickstart to try it out. If you're not ready to run your first query yet, there's plenty of explanatory material in our What? and Why? documents.","breadcrumbs":"Introduction » Introduction","id":"0","title":"Introduction"},"1":{"body":"If you came to the Endatabas book directly, you may also be interested in: www.endatabas.com github.com/endatabas/endb","breadcrumbs":"Introduction » Elsewhere","id":"1","title":"Elsewhere"},"10":{"body":"Endb does not yet provide an official SQL console. However, you can try Endb SQL (without writing any code) with the example terminal: git clone git@github.com:endatabas/endb.git\ncd endb/examples\n./endb_console.py This example console wraps the Python example library. Assuming you inserted a user with curl above, you can query that table directly: -> SELECT * FROM users; You can use any of these tools (or any other HTTP client you prefer) for the rest of this tutorial.","breadcrumbs":"Tutorial » Try It! » Example Console","id":"10","title":"Example Console"},"100":{"body":"The CHARACTER_LENGTH function returns the number of unicode characters in a string. SELECT CHARACTER_LENGTH('josé');\n-- 4 SELECT CHARACTER_LENGTH('❤️🥫');\n-- 3","breadcrumbs":"SQL Reference » Functions » CHARACTER_LENGTH","id":"100","title":"CHARACTER_LENGTH"},"101":{"body":"The OCTET_LENGTH function returns the length of a string, in bytes (octets). SELECT OCTET_LENGTH('josé');\n-- 5 SELECT OCTET_LENGTH('❤️🥫');\n-- 10","breadcrumbs":"SQL Reference » Functions » OCTET_LENGTH","id":"101","title":"OCTET_LENGTH"},"102":{"body":"The TRIM, LTRIM, and RTRIM functions trim surrounding whitespace, whitespace to the left, and whitespace to the right of a string, respectively. SELECT TRIM(' hello ');\n-- 'hello' SELECT LTRIM(' hello ');\n-- 'hello ' SELECT RTRIM(' hello ');\n-- ' hello'","breadcrumbs":"SQL Reference » Functions » TRIM, LTRIM, RTRIM","id":"102","title":"TRIM, LTRIM, RTRIM"},"103":{"body":"The LOWER and UPPER functions downcase and upcase a string, respectively. SELECT LOWER('Relatable Algebra');\n-- 'relatable algebra' SELECT UPPER('Shouting Calculus');\n-- 'SHOUTING CALCULUS'","breadcrumbs":"SQL Reference » Functions » LOWER, UPPER","id":"103","title":"LOWER, UPPER"},"104":{"body":"The REPLACE function returns the string in the first parameter, with the second parameter (if found) replaced by the third. SELECT REPLACE('Relatable Algebra', 'Rela', 'Infla');","breadcrumbs":"SQL Reference » Functions » REPLACE","id":"104","title":"REPLACE"},"105":{"body":"The INSTR function returns the first character of a substring match on the second parameter, if found, and 0 if it is not found. SELECT INSTR('Coffee', 'ee');","breadcrumbs":"SQL Reference » Functions » INSTR","id":"105","title":"INSTR"},"106":{"body":"The SUBSTRING function returns the substring starting from the index provided as the second parameter. If the (optional) third parameter is provided, the substring will be of that length (or less, if the end of the source string is reached). SUBSTR is a synonym for SUBSTRING. SELECT SUBSTRING('Hello Edgar', 4);\nSELECT SUBSTR('Hello Edgar', 4, 2);","breadcrumbs":"SQL Reference » Functions » SUBSTRING","id":"106","title":"SUBSTRING"},"107":{"body":"The UNICODE function returns an integer unicode value for the first character of the parameter given. SELECT UNICODE('Adam');","breadcrumbs":"SQL Reference » Functions » UNICODE","id":"107","title":"UNICODE"},"108":{"body":"The CHAR function returns a string corresponding to the supplied integer character codes. SELECT CHAR(65, 66, 67);","breadcrumbs":"SQL Reference » Functions » CHAR","id":"108","title":"CHAR"},"109":{"body":"CONCAT is equivalent to the Concatenation Operator (||) except that CONCAT is limited to 2-arity applications and || can be chained.","breadcrumbs":"SQL Reference » Functions » CONCAT","id":"109","title":"CONCAT"},"11":{"body":"If you know SQL, Endb SQL will feel instantly familiar. It is not \"SQL-like\". It is SQL. However, Endb SQL is dynamic , strongly-typed , time-aware , and shuns language embedding . Hopefully it is pleasant to use without feeling foreign.","breadcrumbs":"Tutorial » Endb SQL Basics » Endb SQL Basics","id":"11","title":"Endb SQL Basics"},"110":{"body":"The LIKE function serves the same purpose as the LIKE operator . However, the argument order is (effectively) reversed for the LIKE function, to match the signature used in SQLite. For the function version, the pattern is the first argument. Optionally, an alternative escape character can be provided as a third argument. SELECT * FROM users WHERE LIKE('Stev%', name);\nSELECT * FROM users WHERE LIKE('EdgarX%', name, 'X');","breadcrumbs":"SQL Reference » Functions » LIKE","id":"110","title":"LIKE"},"111":{"body":"","breadcrumbs":"SQL Reference » Functions » Collection Functions","id":"111","title":"Collection Functions"},"112":{"body":"The LENGTH function counts the number of entries in a collection. When supplied with a string, it is a synonym for CHARACTER_LENGTH. SELECT LENGTH([3, 2]);\nSELECT LENGTH({name: 'Peas', price: 8.99, product_no: 77});\nSELECT LENGTH('josé'); NOTE: CARDINALITY is an synonym for LENGTH.","breadcrumbs":"SQL Reference » Functions » LENGTH","id":"112","title":"LENGTH"},"113":{"body":"An object's keys can be selected using OBJECT_KEYS. SELECT OBJECT_KEYS({original_price: 1.99, sale_price: 1.50, coupon_price: 1.40});","breadcrumbs":"SQL Reference » Functions » OBJECT_KEYS","id":"113","title":"OBJECT_KEYS"},"114":{"body":"An object's values can be selected using OBJECT_VALUES. SELECT OBJECT_VALUES({original_price: 1.99, sale_price: 1.50, coupon_price: 1.40});","breadcrumbs":"SQL Reference » Functions » OBJECT_VALUES","id":"114","title":"OBJECT_VALUES"},"115":{"body":"Returns an array of key-value pairs representing the given object. SELECT OBJECT_ENTRIES({a: 1, b: 2, c: 3});\n-- [['a': 1], ['b': 2], ['c': 3]]","breadcrumbs":"SQL Reference » Functions » OBJECT_ENTRIES","id":"115","title":"OBJECT_ENTRIES"},"116":{"body":"Constructs an object from an array of key-value pairs. SELECT OBJECT_FROM_ENTRIES([['a', 1], ['b', 2], ['c', 3]]);\n-- {a: 1, b: 2, c: 3}","breadcrumbs":"SQL Reference » Functions » OBJECT_FROM_ENTRIES","id":"116","title":"OBJECT_FROM_ENTRIES"},"117":{"body":"The PATCH function takes two documents. The document returned is the first document \"patched\" with any fields found in the second document. If the second document does not specify a field, that field is left untouched. If the second document specifies any fields with values of NULL, those fields are removed. SELECT PATCH( {name: 'Salt', nutrition: {sodium: 100, ingredients: 'Kosher Salt'}}, {name: 'Sea Salt', nutrition: {ingredients: NULL}}\n); The PATCH function has an equivalent operator for data manipulation: UPDATE PATCH","breadcrumbs":"SQL Reference » Functions » PATCH","id":"117","title":"PATCH"},"118":{"body":"","breadcrumbs":"SQL Reference » Functions » Numeric Functions","id":"118","title":"Numeric Functions"},"119":{"body":"The RANDOM function returns a random integer. SELECT RANDOM();","breadcrumbs":"SQL Reference » Functions » RANDOM","id":"119","title":"RANDOM"},"12":{"body":"Endb is a schemaless document database. You do not need CREATE TABLE — tables are dynamically created when you insert data. The following SQL is valid as soon as you start endb: INSERT INTO posts (id, user_id, text) VALUES (123, 456, 'Hello World'); SELECT * from posts;","breadcrumbs":"Tutorial » Endb SQL Basics » Just Begin","id":"12","title":"Just Begin"},"120":{"body":"Endb provides standard SQL math functions based on SQLite's collection of math functions: ROUND SIN COS TAN SINH COSH TANH ASIN ACOS ATAN ASINH ACOSH ATANH ATAN2 FLOOR CEILING, CEIL SIGN SQRT EXP POWER, POW LOG, LOG10 LOG2 LN DEGREES RADIANS PI ABS NOTE: Endb follows the choice of most SQL databases and aliases LOG to LOG10 rather than LN (natural log), as specified by the SQL standard. NOTE: Mathematical operators are documented under Operators .","breadcrumbs":"SQL Reference » Functions » Math","id":"120","title":"Math"},"121":{"body":"","breadcrumbs":"SQL Reference » Functions » Date/Time Functions","id":"121","title":"Date/Time Functions"},"122":{"body":"The STRFTIME function formats a date or time value as a string. SELECT strftime('%Y/%m/%d', date('2001-01-01'));\nSELECT strftime('%Y %m %d at %H %M %S', datetime('2001-01-01 03:04:05'));","breadcrumbs":"SQL Reference » Functions » STRFTIME","id":"122","title":"STRFTIME"},"123":{"body":"The UNIXEPOCH function returns the number of seconds since the UNIX epoch. Accepts a DATE, TIMESTAMP, or STRING. SELECT UNIXEPOCH('2023-01-01');\nSELECT UNIXEPOCH(1970-01-01T00:00:00Z);","breadcrumbs":"SQL Reference » Functions » UNIXEPOCH","id":"123","title":"UNIXEPOCH"},"124":{"body":"The JULIANDAY function returns the Julian Day, which is the number of days since noon in UTC on November 24, 4714 B.C. Accepts a DATE, TIMESTAMP, or STRING. SELECT JULIANDAY(1970-01-01);","breadcrumbs":"SQL Reference » Functions » JULIANDAY","id":"124","title":"JULIANDAY"},"125":{"body":"The EXTRACT pseudo-function provides a way to access one named, numerical portion of a date, time, or timestamp. Portions of dates can only be extracted from dates or timestamps. Portions of times can only be extracted from timestamps or times. SELECT EXTRACT(YEAR FROM CURRENT_DATE);\nSELECT EXTRACT(MONTH FROM CURRENT_DATE);\nSELECT EXTRACT(DAY FROM CURRENT_TIMESTAMP);\nSELECT EXTRACT(HOUR FROM CURRENT_TIMESTAMP);\nSELECT EXTRACT(MINUTE FROM CURRENT_TIME);\nSELECT EXTRACT(SECOND FROM CURRENT_TIME); NOTE: EXTRACT is a \"pseudo-function\" because internally it uses custom syntax of the form FROM .","breadcrumbs":"SQL Reference » Functions » EXTRACT","id":"125","title":"EXTRACT"},"126":{"body":"","breadcrumbs":"SQL Reference » Functions » Aggregate Functions","id":"126","title":"Aggregate Functions"},"127":{"body":"The MIN and MAX functions return the minimum and maximum values for an expression, respectively. SELECT MIN(price) FROM products;\nSELECT MAX(price) FROM products; NOTE: MIN and MAX also have non-aggregate equivalents, which are 2-arity. When used that way, they each return the minimum or maximum value of the two values provided.","breadcrumbs":"SQL Reference » Functions » MIN, MAX","id":"127","title":"MIN, MAX"},"128":{"body":"The SUM function returns the sum of all non-null values under the column given as a parameter. SELECT SUM(price) FROM products; If all values for the given column are NULL, SUM returns NULL.","breadcrumbs":"SQL Reference » Functions » SUM","id":"128","title":"SUM"},"129":{"body":"The TOTAL function is equivalent to SUM except that it returns 0.0 in the case where all input values are NULL.","breadcrumbs":"SQL Reference » Functions » TOTAL","id":"129","title":"TOTAL"},"13":{"body":"Endb is immutable, so it does not permit destructive UPDATE or DELETE. For example, if you run an UPDATE, your previous INSERT isn't lost. Before we update the record, we'll make note of the current time, according to the database. (Any time after the INSERT and before the UPDATE would suffice.) SELECT CURRENT_TIMESTAMP;\n-- for the sake of example, let's say this returns 2023-08-17T00:00:00 UPDATE posts SET text = 'Hello Immutable World' WHERE id = 123; SELECT * from posts; You'll note that Hello World from your original insert isn't visible. That's because it only exists in the past and, by default, SELECT will show the state of the database as of now . To see the old version, you can time-travel back to a time when the old record was visible: SELECT * from posts FOR SYSTEM_TIME AS OF 2023-08-17T00:00:00; NOTE: Although there is no DELETE in the traditional sense, there is ERASE, which exists to remove data for user safety and compliance with laws like GDPR.","breadcrumbs":"Tutorial » Endb SQL Basics » Immutable","id":"13","title":"Immutable"},"130":{"body":"The AVG function takes a numerical-type-agnostic average of all values under the column given as a parameter. SELECT AVG(price) FROM products;","breadcrumbs":"SQL Reference » Functions » AVG","id":"130","title":"AVG"},"131":{"body":"The COUNT function returns the count of non-null , non-empty values for the specified column. SELECT COUNT(price) FROM sales; NOTE: Because null/empty values are ignored, the behaviour of COUNT will differ from other SQL dialects. Whether or not COUNT(price) and COUNT(1) are equivalent is dependent on whether the price attribute exists with a non-null value on each document.","breadcrumbs":"SQL Reference » Functions » COUNT","id":"131","title":"COUNT"},"132":{"body":"The ARRAY_AGG function concatenates the results of an expression into an array. The parameter may be ordered within ARRAY_AGG. SELECT ARRAY_AGG(price) FROM products;\nSELECT ARRAY_AGG(name ORDER BY price DESC) FROM products; Note that when operating on arrays, the arrays themselves will be concatenated, not the contents of the arrays. The result will be an array of one higher dimension: SELECT ARRAY_AGG(x.column1) FROM (VALUES ([1,2]), ([3,4])) AS x;\n-- [{'column1': [[1, 2], [3, 4]]}]","breadcrumbs":"SQL Reference » Functions » ARRAY_AGG","id":"132","title":"ARRAY_AGG"},"133":{"body":"The GROUP_CONCAT function returns a string with concatenated non-null values from a column or group. Given a second parameter, It defaults to a comma-delimited list, but the second (optional) parameter can override the delimiter. SELECT GROUP_CONCAT(name) FROM products;\nSELECT GROUP_CONCAT(name, ':') FROM products;","breadcrumbs":"SQL Reference » Functions » GROUP_CONCAT","id":"133","title":"GROUP_CONCAT"},"134":{"body":"All aggregate functions can have a filter applied before aggregation. SELECT SUM(price) FILTER(WHERE price > 20) FROM products;","breadcrumbs":"SQL Reference » Functions » FILTER","id":"134","title":"FILTER"},"135":{"body":"","breadcrumbs":"SQL Reference » Functions » Data Type Functions","id":"135","title":"Data Type Functions"},"136":{"body":"The CAST function forces a value into a particular data type. Note that not all types are cast-compatible with each other. SELECT CAST(price AS INTEGER) FROM products;","breadcrumbs":"SQL Reference » Functions » CAST","id":"136","title":"CAST"},"137":{"body":"The TYPEOF function returns the type of the provided value. SELECT TYPEOF('hi2u');\nSELECT TYPEOF(1.12345678901234);\nSELECT TYPEOF(2018-01-01T00:00:00);","breadcrumbs":"SQL Reference » Functions » TYPEOF","id":"137","title":"TYPEOF"},"138":{"body":"","breadcrumbs":"SQL Reference » Functions » Conditional Functions","id":"138","title":"Conditional Functions"},"139":{"body":"The IIF function is a conditional shorthand. It returns the second parameter if the condition is true and the third parameter if the condition is false. SELECT IIF(price > 5.99, 'Expensive!', 'Cheap') FROM products;","breadcrumbs":"SQL Reference » Functions » IIF","id":"139","title":"IIF"},"14":{"body":"Relationships are also dynamic. You can join any two tables on any two columns. Adding a user with id 456 allows a join with the previous posts table. INSERT INTO users (id, name) VALUES (456, 'Vikram'); SELECT * from posts p JOIN users u ON p.user_id = u.id;","breadcrumbs":"Tutorial » Endb SQL Basics » Dynamic Joins","id":"14","title":"Dynamic Joins"},"140":{"body":"The NULLIF function returns TRUE if the two supplied expressions are equal. SELECT NULLIF(1, 1);\nSELECT NULLIF(1, 'zig');","breadcrumbs":"SQL Reference » Functions » NULLIF","id":"140","title":"NULLIF"},"141":{"body":"The COALESCE function returns its first non-null argument. The following example returns 'zig': SELECT COALESCE(NULL, NULL, 'zig', 'zag');","breadcrumbs":"SQL Reference » Functions » COALESCE","id":"141","title":"COALESCE"},"142":{"body":"","breadcrumbs":"SQL Reference » Functions » Encoding Functions","id":"142","title":"Encoding Functions"},"143":{"body":"The BASE64 function takes a hexadecimal-encoded BLOB and returns a base64-encoded string, or vice-versa. BASE64 roundtrips its own data. There is therefore no BLOBFROMBASE64 function. SELECT BASE64(x'010203');\nSELECT BASE64('AQID');","breadcrumbs":"SQL Reference » Functions » BASE64","id":"143","title":"BASE64"},"144":{"body":"The UUID function returns a universally-unique identifier, as a string. The UUID_BLOB function takes a string UUID and returns a BLOB. The UUID_STR function takes a BLOB UUID and returns a string. When given a parameter of their return type, UUID_BLOB and UUID_STR will format the UUID provided. SELECT UUID();\nSELECT UUID_BLOB('d2ce21c9-d268-409a-b1e0-49e1200bfa47');\nSELECT UUID_STR(x'd2ce21c9d268409ab1e049e1200bfa47'); -- formatting:\nSELECT UUID_BLOB(x'd2ce21c9d268409ab1e049e1200bfa47');\nSELECT UUID_STR('d2ce21c9d268409ab1e049e1200bfa47');","breadcrumbs":"SQL Reference » Functions » UUID","id":"144","title":"UUID"},"145":{"body":"The SHA1 function takes either a hexadecimal-encoded BLOB, a string, or a number. It returns the SHA-1 encoding of that value. SELECT SHA1('2');","breadcrumbs":"SQL Reference » Functions » SHA1","id":"145","title":"SHA1"},"146":{"body":"The RANDOMBLOB function returns a random binary large object of the size given, in bytes. The ZEROBLOB function returns a zeroed-out binary large object of the size given, in bytes. SELECT RANDOMBLOB(32);\nSELECT ZEROBLOB(32);","breadcrumbs":"SQL Reference » Functions » RANDOMBLOB, ZEROBLOB","id":"146","title":"RANDOMBLOB, ZEROBLOB"},"147":{"body":"The HEX function takes a BLOB (or coerces its argument into a UTF-8 string, which in turn is interpreted as a BLOB) and turns the BLOB into an upper-case hexadecimal string. The UNHEX function takes a hexadecimal string and turns it into a BLOB. The hexadecimal string provided must contain character pairs . UNHEX takes an optional second parameter: a string containing non-hexadecimal characters to be ignored in the first parameter. If non-hexadecimal characters are found in the first parameter but not ignored in the second parameter, UNHEX returns NULL. SELECT HEX(15);\n-- '3135' SELECT UNHEX('3135');\n-- b'15' SELECT UNHEX('3135ZZ', 'Z');\n-- b'15' SELECT UNHEX('3135ZZ', 'M');\n-- NULL","breadcrumbs":"SQL Reference » Functions » HEX, UNHEX","id":"147","title":"HEX, UNHEX"},"148":{"body":"To make best use of Time Queries, it is a good idea to review the time-related SQL data types, such as TIMESTAMP, DATE, TIME, and INTERVAL. These are covered in the SQL Data Types section. It is also a good idea to review Endb's other time-related functions, in case they are helpful to you: STRFTIME UNIXEPOCH JULIANDAY","breadcrumbs":"SQL Reference » Time Queries » Time Queries","id":"148","title":"Time Queries"},"149":{"body":"All Endb temporal predicates (CONTAINS, OVERLAPS, PRECEDES, SUCCEEDS, IMMEDIATELY PRECEDES, and IMMEDIATELY SUCCEEDS) follow the SQL:2011 standard's \"closed-open period model\". This means that a period represents all times starting from (and including) the start time up to (but excluding) the end time.","breadcrumbs":"SQL Reference » Time Queries » Note on SQL:2011 closed-open period model","id":"149","title":"Note on SQL:2011 closed-open period model"},"15":{"body":"Endb allows you to insert asymmetrical, jagged data. Let's add another user with more columns. INSERT INTO users (id, name, email) VALUES (789, 'Daniela', 'daniela@endatabas.com'); SELECT * from users; Note that the SELECT * is an implicitly dynamic query. It doesn't have any difficulty with the previous user document, even though it lacked an email column.","breadcrumbs":"Tutorial » Endb SQL Basics » Semi-Structured Data","id":"15","title":"Semi-Structured Data"},"150":{"body":"Endb currently only supports times encoded as UTC.","breadcrumbs":"SQL Reference » Time Queries » Note on timezones","id":"150","title":"Note on timezones"},"151":{"body":"Endb provides access to the current value of the clock \"now\" in multiple date/time configurations.","breadcrumbs":"SQL Reference » Time Queries » Now","id":"151","title":"Now"},"152":{"body":"CURRENT_TIMESTAMP gets the current date and time in UTC. SELECT CURRENT_TIMESTAMP;","breadcrumbs":"SQL Reference » Time Queries » CURRENT_TIMESTAMP","id":"152","title":"CURRENT_TIMESTAMP"},"153":{"body":"CURRENT_TIME gets the current time in UTC. SELECT CURRENT_TIME;","breadcrumbs":"SQL Reference » Time Queries » CURRENT_TIME","id":"153","title":"CURRENT_TIME"},"154":{"body":"CURRENT_DATE gets the current date in UTC. Note that this may be different from your local date, depending on the time of day when your query is run. SELECT CURRENT_DATE;","breadcrumbs":"SQL Reference » Time Queries » CURRENT_DATE","id":"154","title":"CURRENT_DATE"},"155":{"body":"All states an Endb database has ever seen are recorded, immutably. Accessing these prior states is accomplished by querying System Time. System Time is encoded in a special column, which is normally invisible to most queries, named SYSTEM_TIME.","breadcrumbs":"SQL Reference » Time Queries » System Time","id":"155","title":"System Time"},"156":{"body":"Endb permits time-traveling queries with the SQL:2011-compatible AS OF operator. The query will treat the DATE or TIMESTAMP supplied after AS OF as if it were that time now . SELECT * FROM products FOR SYSTEM_TIME AS OF 2023-08-25T00:00:00;","breadcrumbs":"SQL Reference » Time Queries » AS OF (Time Travel)","id":"156","title":"AS OF (Time Travel)"},"157":{"body":"Endb permits time-omniscient queries with the SQL:2011-compatible ALL operator. All states, across the entire history of the relevant tables, are visible to a query suffixed with FOR SYSTEM_TIME ALL: SELECT * FROM products FOR SYSTEM_TIME ALL;","breadcrumbs":"SQL Reference » Time Queries » ALL (Time Omniscience)","id":"157","title":"ALL (Time Omniscience)"},"158":{"body":"The syntax for time-aware BETWEEN is the same as the normal BETWEEN operator . Inspect System Time with the form FOR SYSTEM_TIME BETWEEN x AND y. SELECT * FROM products FOR SYSTEM_TIME BETWEEN 2023-08-24T00:00:00 AND 2023-08-25T00:00:00;","breadcrumbs":"SQL Reference » Time Queries » BETWEEN","id":"158","title":"BETWEEN"},"159":{"body":"Selects rows which fall between the two times, similar to BETWEEN, but is exclusive of both the start and end times. SELECT * FROM products FOR SYSTEM_TIME FROM 2023-08-24T00:00:00 TO 2023-08-30T00:00:00;","breadcrumbs":"SQL Reference » Time Queries » FROM ... TO","id":"159","title":"FROM ... TO"},"16":{"body":"It may seem strange to leave jagged columns lying around. Endb doesn't discourage you from cleaning up your data, if you can: UPDATE users SET email = 'vikram@stockholm.se' WHERE name = 'Vikram'; SELECT * from users; The difference in Endb is that we haven't \"migrated\" the old data — it's still there. If you query for Vikram's user document as of 2 minutes ago, you will see the old record without an email. Queries in Endb always default to as-of-now , which is why the results of the query above shouldn't be surprising.","breadcrumbs":"Tutorial » Endb SQL Basics » Data \"Migration\"","id":"16","title":"Data \"Migration\""},"160":{"body":"The standard SQL:2011 period predicates are available.","breadcrumbs":"SQL Reference » Time Queries » Period Predicates","id":"160","title":"Period Predicates"},"161":{"body":"Returns TRUE if the second period is contained within the first. SELECT {start: 2001-01-01, end: 2001-04-01} CONTAINS {start: 2001-02-01, end: 2001-04-01};","breadcrumbs":"SQL Reference » Time Queries » CONTAINS","id":"161","title":"CONTAINS"},"162":{"body":"Returns TRUE if any part of the first period is found within the second. SELECT {start: 2001-01-01, end: 2001-03-01} OVERLAPS {start: 2001-02-01, end: 2001-04-01};","breadcrumbs":"SQL Reference » Time Queries » OVERLAPS","id":"162","title":"OVERLAPS"},"163":{"body":"Returns TRUE if the first period ends before the second period begins. SELECT 2001-03-01 PRECEDES [2001-04-01T00:00:00Z, 2001-05-01];","breadcrumbs":"SQL Reference » Time Queries » PRECEDES","id":"163","title":"PRECEDES"},"164":{"body":"Returns TRUE if the first period begins after the second period ends. SELECT 2001-06-01 SUCCEEDS [2001-04-01T00:00:00Z, 2001-05-01];","breadcrumbs":"SQL Reference » Time Queries » SUCCEEDS","id":"164","title":"SUCCEEDS"},"165":{"body":"Returns TRUE if the first period ends exactly as the second period begins. SELECT 2001-04-01 IMMEDIATELY PRECEDES [2001-04-01T00:00:00Z, 2001-05-01];","breadcrumbs":"SQL Reference » Time Queries » IMMEDIATELY PRECEDES","id":"165","title":"IMMEDIATELY PRECEDES"},"166":{"body":"Returns TRUE if the first period begins exactly as the second period ends. SELECT 2001-05-01 IMMEDIATELY SUCCEEDS [2001-04-01T00:00:00Z, 2001-05-01];","breadcrumbs":"SQL Reference » Time Queries » IMMEDIATELY SUCCEEDS","id":"166","title":"IMMEDIATELY SUCCEEDS"},"167":{"body":"Because Endb is schemaless and semi-structured, it offers a number of powerful path-nativation primitives inspired by JSONPath , SQL/JSON , and their derivatives in legacy relational databases. You will want to familiarize yourself with Endb's nested data types (arrays and objects) before learning about path navigation. In the examples below, path examples are shown in the SELECT clause, but they are also valid in the WHERE clause.","breadcrumbs":"SQL Reference » Path Navigation » Path Navigation","id":"167","title":"Path Navigation"},"168":{"body":"If you are familiar with arrays and objects, try adding some nested objects to the table paths (the table name is arbitrary). INSERT INTO paths {a: 2, b: {a: 3}, c: [{a: 1}, 2]};","breadcrumbs":"SQL Reference » Path Navigation » Nested Objects","id":"168","title":"Nested Objects"},"169":{"body":"Navigating the root of any document (row) as a tree looks like standard SQL, because it is: SELECT a FROM paths; Similarly, however, it is possible to navigate documents listed in an array: SELECT [{a: 2}, {a: 3}, {b: 4}].a;\n-- [{'a': [2, 3]}] It is also possible to navigate fields of sub-documents (columns of nested rows) with further dot notation: SELECT b.a FROM paths;\n-- [{'a': 3}]","breadcrumbs":"SQL Reference » Path Navigation » Root Navigation","id":"169","title":"Root Navigation"},"17":{"body":"Endb eschews nested json in favour of a native, strongly-typed, document-relational model. INSERT INTO users (id, name, friends) VALUES (123, 'Anastasia', [{name: 'Heikki', country: 'Finland'},{name: 'Amit', country: 'Japan'}]); SELECT users.friends[1] FROM users WHERE id = 123; The users.friends[1] expression above is one of many path expressions inspired by JSONPath , SQL/JSON , and their derivatives in legacy relational databases. A detailed explanation of Endb's arrays and objects is provided in the SQL Reference","breadcrumbs":"Tutorial » Endb SQL Basics » Nested Data","id":"17","title":"Nested Data"},"170":{"body":"It is possible (and helpful) to create a row literal to represent rows returned, so they are easier to navigate. The format of a row literal is {
.* }: SELECT { paths.* } FROM paths; See Row Literal Data Type","breadcrumbs":"SQL Reference » Path Navigation » Row Literals","id":"170","title":"Row Literals"},"171":{"body":"The double dot (..) notation performs a \"deep scan\" by recursively walking the document to match the name given. SELECT { paths.* }..a FROM paths;\n-- [{'a': [2, 3, 1]}] SELECT b..a FROM paths;\n-- [{'a': [3]}]","breadcrumbs":"SQL Reference » Path Navigation » Recursive Paths","id":"171","title":"Recursive Paths"},"172":{"body":"The square bracket notation (['']) performs a lookup of a single descendent child. SELECT { paths.* }['b']['a'] FROM paths;\n-- [{'a': 3}] SELECT b['a'] FROM paths;\n-- [{'a': 3}] Named Children can be combined with recursive paths, though the default recursive path syntax is synonymous with named children: SELECT { paths.* }..a FROM paths;\nSELECT { paths.* }..['a'] FROM paths;\nSELECT b..['a'] FROM paths;","breadcrumbs":"SQL Reference » Path Navigation » Named Child","id":"172","title":"Named Child"},"173":{"body":"The square bracket notation ([]) can also perform indexed lookups of a single descendent child. SELECT { paths.* }['b'][0] FROM paths;\n-- [{'column1': {'a': 3}}] SELECT { paths.* }['c'][1] FROM paths;\n-- [{'column1': 2}] SELECT c[1] FROM paths;\n-- [{'column1': 2}] Numbered Children can be combined with recursive paths. This finds and returns all indexed values, counting backward: SELECT { paths.* }..[-1] FROM paths;\n-- [{'column1': [2]}]","breadcrumbs":"SQL Reference » Path Navigation » Numbered Child","id":"173","title":"Numbered Child"},"174":{"body":"The square bracket notation ([*]) can also perform a wildcard lookup of all descendent children. SELECT [{a: 2}, {a: 3}, {b: 4}, 5][*]; Wildcards can be combined with recursive paths. This finds and returns all values: SELECT { paths.* }..[*] FROM paths;\n-- [{'column1': [2, {'a': 3}, [{'a': 1}, 2], 3, {'a': 1}, 2, 1]}] SELECT c..[*] FROM paths;\n-- [{'column1': [{'a': 1}, 2, 1]}]","breadcrumbs":"SQL Reference » Path Navigation » Wildcard Child","id":"174","title":"Wildcard Child"},"175":{"body":"Path editing is accomplished with an extended path syntax, where each path begins with $. Endb's path editing functions are heavily inspired by SQLite's JSON Functions . Path editing functions add functionality ($, #) to a subset Endb's normal path navigation syntax: path editing functions do not support recursion or wildcards. Path editing functions are available to UPDATE ... SET and UPDATE ... UNSET/REMOVE .","breadcrumbs":"SQL Reference » Path Navigation » Path Functions","id":"175","title":"Path Functions"},"176":{"body":"Takes an object, a path, and a new value. The new value will overwrite existing fields or add a new field if it doesn't already exist. SELECT path_set({a: 2, c: 4}, $.c, [97,96]);\n-- {'a': 2, 'c': [97, 96]}","breadcrumbs":"SQL Reference » Path Navigation » path_set","id":"176","title":"path_set"},"177":{"body":"Takes an object, a path, and a new value. The new value is ignored if the path does not match an existing field. SELECT path_replace({a: 2, c: 4}, $.a, 99);\n-- {'a': 99, 'c': 4} SELECT path_replace({a: 2, c: 4}, $.e, 99);\n-- {'a': 2, 'c': 4}","breadcrumbs":"SQL Reference » Path Navigation » path_replace","id":"177","title":"path_replace"},"178":{"body":"Takes an object, a path, and a new value. The new value is ignored if the path matches an existing field. SELECT path_insert({a: 2, c: 4}, $.e, 99);\n-- {'a': 2, 'c': 4, 'e': 99}","breadcrumbs":"SQL Reference » Path Navigation » path_insert","id":"178","title":"path_insert"},"179":{"body":"Takes an object and a variable number of arguments specifying which paths to remove. If a path is not found, nothing is removed for that argument. # represents the last element in a collection. SELECT path_remove([0,1,2,3,4], $[#-1], $[0]);\n-- [1, 2, 3] SELECT path_remove({x: 25, y: 42}, $.y);\n-- {'x': 25}","breadcrumbs":"SQL Reference » Path Navigation » path_remove","id":"179","title":"path_remove"},"18":{"body":"Because of Endb's native document-relational model, rows are documents and vice-versa. You can use an INSERT statement to add a document directly to the database: INSERT INTO users {id: 890, name: 'Aaron', friends: [{name: 'Jeff', country: 'Canada'},{name: 'Kaia', country: 'Japan'}]};","breadcrumbs":"Tutorial » Endb SQL Basics » Documents","id":"18","title":"Documents"},"180":{"body":"Takes an object and a variable number of path arguments. Returns the value found at each path, if any, otherwise NULL. If only a single path is provided, a scalar is returned. If multiple paths are provided, an array is returned. SELECT path_extract({a: 2, c: [4, 5, {f: 7}]}, $.c[2].f);\n-- 7 SELECT path_extract({a: 2, c: [4, 5], f: 7}, $.x, $.a);\n-- [NULL, 2]","breadcrumbs":"SQL Reference » Path Navigation » path_extract","id":"180","title":"path_extract"},"181":{"body":"Endb allows introspection of its information schema. The Endb information schema does not describe the structure of each table. Because Endb is a document database, each document (row) is responsible for its own schema. The information schema is used by Endb to describe database objects at a high level and is used for schemaless queries, such as SELECT *. Note that all information schema tables are hard-coded to lower-case names and must be queried as such.","breadcrumbs":"SQL Reference » Schema » Schema","id":"181","title":"Schema"},"182":{"body":"-> SELECT * FROM information_schema.tables;\n[{'table_catalog': None, 'table_name': 'stores', 'table_schema': 'main', 'table_type': 'BASE TABLE'}, {... 'table_name': 'products', ... }, {... 'table_name': 'sales', ... }]","breadcrumbs":"SQL Reference » Schema » Tables","id":"182","title":"Tables"},"183":{"body":"-> SELECT * FROM information_schema.columns;\n[{'column_name': 'addresses', 'ordinal_position': 0, 'table_catalog': None, 'table_name': 'stores', 'table_schema': 'main'}, {'column_name': 'brand', ... }, {'column_name': 'price', ... }, ... ]","breadcrumbs":"SQL Reference » Schema » Columns","id":"183","title":"Columns"},"184":{"body":"-> SELECT * FROM information_schema.views;\n[{'table_catalog': None, 'table_name': 'sold_products', 'table_schema': 'main', 'view_definition': 'SELECT * FROM products p JOIN sales s ON p.id = s.p_id'}]","breadcrumbs":"SQL Reference » Schema » Views","id":"184","title":"Views"},"185":{"body":"The check_constraints table in Endb is used to store assertions . -> SELECT * FROM information_schema.check_constraints;\n[{'check_clause': \"(NOT EXISTS (SELECT * FROM users WHERE TYPEOF(email) != 'text'))\", 'constraint_catalog': None, 'constraint_name': 'string_email', 'constraint_schema': 'main'}]","breadcrumbs":"SQL Reference » Schema » Check Constraints","id":"185","title":"Check Constraints"},"186":{"body":"Endb provides basic view functionality to support environments which require a static schema.","breadcrumbs":"SQL Reference » Views » Views","id":"186","title":"Views"},"187":{"body":"CREATE VIEW creates a non-materialized view based on the query which follows the AS operator. Column names are listed in parentheses after the view name. CREATE VIEW simple_products(name, price) AS SELECT name, ROUND(price) FROM products; Alternatively, named columns can each immediately follow queried columns. CREATE VIEW easy_products AS SELECT name label, ROUND(price) easy_price FROM products; NOTE: To modify a view, use DROP VIEW then re-create the view with the desired columns.","breadcrumbs":"SQL Reference » Views » CREATE VIEW","id":"187","title":"CREATE VIEW"},"188":{"body":"DROP VIEW deletes a view based on its name. DROP VIEW easy_products;","breadcrumbs":"SQL Reference » Views » DROP VIEW","id":"188","title":"DROP VIEW"},"189":{"body":"","breadcrumbs":"SQL Reference » Assertions » Assertions","id":"189","title":"Assertions"},"19":{"body":"Endb will always do its best to provide you with meaningful error messages that point you to a solution: SELECT * FROM im_not_here;","breadcrumbs":"Tutorial » Endb SQL Basics » Error Messages","id":"19","title":"Error Messages"},"190":{"body":"Creates a checked, deferred assertion which executes on commit for inserts and updates. Although CREATE ASSERTION (normally) needs to refer to the table it is asserting on, that table need not exist for the assertion to be created. CREATE ASSERTION string_email CHECK (NOT EXISTS (SELECT * FROM users WHERE TYPEOF(email) != 'text'));\nINSERT INTO users {name: 'Steven', email: 123};","breadcrumbs":"SQL Reference » Assertions » CREATE ASSERTION","id":"190","title":"CREATE ASSERTION"},"191":{"body":"Removes an assertion from the database based on its name. DROP ASSERTION string_email;","breadcrumbs":"SQL Reference » Assertions » DROP ASSERTION","id":"191","title":"DROP ASSERTION"},"192":{"body":"Reference documentation exists as a detailed perspective on each feature of Endb. It does not need to be read from beginning to end. Installation Operation HTTP API Data Types","breadcrumbs":"Reference » Reference","id":"192","title":"Reference"},"193":{"body":"At this stage, Endatabas is highly experimental. We do not push images to Docker Hub often. We recommend building the local Docker image if you want a recent version. You only need one of the following options. If you followed the Quickstart, you already have the Docker Hub version installed.","breadcrumbs":"Reference » Installation » Installation","id":"193","title":"Installation"},"194":{"body":"Endb is still in early alpha. While in alpha, new versions are not guaranteed to have binary-compatible storage with previous versions. We encourage you to experiment with Endb but please do not use it in production until a General Availability release.","breadcrumbs":"Reference » Installation » Warning: Early Alpha","id":"194","title":"Warning: Early Alpha"},"195":{"body":"If you run Docker, you can use the default command below. --rm cleans up (optional), -p exposes the default endb port, and -v mounts a local volume so your data persists even if you shut down the Docker image. mkdir -p endb_data\ndocker pull endatabas/endb\ndocker run --rm -p 3803:3803 -v endb_data:/app/endb_data endatabas/endb If you run Podman, you'll need to specify the docker.io repo explicitly: mkdir -p endb_data\npodman pull docker.io/endatabas/endb\npodman run --rm -p 3803:3803 -v endb_data:/app/endb_data docker.io/endatabas/endb","breadcrumbs":"Reference » Installation » Installing from Docker Hub","id":"195","title":"Installing from Docker Hub"},"196":{"body":"If you want to run endb from the main branch, compile and build the Docker image: https://github.com/endatabas/endb/#building https://github.com/endatabas/endb/#docker","breadcrumbs":"Reference » Installation » Installing from Git: Docker","id":"196","title":"Installing from Git: Docker"},"197":{"body":"If you don't want Docker at all, you can compile and run the endb binary: https://github.com/endatabas/endb/#building ./target/endb NOTE: If you move the endb binary, be sure to copy libendb.so (Linux) or libendb.dylib (MacOS) into the same directory. This is because endb requires libendb to run.","breadcrumbs":"Reference » Installation » Installing from Git: Binary","id":"197","title":"Installing from Git: Binary"},"198":{"body":"The endb executable aims to provide self-explanatory help for direct usage of the binary. By default, endb logs to STDOUT. $ endb --help\nUsage: endb [OPTIONS] Options: -d, --data-directory [env: ENDB_DATA_DIRECTORY=] [default: endb_data] -p, --http-port [env: ENDB_HTTP_PORT=] [default: 3803] --username [env: ENDB_USERNAME=] --password [env: ENDB_PASSWORD=] -h, --help Print help -V, --version Print version","breadcrumbs":"Reference » Operation » Operation","id":"198","title":"Operation"},"199":{"body":"At this experimental stage, only raw HTTP drivers are available. Any HTTP client may be used but in the examples below, we'll use curl. You can send SQL statements to endb over HTTP: curl -d \"INSERT INTO users (name) VALUES ('Tianyu')\" -H \"Content-Type: application/sql\" -X POST http://localhost:3803/sql\ncurl -d \"SELECT * FROM users\" -H \"Content-Type: application/sql\" -X POST http://localhost:3803/sql You can send SQL to endb with standard HTTP Query Parameters, Verbs, Content Types, Accept Headers, and HTTP Basic Authentication. Each one is outlined below.","breadcrumbs":"Reference » HTTP API » HTTP API","id":"199","title":"HTTP API"},"2":{"body":"This quick tutorial intends to walk you through the core aspects of Endb. By the end, you will have endb installed and you will have used it to learn some of what it can do. Quickstart Try It! Endb SQL Basics","breadcrumbs":"Tutorial » Tutorial","id":"2","title":"Tutorial"},"20":{"body":"The SQL Reference contains details and edge cases about Endb SQL. NOTE: The Endb SQL dialect is under active development. While most major features of Endb SQL are stable, some more esoteric features (MATCH, path navigation, etc.) may experience naming and semantics changes before Endb 1.0 is released. Intention Data Manipulation Queries SQL Data Types Operators Functions Time Queries Path Navigation Schema Views Assertions","breadcrumbs":"SQL Reference » SQL Reference","id":"20","title":"SQL Reference"},"200":{"body":"The query parameters Endb's HTTP endpoint accepts are: q - (q)uery: a SQL query, optionally parameterized p - (p)arameters: named or positional parameters m - (m)ultiple statements: bulk parameters , used for bulk insert/update","breadcrumbs":"Reference » HTTP API » HTTP Query Parameters","id":"200","title":"HTTP Query Parameters"},"201":{"body":"POST allows explicit Content Types and Accept headers: curl -d 'SELECT 1' -H \"Content-Type: application/sql\" -H \"Accept: text/csv\" -X POST http://localhost:3803/sql GET allows a single, simple URL. GET does not permit DML. curl -X GET \"http://localhost:3803/sql?q=SELECT%201\"","breadcrumbs":"Reference » HTTP API » HTTP Verbs","id":"201","title":"HTTP Verbs"},"202":{"body":"The HTTP Content-Type header is used to specify what format the client is sending data to Endb.","breadcrumbs":"Reference » HTTP API » Content Types","id":"202","title":"Content Types"},"203":{"body":"curl -d '{\"q\": \"SELECT * from products;\"}' -H \"Content-Type: application/json\" -X POST http://localhost:3803/sql\ncurl -d '{\"q\": \"SELECT * from products WHERE name = ?;\", \"p\": [\"Salt\"]}' -H \"Content-Type: application/json\" -X POST http://localhost:3803/sql\ncurl -d '{\"q\": \"INSERT INTO products {name: :name};\", \"p\": {\"name\": \"Paprika\"}}' -H \"Content-Type: application/json\" -X POST http://localhost:3803/sql NOTE: To enable strongly-typed values, payloads sent with the application/json content type have values resolved with JSON-LD scalars. Standard JSON values are a subset of JSON-LD scalars, so data sent as regular JSON is unaffected by this behaviour.","breadcrumbs":"Reference » HTTP API » application/json:","id":"203","title":"application/json:"},"204":{"body":"Although values in the application/json content type are resolved using JSON-LD scalars, you can explicitly specify an application/ld+json content type to avoid all ambiguity. See JSON-LD . curl -d '{\"q\": \"INSERT INTO events {start: :start};\", \"p\": {\"start\": {\"@type\": \"xsd:dateTime\", \"@value\": \"2011-04-09T20:00:00Z\"}}}' -H \"Content-Type: application/ld+json\" -X POST http://localhost:3803/sql","breadcrumbs":"Reference » HTTP API » application/ld+json","id":"204","title":"application/ld+json"},"205":{"body":"curl -d 'SELECT 1' -H \"Content-Type: application/sql\" -X POST http://localhost:3803/sql Submit parameters to application/sql by providing form data or query parameters. Form data and query parameters can be combined, though it is not necessarily recommended. curl -F q=\"INSERT INTO sauces {name: ?, color: ?};\" -X POST http://localhost:3803/sql?p=%5B%22ketchup%22%2C%22purple%22%5D","breadcrumbs":"Reference » HTTP API » application/sql:","id":"205","title":"application/sql:"},"206":{"body":"curl -F q=\"SELECT * from products;\" -H \"Content-Type: multipart/form-data\" -X POST http://localhost:3803/sql\ncurl -F q=\"INSERT INTO products {name: ?};\" -F p='[\"Sriracha\"]' -X POST http://localhost:3803/sql NOTE: Many HTTP clients (including curl) automatically assume a content type of multipart/form-data when form fields are provided. This is true for curl when the -F (--form) argument is used and it has been elided from further examples.","breadcrumbs":"Reference » HTTP API » multipart/form-data","id":"206","title":"multipart/form-data"},"207":{"body":"Although the other content types are preferable for obvious reasons, application/x-www-form-urlencoded is offered for completeness. curl -d 'q=SELECT%20*%20FROM%20products;' -H \"Content-Type: application/x-www-form-urlencoded\" -X POST http://localhost:3803/sql","breadcrumbs":"Reference » HTTP API » application/x-www-form-urlencoded","id":"207","title":"application/x-www-form-urlencoded"},"208":{"body":"The HTTP Accept header is used to specify how data is returned to the Endb client. The default Accept header content type is application/json.","breadcrumbs":"Reference » HTTP API » Accept Headers","id":"208","title":"Accept Headers"},"209":{"body":"text/csv returns comma-separated rows. Column order from the SELECT clause is maintained. curl -d \"SELECT * FROM (VALUES (1,'hello'), (2,'csv')) t1\" -H \"Content-Type: application/sql\" -H \"Accept: text/csv\" -X POST http://localhost:3803/sql returns: \"column1\",\"column2\"\n2,\"csv\"\n1,\"hello\"","breadcrumbs":"Reference » HTTP API » text/csv","id":"209","title":"text/csv"},"21":{"body":"The goal of Endb's SQL dialect is to be small, coherent, and powerful. The SQL specification is massive, with pages ordering in the thousands. Rather than implement the entire SQL specification from scratch (a gargantuan task) or mimic the SQL dialect of another database, Endb chooses a tiny core and builds powerful, composable features on top of that. This tiny core draws inspiration from many sources, but SQLite in particular. If SQLite supports a particular operator or function, Endb SQL also tries to. Endb SQL also draws strong inspiration from the SQL specification itself (and its predecessors ) and from PostgreSQL . Endb SQL's nested data is also heavily inspired by JSONPath , SQL/JSON , and their derivatives found in major SQL databases. Light inspiration is drawn from PartiQL , SQL++ , and XQuery . For more information on Endb's influences, please see our bibliography .","breadcrumbs":"SQL Reference » Intention » Intention","id":"21","title":"Intention"},"210":{"body":"application/json returns rows as an array of JSON tuples. Column order from the SELECT clause is maintained. curl -d \"SELECT * FROM (VALUES (1,'hello'), (2,DATE('2023-07-22'))) t1\" -H \"Content-Type: application/sql\" -H \"Accept: application/json\" -X POST http://localhost:3803/sql returns: [[2,\"2023-07-22\"],[1,\"hello\"]]","breadcrumbs":"Reference » HTTP API » application/json","id":"210","title":"application/json"},"211":{"body":"application/x-ndjson returns newline-delimited JSON documents. Column order from the SELECT clause is not maintained. JSON documents cannot guarantee column order. curl -d \"SELECT * FROM (VALUES (1,'hello'), (2,DATE('2023-07-22'))) t1\" -H \"Content-Type: application/sql\" -H \"Accept: application/x-ndjson\" -X POST http://localhost:3803/sql returns: {\"column1\":2,\"column2\":\"2023-07-22\"}\n{\"column1\":1,\"column2\":\"hello\"}","breadcrumbs":"Reference » HTTP API » application/x-ndjson","id":"211","title":"application/x-ndjson"},"212":{"body":"application/ld+json returns documents of strongly-typed (\"Linking Data\") JSON records. Column order from the SELECT clause is not maintained. JSON documents cannot guarantee column order. curl -d \"SELECT * FROM (VALUES (1,'hello'), (2,DATE('2023-07-22'))) t1\" -H \"Content-Type: application/sql\" -H \"Accept: application/ld+json\" -X POST http://localhost:3803/sql returns: {\"@context\":{\"xsd\":\"http://www.w3.org/2001/XMLSchema#\",\"@vocab\":\"http://endb.io/\"},\"@graph\":[{\"column1\":2,\"column2\":{\"@value\":\"2023-07-22\",\"@type\":\"xsd:date\"}},{\"column1\":1,\"column2\":\"hello\"}]} See JSON-LD .","breadcrumbs":"Reference » HTTP API » application/ld+json","id":"212","title":"application/ld+json"},"213":{"body":"application/vnd.apache.arrow.file returns columnar data as an Apache Arrow file. curl -d \"SELECT * FROM (VALUES (1,'hello'), (2,DATE('2023-07-22'))) t1\" -H \"Content-Type: application/sql\" -H \"Accept: application/vnd.apache.arrow.file\" -X POST http://localhost:3803/sql --output hello.arrow The above command returns a file containing a single RecordBatch in an Apache Arrow file in IPC format. You can examine the file with functions like pyarrow.ipc.open_file , as seen in this gist .","breadcrumbs":"Reference » HTTP API » application/vnd.apache.arrow.file","id":"213","title":"application/vnd.apache.arrow.file"},"214":{"body":"application/vnd.apache.arrow.stream returns columnar data as an Apache Arrow stream. curl -d \"SELECT * FROM (VALUES (1,'hello'), (2,DATE('2023-07-22'))) t1\" -H \"Content-Type: application/sql\" -H \"Accept: application/vnd.apache.arrow.stream\" -X POST http://localhost:3803/sql --output streamed.arrow The above command returns a file containing an Apache Arrow IPC stream. You can examine the file with functions like pyarrow.ipc.open_stream , as seen in this gist .","breadcrumbs":"Reference » HTTP API » application/vnd.apache.arrow.stream","id":"214","title":"application/vnd.apache.arrow.stream"},"215":{"body":"Endb supports HTTP Basic Authentication as defined by RFC 7235 . Pass --username and --password arguments to the endb binary to force basic authentication for HTTP connections. ./target/endb --username zig --password zag Then, from any HTTP client, provide the username and password combination to execute queries. curl --user zig:zag -d \"SELECT 'Hello World';\" -H \"Content-Type: application/sql\" -X POST http://localhost:3803/sql If the client passes an incorrect username or password, it will receive a 401 Authorization Required HTTP status code as a result, but no body. Be aware of this to ensure client code is written to detect 401 status codes. $ curl -i --user zig:wrong -d \"SELECT 'Hello World';\" -H \"Content-Type: application/sql\" -X POST http://localhost:3803/sql\nHTTP/1.1 401 Authorization Required","breadcrumbs":"Reference » HTTP API » HTTP Basic Authentication","id":"215","title":"HTTP Basic Authentication"},"216":{"body":"SQL parameters are available to: application/json and application/ld+json as part of the POST body multipart/form-data as form data application/x-www-form-urlencoded as URL query parameters application/sql as form data and/or URL query parameters Parameters can be JSON literals, JSON-LD scalars, or SQL literals. A JSON-LD scalar always has the form: {\"@type\": \"xsd:TYPE\", \"@value\": \"DATA\"}. JSON-LD types are listed under the Data Types table.","breadcrumbs":"Reference » HTTP API » Parameters","id":"216","title":"Parameters"},"217":{"body":"Named parameters substitute parameter placeholders with the form :param by the parameter key with the corresponding name. Named parameters are represented as a JSON object. curl -d '{\"q\": \"INSERT INTO products {name: :name, price: :price};\", \"p\": {\"name\": \"Paprika\", \"price\": 2.99}}' -H \"Content-Type: application/json\" -X POST http://localhost:3803/sql\ncurl -d '{\"q\": \"INSERT INTO events {start: :start};\", \"p\": {\"start\": {\"@type\": \"xsd:dateTime\", \"@value\": \"2011-04-09T20:00:00Z\"}}}' -H \"Content-Type: application/ld+json\" -X POST http://localhost:3803/sql\ncurl -F q=\"INSERT INTO products {name: :sauce};\" -F p='{\"sauce\": \"Sriracha\"}' -X POST http://localhost:3803/sql","breadcrumbs":"Reference » HTTP API » Named Parameters","id":"217","title":"Named Parameters"},"218":{"body":"Positional parameters substitute parameter placeholders with the form ? by the parameter values, in the order they appear. Positional parameters are respresented as a JSON array. curl -d '{\"q\": \"SELECT * from products WHERE name = ? AND price > ?;\", \"p\": [\"Salt\", 3.99]}' -H \"Content-Type: application/json\" -X POST http://localhost:3803/sql\ncurl -d '{\"q\": \"INSERT INTO events {start: ?};\", \"p\": [{\"@type\": \"xsd:dateTime\", \"@value\": \"2011-04-09T20:00:00Z\"}]}' -H \"Content-Type: application/ld+json\" -X POST http://localhost:3803/sql\ncurl -F q=\"INSERT INTO products {name: ?};\" -F p='[\"Sriracha\"]' -X POST http://localhost:3803/sql","breadcrumbs":"Reference » HTTP API » Positional Parameters","id":"218","title":"Positional Parameters"},"219":{"body":"Bulk operations are possible by setting the m flag to true. Bulk operations are available to both named and positional parameters. The list of parameters supplied in bulk must be nested in an array. curl -d '{\"q\": \"INSERT INTO products {name: :name};\", \"p\": [{\"name\": \"Soda\"}, {\"name\": \"Tonic\"}], \"m\": true}' -H \"Content-Type: application/json\" -X POST http://localhost:3803/sql\ncurl -F q=\"INSERT INTO sauces {name: ?, color: ?};\" -F p='[[\"Mustard\", \"Yellow\"], [\"Ketchup\", \"Red\"]]' -F m=true -X POST http://localhost:3803/sql","breadcrumbs":"Reference » HTTP API » Bulk Parameters","id":"219","title":"Bulk Parameters"},"22":{"body":"Creating, updating, and deleting data in Endb is done using standard SQL Data Manipulation Language (DML). Endb is also immutable and schemaless, so it contains a number of shorthands and document-oriented conveniences. Endb does not require any Data Definition Language (DDL), such as CREATE TABLE.","breadcrumbs":"SQL Reference » Data Manipulation » Data Manipulation","id":"22","title":"Data Manipulation"},"220":{"body":"As it is possible to receive Apache Arrow data from an Endb query, it is possible to submit Apache Arrow as a statement parameter. The example below assumes the existence of a a table called names, which only contains one column (name). Apache Arrow Streams can also be used as parameters in the same way. # create a sample Arrow file:\ncurl -d \"SELECT * FROM names;\" -H \"Content-Type: application/sql\" -H \"Accept: application/vnd.apache.arrow.file\" -X POST http://localhost:3803/sql --output names.arrow\n# use the sample Arrow file:\ncurl -F m=true -F q=\"INSERT INTO projects {name: :name};\" -F \"p=@names.arrow;type=application/vnd.apache.arrow.file\" -X POST http://localhost:3803/sql NOTE: This feature should be used with caution. Do not submit arbitrary Arrow files as parameters. If a malformed Arrow file is submitted, the error message returned (if any) is unlikely to provide guidance. Preferably, Arrow files should be created using Endb itself, as in the example above. Most users will prefer to use a human-readable file format instead, such as a JSON variant or static SQL statements.","breadcrumbs":"Reference » HTTP API » Apache Arrow File Parameters","id":"220","title":"Apache Arrow File Parameters"},"221":{"body":"Bulk inserts are possible by combining the tools mentioned under Parameters . For example, the OBJECTS keyword can insert an array of object literals. Note that each object used as a positional parameter must be wrapped in a JSON array, since there may be more than one positional parameter supplied. Similarly, each named parameter must be wrapped in an object containing a key of the corresponding name. curl -F m=true -F q=\"INSERT INTO products OBJECTS ?\" -F p=\"[[{name: 'jam'}], [{name: 'butter'}]]\" -X POST http://localhost:3803/sql\ncurl -F m=true -F q=\"INSERT INTO products OBJECTS :product\" -F p=\"[{product: {name: 'jelly'}}, {product: {name: 'ghee'}}]\" -X POST http://localhost:3803/sql","breadcrumbs":"Reference » HTTP API » Bulk Insert","id":"221","title":"Bulk Insert"},"222":{"body":"It is possible to pass multiple SQL statements to Endb by delimiting them with semicolons. Parameters will be passed to all statements in order. Only the result of the last statement is returned to the client. In the following example, the INSERT will be successful but will not return a result. The SELECT will return to the client. curl --form-string q=\"INSERT INTO sauces {name: ?, color: ?}; SELECT {namo: ?, colour: ?};\" -F p='[\"Mustard\", \"Yellow\", \"Ketchup\", \"Red\"]' -X POST http://localhost:3803/sql NOTE: --form-string is required instead of --form to send semicolon-delimited statements with curl.","breadcrumbs":"Reference » HTTP API » Multiple Statements","id":"222","title":"Multiple Statements"},"223":{"body":"","breadcrumbs":"Reference » Data Types » Data Types","id":"223","title":"Data Types"},"224":{"body":"Endb supports the following native scalar types for now. JSON-LD values with a type of @json will be returned from Endb as JSON literals, verbatim. The @type listed in parentheses is for reference purposes only. JSON literal types are implicit so a @value/@type pair is not returned for a JSON literal. SQL JSON-LD Example Literal Description NULL @json null Null, nil, undefined, or missing TEXT @json (xsd:string) \"hello\" UTF-8 string BOOLEAN @json (xsd:boolean) FALSE 8-bit boolean INTEGER @json (xsd:int[eger]) 42 64/128-bit two's complement integer REAL @json (xsd:double) 9007199254740992.123 64-bit IEEE 754 floating point number TIMESTAMP xsd:dateTime 2007-01-01T00:00:00 ISO microsecond precision timestamp DATE xsd:date 2007-01-01 ISO date TIME xsd:time 23:30:00 ISO time INTERVAL xsd:duration PT12H34M56.789S ISO interval BLOB xsd:base64Binary x'DEADBEEF' Binary large object SQL Data Types are covered in detail in the SQL Reference.","breadcrumbs":"Reference » Data Types » Scalars","id":"224","title":"Scalars"},"225":{"body":"SQL JSON-LD Example Literal Description ARRAY @json [\"Joe\", \"Dan\", \"Dwayne\"] Zero-based array OBJECT @json {n: 3, b: 2023-01-01} Object, map, dict, document","breadcrumbs":"Reference » Data Types » Collections","id":"225","title":"Collections"},"226":{"body":"SQL JSON-LD Description DECIMAL xsd:decimal Arbitrary precision decimal. Use 2 BIGINTs or VARCHAR URI xsd:anyURI Unsupported. Use VARCHAR UUID @json (xsd:string) Unsupported. Use VARCHAR or BLOB If you strongly feel you need a native representation of one of these types, email us: hello@endatabas.com","breadcrumbs":"Reference » Data Types » Unsupported Scalar Types","id":"226","title":"Unsupported Scalar Types"},"227":{"body":"What? Why? Architecture Roadmap License","breadcrumbs":"Appendix » Appendix","id":"227","title":"Appendix"},"228":{"body":"From the outside, Endatabas (or Endb ) is an open source SQL document database with full history. On the inside, this means all records in Endatabas are immutable. An ERASE statement is provided for compliance with laws and policies like GDPR. Time-travel is possible, but queries default to \"as-of-now\". (Which is the thing you want 97% of the time.) Rows are \"schema-last\" documents and joins can be arbitrary, but queries are written in SQL. Endb stores data in Apache Arrow: scalars are strongly typed, the on-disk format is columnar, and the execution engine understands rows and columns. Endb separates storage from compute to provide unlimited disk space. In Swedish, Endatabas means both \"a database\" and \" one database\". This One Database Dream is twofold: Endb hopes to provide HTAP , so a secondary analytics database is not required for most users. Endb plans to use AI ( adaptive indexing ) to provide fast OLTP and OLAP queries on cheap, elastic infrastructure.","breadcrumbs":"Appendix » What? » What is Endatabas?","id":"228","title":"What is Endatabas?"},"229":{"body":"After years of market research, the complaint of database users is universal: \"I want to stop babysitting the database.\" This can mean many things but they're all expensive and complex. The database equivalent of Greenspun's 10th Rule might be \"any sufficiently complicated backend system contains an ad-hoc, informally-specified, bug-ridden, slow implementation of half a database.\" This was true for much of the work we did in the 2010s and 2020s. \"Babysitting\" is sometimes the energy wasted by repeatedly building and maintaining ad-hoc databases for ourselves instead of building tools for customers. Buying data products also requires babysitting. DBAs babysit Oracle indexes. Developers babysit Postgres query optimizations. Data engineers babysit ETL pipelines. Analysts baybsit Redshift history. SREs babysit Aurora costs. Endb can't solve all these problems, but it attempts to be a jack-of-all-trades database that solves as many as it can — for as many people as it can.","breadcrumbs":"Appendix » What? » Who wants One Database?","id":"229","title":"Who wants One Database?"},"23":{"body":"To create a new document, you can use the standard SQL INSERT command. INSERT INTO products (product_no, name, price) VALUES (1, 'Tofu', 7.99); To create multiple new documents at once, delimit their value lists with commas: INSERT INTO products (product_no, name, price) VALUES (1, 'Butter', 5.99), (2, 'Margarine', 4.99); It is also possible to insert a document directly using an OBJECT literal . INSERT INTO products {product_no: 3, name: 'Tea', price: 3.99}; To insert multiple documents directly, delimit documents with commas: INSERT INTO products {name: 'Coffee', price: 3.99}, {name: 'Croissant', price: 2.99}; It is possible to insert the results of a query: INSERT INTO cheap_products SELECT * FROM products WHERE price < 4.00;","breadcrumbs":"SQL Reference » Data Manipulation » INSERT","id":"23","title":"INSERT"},"230":{"body":"After years of Computer Science research, it's also clear a sea change in database tech is due... right about now. (Give or take ten years. Our timing may be off.) Hellerstein and Stonebraker's What Goes Around Comes Around remains true, decade after decade, since it was published in 2004. As always, the relational data model is still king and SQL is still the lingua franca of databases. Together, they assimilate new rivals every decade or so. Endatabas tries to stand right at the center of this upcoming collapse of the data toolchain. If we, as an industry, can drop a decade's vestigial growth in favour of a tighter, simpler solution? Wonderful. But what if we could shed a half-century's vestiges? Perhaps event streams, relations, documents, graphs, temporal data, ETL and CDC can all live under one roof for many businesses. Let's see. We're not sure if we can make this work. But it's exciting to try. — One Database: Clean. Simple. Less. (Read more in Why Endatabas? )","breadcrumbs":"Appendix » What? » When is One Database possible?","id":"230","title":"When is One Database possible?"},"231":{"body":"(Read more in What is Endatabas? ) Why did we build Endatabas (aka Endb) at all? Isn't one of the many ( many ) existing databases good enough? Many incumbent databases serve their use cases and markets well. But the demands placed on databases are growing rapidly. These demands pull in multiple directions, all at once, and existing technology cannot support them without introducing enormous complexity. Metamorphosis is required. Endb takes good ideas and makes them easier to access, while reducing operational headache. It does not try to be flashy or unnecessarily revolutionary. Instead, it tries to be simple and familiar on the surface while providing a lot of new power under the covers. Let's talk about what that means in clear, concrete terms.","breadcrumbs":"Appendix » Why? » Why Endatabas?","id":"231","title":"Why Endatabas?"},"232":{"body":"The tagline \"SQL Document Database With Full History\" says a lot, but it doesn't say everything. Endatabas is, first and foremost, an immutable database . That's the Full History part. But storing all your data, forever, has clear implications. We consider these implications to be the pillars of Endatabas. In 3D geometry, the legs of a tripod are mutually supportive; as long as all three feet are in contact with the ground, the tripod will not wobble or collapse. So it is with the pillars. Each supports and implies the others. The pillars are as follows: Full History (requires: immutable data and erasure) Timeline (requires: time-traveling queries) Separation of Storage from Compute (requires: light and adaptive indexing) Documents (requires: schemaless tables, \"schema-per-row\", arbitrary joins) Analytics (requires: columnar storage and access) At the top of this five-dimensional structure is SQL, the lingua franca of database queries. We believe it is the right time to integrate these ideas. But first let's go back a few decades to see how we got here.","breadcrumbs":"Appendix » Why? » What is Endatabas, anyway?","id":"232","title":"What is Endatabas, anyway?"},"233":{"body":"None of the ideas in Endatabas are new. George Copeland's What if mass storage were free? asked, back in 1980, what an immutable database might look like. His prescient vision for a database with full history enjoys the clarity of a researcher at the beginning of the database era. People have occasionally asked of Endatabas, \"why bother retaining all history?\" But this is the wrong question. The real question is: \"why bother destroying data?\" Copeland's answers, \"The deletion concept was invented to reuse expensive computer storage.\" The software industry has grown so accustomed to the arbitrary deletion of historical data that we now take destroying data for granted. Mass storage is not free yet — but it is cheap. Copeland himself addresses \"a more realistic argument: if the cost of mass storage were low enough, then deletion would become undesirable.\" Any system that exploits the separation of storage and compute can enjoy these low costs. An immutable dataset and a timeline of changing states are two sides of the same coin. Previous states carry the innate property of time (whether defined by familiar wall clocks or versions or logical clocks). Jensen and Snodgrass have thoroughly researched time-related database queries. Much of their work was published in the 1990s and early 2000s. Storing time, querying across time, time as a value ... these challenging subjects eventually grew to form SQL:2011 . Most SQL databases have struggled to implement SQL:2011. Incorporating time as a core concept in mutable databases (those which support destructive updates and deletes) amplifies existing complexity. Time should simplify the database, not complicate it. Document databases have a more convoluted story. Attempts at \"schemaless\", semi-structured, document, and object databases stretch from Smalltalk in the 1980s to C++ in the 1990s to Java and graphs in the 2000s to JSON in the 2010s . Despite all this, the most successful semi-structured document store, as of 2023, is a Postgres database with JSON columns. Database users desire flexible storage and querying — but yesterday's weather says they desire SQL more. Can't we have both? SQL has four identities, four histories. There is an SQL of academia, born of Codd's relational algebra (1970) and Chamberlin/Boyce SEQUEL (1974) , grown over decades with research like Snodgrass/Jensen's TSQL2. Then there is the SQL of industry, the many-tentacled leviathan of IBM, Oracle, and Microsoft: the SQL sold to businesses and governments, ceaselessly bifurcated into new dialects with each version and implementation. Between these two rests the SQL of the ISO specification — unified across 11 published standards, from SQL-86 to SQL:2023, spanning thousands of pages, adhered to by no single database. [1] Last, there is colloquial SQL, the language one refers to by the question, \"do you know SQL?\" These four threads are intertwined across four decades, making it very difficult to clearly define what is meant by \"SQL\", even in very narrow contexts. Colloquial SQL is of greatest interest to us. This is the ubiquitous query language any new database must implement to succeed. Khoshafian and Copeland introduced the Decomposition Storage Model (DSM) in 1985. The four decades that followed saw any number of approaches to data analytics. Most of the time, however, these demanded expensive data acrobatics: data was piped, streamed, dumped, and copied into denormalized cubes and time-series databases. As humanity grew out of the batch processing of the 1980s into the always-online society of the 2020s, analytics data became another form of operational data and this pipeline was looped back to users and customers. Hybrid Transactional/Analytical Processing (HTAP) promises a simpler, natural successor to OLTP and OLAP systems. For many businesses, the transactional/analytical divide is as arbitrary as destroying data with every state change. Humanity will arbitrarily destroy data in 2026 because hard disks were expensive in 1986. Similarly, we will wastefully query data with multiple systems in 2026 because CPUs were slow in 1986.","breadcrumbs":"Appendix » Why? » History","id":"233","title":"History"},"234":{"body":"When you approach Endb from a distance, you won't see the pillars at first. You'll see the structure they support. This structure also binds the pillars together. The query language of a database is its glue. It is the user interface. It defines the user experience. It is at once a programming language, a dialogue, an envelope, a protocol. But a query engine is not divorced from its query language, and so the language choice also informs system design and behaviour. There are mundane reasons for choosing SQL. If asked \"do you know SQL?\" there's a high probability the answer is \"yes.\" SQL is the language of data science and third-party tools. If any sufficiently successful database has to provide SQL access anyway, one may as well start there. But this is not why we chose SQL. We believe SQL can be beautiful. As mentioned in History , we are primarily concerned with colloquial SQL. The other threads of SQL are relevant but Endb will never implement the entire SQL specification. Instead, the Endb SQL dialect unifies the pillars under one strongly-dynamically-typed umbrella, a variation of the SQLite dialect. SQLite's applications are quite different from those of Endatabas, so Endb SQL is not weakly-typed and Endb types are not a free-for-all. Instead, Endb internally adopts types from Apache Arrow , which it uses as a storage medium. When considering alternatives, there are no direct contenders. Cypher, Datalog, MongoDB query documents, and other schemaless query languages work well for one database implementation but lack both mindshare and standards. PartiQL, SQL++, and other NewSQL languages that depart from SQL suffer precisely because they are almost SQL. One can fantasize about designing a query language from scratch but it's very easy to get wrong and takes decades to build mindshare. SQL has been through this decades-long gauntlet. Just as PL/SQL and T-SQL differ, so will Endb SQL from other dialects. However, colloquial SQL is comparable to colloquial Hindi — at higher levels, it bifurcates into Urdu and Sanskrit but speakers of both lineages understand one another. Endb SQL will be familiar to users of other SQL dialects. With its long, rich history SQL not only has the necessary theoretical underpinnings but the battle scars of technology that lasts. It sits alongside POSIX, TCP/IP, LISP, C, and the QWERTY keyboard layout. It will see its centenary.","breadcrumbs":"Appendix » Why? » Why SQL?","id":"234","title":"Why SQL?"},"235":{"body":"Even if we ignore Copeland's dream of mass storage from 1980, it is easy to see why destroying data is harmful. To destroy data is to destroy facts — to lie about the truth of what happened. Few modern systems permit the total destruction of data for this obvious reason. Some choose to create audit tables: users_audits, sales_audits, and so on. Some choose to log anything and everything. \"It's on disk somewhere.\" It's not uncommon for companies to extract metrics from logs to create invoices and reports, turning a log file into a bespoke immutable database. Industries which take their data very seriously (banking, healthcare) already store immutable records. They just do so in a mutable database. Append-only tables are not new, but they're an order of magnitude easier to work with — for both users and operators — if the database is append-only from the ground up. These same industries will resist the destruction of data unless absolutely necessary, but they will bend to necessity. Erasure is concomitant with immutability — we cannot have one without the other. The existing designs of databases create serious problems for privacy. DELETE, when overloaded to mean both \"save disk space\" and \"explicitly remove this data\", becomes opaque. It does not leave any queryable record of the deletion. Removing data should keep tombstones so it's at least known that some data was removed.","breadcrumbs":"Appendix » Why? » Why Full History?","id":"235","title":"Why Full History?"},"236":{"body":"Keeping your data's entire history is the write-side of the equation. If you didn't care about getting this data back, you could just dump it into an unintelligible pile. But you not only want your data back, you want to query it in the easiest way possible. One very sensible way to see and query immutable data is along a timeline. Endb makes no assumptions about your desire to participate in this timeline. By default, everything is visible as-of-now but querying the past should feel effortless. -- without time travel:\nSELECT * FROM products;\n-- time travel to 2020:\nSELECT * FROM products FOR SYSTEM_TIME AS OF 2020-08-25T00:00:00;","breadcrumbs":"Appendix » Why? » Why a timeline?","id":"236","title":"Why a timeline?"},"237":{"body":"Separating storage from compute is an implementation detail. AWS customers don't choose Amazon Aurora because they're craving this separation. Decoupling storage from compute makes scale (both up and down) trivial. It also introduces the possibility of \"reducing network traffic, ... fast crash recovery, failovers to replicas without loss of data, and fault-tolerant, self-healing storage.\" This decoupling is concomitant with Light and Adaptive Indexing . It is undesirable to manually construct expensive indexes for unknown future schemas over (effectively) infinite data. Instead, we should let machine learning handle this job.","breadcrumbs":"Appendix » Why? » Why Separation of Storage and Compute?","id":"237","title":"Why Separation of Storage and Compute?"},"238":{"body":"It can be argued that \"why documents?\" is really multiple questions: why schemaless? why nested data? why dynamic SQL? First, the challenges. It is extremely difficult to force global schema onto every row in a table in an immutable world. Even if there were a simple mechanism in SQL to alter table schema only for certain durations (there isn't), the database user would still be burdened with querying based on a particular schema at a particular time in the history of the table. This complexity is compounded by the fact that static schemas have less and less meaning in a temporal world. Endb introduces SQL:2011 time-travel and period predicates . The difficulty, mentioned earlier, that other databases encounter when introducing SQL:2011 is twofold: dealing with \"time\" in a world where history can be violently rewritten and managing an unbending schema across time. Nested data is equally unnatural in incumbent databases. SQL:99, SQL:2016, SQL:2023 all offer some way of shoehorning nested data into flat tables. DynamoDB, Couchbase, and MongoDB are the most common document databases but they don't speak SQL. [2] Not only will no one ever decompose relational data into 6NF, it is unlikely we'll ever see a return to the classic BCNF of business entity-relationship diagrams. Nested data is here to stay. Foreign, embedded JSON (or XML) is little more than a band-aid. Nested data should be native to SQL queries. Second, the joys. Schema-per-row can be incredibly liberating. Not only does this feel more natural, it embraces the messy truth of the real world. Schema-on-write can be added later, when the business is ready to lock down what it knows about a domain. But many use cases demand flexible schemas. What if this week's project requires downloading huge amounts of semi-structured JSON pricing data from the APIs of competing online stores to compare them? Endb can handle this case out of the box. Most databases would require a great deal of manipulation first. Dynamic SQL is required to support schemaless, nested data — but it also brings its own joys. When dynamic SQL rests on top of a flexible data model which can ingest any data, it is capable of exploring nested data and easily constructing arbitrary joins users could normally only construct in a graph database.","breadcrumbs":"Appendix » Why? » Why documents?","id":"238","title":"Why documents?"},"239":{"body":"It is often the job of analytics databases to record and query all the data of a business, denormalized for speed. There will always be analytical jobs which require data to be transformed. But many businesses already allow data scientists, analysts, and even CEOs read-only access to an OLTP replica. HTAP is right on the horizon . Endb hopes to participate in that evolution by making all business data accessible to easy-to-produce, cheap, ephemeral read replicas.","breadcrumbs":"Appendix » Why? » Why \"One Database\"?","id":"239","title":"Why \"One Database\"?"},"24":{"body":"To update an existing row, you can use the standard SQL UPDATE command: UPDATE products SET price = 4.99 WHERE name = 'Coffee'; Set multiple columns by separating them with commads; UPDATE products SET price = 4.99, name = 'Kaapi' WHERE name = 'Coffee'; Because Endb is schemaless, each document (or row) has its own schema. As a result, you may want to remove a column from an individual row. You can do this with the UNSET operator: UPDATE products UNSET product_no WHERE name = 'Coffee';\nUPDATE products REMOVE product_no WHERE name = 'Coffee'; REMOVE is an alias for UNSET. It is possible to set and unset values in a single update. Unsetting a column which doesn't exist is not an error: UPDATE products SET price = 5.98 UNSET product_no WHERE name = 'Coffee';","breadcrumbs":"SQL Reference » Data Manipulation » UPDATE","id":"24","title":"UPDATE"},"240":{"body":"We cannot reconcile building and selling a product we would never buy ourselves.","breadcrumbs":"Appendix » Why? » Why Commercial Open Source?","id":"240","title":"Why Commercial Open Source?"},"241":{"body":"All of the pillars outlined above have their own strike-when-the-iron-is-hot moment. The SQLite we know today began to materialize in 2001. Amazon S3 was launched in 2006. MongoDB was first released in 2007. Immutable data and functional programming reached the mainstream in the 2010s. Datomic (arguably the first immutable OLTP database) was release in 2012. Amazon Aurora was released in 2015 and Google's AlloyDB in 2022. Apache Arrow saw its first release in 2016. Over the past decade, many financial firms built their own in-house temporal databases. SQL:2011, SQL:2016, and SQL:2023 were ratified in their respective eponymous years. HTAP hasn't quite happened yet. AI-driven indexes haven't quite happened yet. The moment for something like Endatabas is now... but it is a very long moment. Endatabas cannot be built in a Postgres-compatible fashion. Technically, it would be prohibitively expensive to build Endatabas from existing components. It's time for something new. The complete SQL specification is very difficult to implement in full, though Mimer likely comes closest to this goal . There is XQuery, of course. But most businesses today do not build their nested data storage on XQuery.","breadcrumbs":"Appendix » Why? » Why Now?","id":"241","title":"Why Now?"},"242":{"body":"","breadcrumbs":"Appendix » Architecture » Architecture","id":"242","title":"Architecture"},"243":{"body":"All records in Endatabas are immutable. Historical data is not lost when an UPDATE or DELETE statement is executed. You can think of endb as one giant log of transactions with fast queries made possible by adaptive indexing .","breadcrumbs":"Appendix » Architecture » Immutable","id":"243","title":"Immutable"},"244":{"body":"The only time data in Endatabas is truly deleted is with the ERASE statement. This is used for user safety and compliance with laws like GDPR.","breadcrumbs":"Appendix » Architecture » Erasure","id":"244","title":"Erasure"},"245":{"body":"Both the heart and \"UI\" of Endatabas is a dynamic SQL engine which natively understands strongly-typed, semi-structured rows (documents). Here is an example to illustrate what that means: INSERT INTO stores {brand: \"Alonzo's Analog Synthesizers\", addresses: [{city: \"New Jersey\", country: \"United States\", opened: 1929-09-01}, {city: \"Göttingen\", country: \"Germany\", opened: 1928-09-01}]}; -- recursive query of ISO dates from the nested document:\nSELECT addresses..opened FROM stores; Endb SQL bases its core SQL dialect on SQLite. It also draws inspiration from SQL:99, SQL:2011, SQL:2016, and SQL:2023. Read more in our bibliography .","breadcrumbs":"Appendix » Architecture » Dynamic SQL","id":"245","title":"Dynamic SQL"},"246":{"body":"Endatabas stores and processes data as columns. Endb's columnar storage is built on Apache Arrow . Endb SQL allows users to retrieve data as documents. The ultimate goal is for Endatabas to serve many (hybrid) purposes: day-to-day transactions and analytical jobs.","breadcrumbs":"Appendix » Architecture » Columnar: Hybrid Transactional Analytic Processing (HTAP)","id":"246","title":"Columnar: Hybrid Transactional Analytic Processing (HTAP)"},"247":{"body":"Queries are compiled to Common Lisp and use hash joins. Join ordering is done heuristically, by base table size. Correlated queries are memoized by building indexes in-memory during query execution.","breadcrumbs":"Appendix » Architecture » Query Execution","id":"247","title":"Query Execution"},"248":{"body":"More detailed information about the future of Endb can be found in the roadmap .","breadcrumbs":"Appendix » Architecture » Future","id":"248","title":"Future"},"249":{"body":"Endb does not yet support columnar data returned directly to the user.","breadcrumbs":"Appendix » Architecture » Columnar (OLAP) result sets","id":"249","title":"Columnar (OLAP) result sets"},"25":{"body":"Endb provides a PATCH operator, similar to the PATCH function . The PATCH operator is used in conjunction with UPDATE to set fields on a document (columns on a row) in a declarative fashion. UPDATE products PATCH {price: 1.98, product_no: products.product_no + 1000} WHERE price = 2.00; PATCH is based on RFC 7386: JSON Merge Patch .","breadcrumbs":"SQL Reference » Data Manipulation » UPDATE PATCH","id":"25","title":"UPDATE PATCH"},"250":{"body":"If you're not sure what this is, think Amazon Aurora, Google AlloyDB, and Neon. Compute nodes are the classic database (Postgres, MongoDB, etc.) — in an immutable world, these are just caches. Storage is elastic object or blob storage (S3, Azure Blobs, etc.). Endatabas is built to live in the clouds, alongside infinite disk. Although the groundwork for separating storage from compute exists in Endb today, elastic storage backends are not yet implemented.","breadcrumbs":"Appendix » Architecture » Cloud: Separation of Storage from Compute","id":"250","title":"Cloud: Separation of Storage from Compute"},"251":{"body":"For more information on light and adaptive indexing, you can watch Håkan's talk from 2022: \"Light and Adaptive Indexing for Immutable Databases\" Endb does not yet support adaptive indexing.","breadcrumbs":"Appendix » Architecture » Adaptive Indexing","id":"251","title":"Adaptive Indexing"},"252":{"body":"In the near-term (Q3 2023), we expect to solidify the Endatabas SQL dialect so early users can get a taste of what it feels like to use it. You can read our high-level roadmap on GitHub .","breadcrumbs":"Appendix » Roadmap » Roadmap","id":"252","title":"Roadmap"},"253":{"body":"All Endatabas code is Copyright Håkan Råberg and licensed GNU Affero General Public License v3.0 , unless otherwise specified. To contribute to Endatabas, please refer to CONTRIBUTING .","breadcrumbs":"Appendix » License » License","id":"253","title":"License"},"26":{"body":"The SET operator permits paths on its left-hand side. The behaviour of the form UPDATE
SET = is identical to that of the path_set function. UPDATE users SET $.addresses[0].city = 'Chicago' WHERE name = 'Steven';","breadcrumbs":"SQL Reference » Data Manipulation » UPDATE SET $path","id":"26","title":"UPDATE SET $path"},"27":{"body":"The UNSET (synonym: REMOVE) operator permits paths on its left-hand side. The behaviour of the form UPDATE
UNSET = is identical to that of the path_remove function. UPDATE users UNSET $.addresses[0].city WHERE name = 'Steven';","breadcrumbs":"SQL Reference » Data Manipulation » UPDATE UNSET $path","id":"27","title":"UPDATE UNSET $path"},"28":{"body":"To delete an existing row, use the standard SQL DELETE command. DELETE FROM products WHERE price = 5.98; You may delete all rows from a table by eliding the WHERE clause: DELETE FROM products; Note: In Endb, DELETE does not remove any data. It is always possible to view data prior to the DELETE with time queries . If you need to remove data for compliance (with laws such as GDPR or PIPEDA), use ERASE .","breadcrumbs":"SQL Reference » Data Manipulation » DELETE","id":"28","title":"DELETE"},"29":{"body":"Endb provides flexible upserts with the common ON CONFLICT clause. When the INSERT command detects a conflict, it will perform the instructions in the DO clause. The following command needs to be executed twice to see the upsert effect. INSERT INTO products {name: 'Pepper', price: 9.99} ON CONFLICT (name, price) DO UPDATE SET v = 2; To specify no operation on conflict, use DO NOTHING: INSERT INTO products {name: 'Pepper', price: 9.99} ON CONFLICT (name, price) DO NOTHING; To reference the document currently being inserted, the DO clause provides a statement-local relation named excluded. INSERT INTO products {name: 'Salt', price: 6};\nINSERT INTO products {name: 'Salt', price: 7} ON CONFLICT (name) DO UPDATE SET price = excluded.price; Similarly, the existing table is still available in the DO clause to provide further filtering: INSERT INTO products {product_no: 99, name: 'Cumin', price: 3.00, v: 5};\nINSERT INTO products {product_no: 99, name: 'Cumin', price: 5.00, v: 6} ON CONFLICT (product_no, name) DO UPDATE SET price = excluded.price, v = excluded.v WHERE products.v < 6;","breadcrumbs":"SQL Reference » Data Manipulation » ON CONFLICT (Upsert)","id":"29","title":"ON CONFLICT (Upsert)"},"3":{"body":"","breadcrumbs":"Tutorial » Quickstart » Quickstart","id":"3","title":"Quickstart"},"30":{"body":"ERASE completely removes documents (rows) from visibility to any queries. Once a document has been erased, it is no longer possible to query for it at all. ERASE FROM products WHERE name = 'Salt';","breadcrumbs":"SQL Reference » Data Manipulation » ERASE","id":"30","title":"ERASE"},"31":{"body":"Parameters to DML are documented under the HTTP API .","breadcrumbs":"SQL Reference » Data Manipulation » Parameters","id":"31","title":"Parameters"},"32":{"body":"Transactions in Endb are implicit. Run multiple DML statements in a single transaction by providing multiple statements (delimited by semicolons) to a single POST to the HTTP API .","breadcrumbs":"SQL Reference » Data Manipulation » Transactions","id":"32","title":"Transactions"},"33":{"body":"Endb SQL strives to empower the query author. Basic SQL queries should be familiar. Advanced SQL queries should be simple.","breadcrumbs":"SQL Reference » Queries » Queries","id":"33","title":"Queries"},"34":{"body":"The most common hand-written SQL query tends to be the easiest: SELECT * FROM products; Without a WHERE clause (discussed below) the entire table is returned. Because Endb is schemaless, * has a special meaning. Each document (row) in Endb carries with it its own schema. As a result, * refers to the widest possible set of columns, across all the rows returned. In many SQL dialects, columns are strictly ordered. Because Endb columns cannot have a strict order, * returns them in alphabetical order. You can select the widest set of columns for a specific table with
.*: SELECT p.* FROM products p JOIN coupons c ON p.price = c.price;","breadcrumbs":"SQL Reference » Queries » SELECT *","id":"34","title":"SELECT *"},"35":{"body":"In programmatic environments, it is almost always preferable to query for specific columns by name: SELECT product_no, price FROM products; Select a list of columns by delimiting them with commas. SELECT product_no, v, price, name FROM products; Select a column with spaces by delimiting it with backticks or square braces: SELECT products['product no'] FROM products;\nSELECT `product no` FROM products; NOTE: Whether or not your Endb client respects column ordering is dependent on the content type it uses in Accept Headers. It is worth reading over the Accept Header documentation, in this regard. Limit query results to distinct rows or expand to all rows with DISTINCT and ALL. SELECT DISTINCT name FROM products;\nSELECT ALL product_no FROM products p JOIN sales s ON p.name = s.name;","breadcrumbs":"SQL Reference » Queries » SELECT","id":"35","title":"SELECT"},"36":{"body":"","breadcrumbs":"SQL Reference » Queries » FROM","id":"36","title":"FROM"},"37":{"body":"For convenience, tables can be given aliases immediately following their name in the FROM clause. SELECT p.name FROM products p; The AS operator can also (optionally) be used to provide an alias for a table. SELECT p.name FROM products AS p; More usefully, it can give a temporary table name to an expression. The temporary table name can either have anonymous columns or named columns. (The VALUES keyword is explained in the following VALUES Lists section.) SELECT p.column1 FROM (VALUES ('Paprika', 4.77)) AS p;\nSELECT p.price FROM (VALUES ('Paprika', 4.77)) AS p(name, price);","breadcrumbs":"SQL Reference » Queries » Alias Tables","id":"37","title":"Alias Tables"},"38":{"body":"The AS keyword is also used to alias columns. This is useful when column names conflict in a join. (Joins are explained below.) If the same column is specified more than once, the last reference to that column name is the one which will be returned: SELECT c.price, p.price FROM products p JOIN coupons c ON p.name = c.name; If both columns are required, AS can be used to rename one or both of the columns: SELECT p.price AS regular_price, c.price FROM products p JOIN coupons c ON p.name = c.name;","breadcrumbs":"SQL Reference » Queries » Alias Columns","id":"38","title":"Alias Columns"},"39":{"body":"Because Endb is schemaless, documents (rows) can be joined on any fields (columns) which have equivalent values. INSERT INTO coupons {name: 'Salt', price: 3.0};\nSELECT * FROM products p JOIN coupons c ON p.name = c.name; LEFT JOIN, LEFT OUTER JOIN, INNER JOIN, and CROSS JOIN are all supported.","breadcrumbs":"SQL Reference » Queries » JOIN","id":"39","title":"JOIN"},"4":{"body":"mkdir -p endb_data\ndocker pull endatabas/endb\ndocker run --rm -p 3803:3803 -v endb_data:/app/endb_data docker.io/endatabas/endb See Installation for more ways to install and build endb.","breadcrumbs":"Tutorial » Quickstart » Install Endb","id":"4","title":"Install Endb"},"40":{"body":"The UNNEST function can be thought of as the inverse of ARRAY_AGG , although it offers more power than just unlinking elements. It takes an array or object and pulls its elements into separate rows. SELECT * FROM UNNEST([1.99, 2.99, 3.99]) AS products(price); It is possible to unnest multiple arrays. If the arrays do not have the same number of elements, the shorter array(s) will have those values filled with NULL: SELECT names.* FROM (VALUES (['Leslie', 'Edgar', 'fiver2'], ['Lamport', 'Codd'])) AS x(first, last), UNNEST(x.first, x.last) AS names(first, last); When unnesting an object, keys-value pairs will be returned as per object_entries . This behaviour is useful for manipulating collections: SELECT * FROM UNNEST({original_price: 1.99, sale_price: 1.50, coupon_price: 1.40}) AS prices(price);\n-- [{'price': ['sale_price', 1.5]},\n-- {'price': ['coupon_price', 1.4]},\n-- {'price': ['original_price', 1.99]}]","breadcrumbs":"SQL Reference » Queries » UNNEST","id":"40","title":"UNNEST"},"41":{"body":"UNNEST can be suffixed with WITH ORDINALITY to append an ordinal column to the results. SELECT * FROM UNNEST([1.99, 2.99, 3.99]) WITH ORDINALITY AS products(price, n);\n-- [{'n': 0, 'price': 1.99}, {'n': 1, 'price': 2.99}, {'n': 2, 'price': 3.99}] NOTE: Endb ordinals are zero-indexed.","breadcrumbs":"SQL Reference » Queries » WITH ORDINALITY","id":"41","title":"WITH ORDINALITY"},"42":{"body":"Rather than returning the entire table, documents (rows) can be filtered with a WHERE clause. SELECT * FROM products WHERE price > 4;","breadcrumbs":"SQL Reference » Queries » WHERE (Filtering)","id":"42","title":"WHERE (Filtering)"},"43":{"body":"More advanced filters are documented in Operators and Functions .","breadcrumbs":"SQL Reference » Queries » Advanced Filtering","id":"43","title":"Advanced Filtering"},"44":{"body":"Results from queries can be ordered with standard SQL ORDER BY. SELECT * FROM products ORDER BY price; By default, ordering is ascending. For descending order, suffix the ORDER BY clause with DESC: SELECT * FROM products ORDER BY price DESC; To force ascending order, use ASC: SELECT * FROM products ORDER BY price ASC; It is also possible to order by an expression: SELECT * FROM products ORDER BY LENGTH(name);\nSELECT * FROM products ORDER BY -price; In the example above, LENGTH is an example of a function. A complete list of functions can be found in the Functions documentation.","breadcrumbs":"SQL Reference » Queries » ORDER BY (Sorting Results)","id":"44","title":"ORDER BY (Sorting Results)"},"45":{"body":"GROUP BY accepts a list of columns and creates aggregated rows based on each of those columns, in order. Each aggregate is returned as a single row. Each column returned must either be a column specified in the GROUP BY clause or a column created with an aggregate function , such as SUM. SELECT name, price FROM products GROUP BY name, price;\nSELECT name, SUM(price) FROM products GROUP BY name;","breadcrumbs":"SQL Reference » Queries » GROUP BY","id":"45","title":"GROUP BY"},"46":{"body":"HAVING adds a search condition to an aggregate query. SELECT name, SUM(price) FROM products GROUP BY name HAVING LENGTH(name) > 4; It is most often used with GROUP BY (seen above), but it is also legal with other aggregates: SELECT SUM(products.price) FROM products HAVING SUM(products.price) = 13;","breadcrumbs":"SQL Reference » Queries » HAVING","id":"46","title":"HAVING"},"47":{"body":"LIMIT specifies the maximum number of rows to be returned by the query. SELECT * FROM products LIMIT 2; It always makes sense to control the order of returned rows so LIMIT always returns the same rows for the same query -- unless you don't care which rows are returned. SELECT * FROM products ORDER BY price ASC LIMIT 2; OFFSET allows queries to skip rows before returning a limited set. SELECT * FROM products ORDER BY price ASC LIMIT 2 OFFSET 2;","breadcrumbs":"SQL Reference » Queries » LIMIT","id":"47","title":"LIMIT"},"48":{"body":"The VALUES keyword is used to create a static table of documents (rows). Each row is denoted by a pair of parentheses. All rows must have Union Compatibility which, for Endb, means they have the same number of columns. VALUES (1, 'Salt'), (2, 'Pepper'), (3, 'Vinegar'); Endb assigns anonymous columns the names column1, column2, etc. Columns can instead be given names with a table alias : SELECT * FROM (VALUES (1, 'Salt'), (2, 'Pepper'), (3, 'Vinegar')) AS t (product_no, name);","breadcrumbs":"SQL Reference » Queries » VALUES Lists","id":"48","title":"VALUES Lists"},"49":{"body":"The OBJECTS keyword is used to create a static table comprised of object literals, each representing a document (row). Each row is directly denoted by an object literal. OBJECTS lists do not require Union Compatibility , so jagged lists are permitted. OBJECTS {product_no: 1, name: 'Salt'}, {product_no: 2, name: 'Pepper', price: 3.99};\nSELECT * FROM (OBJECTS {product_no: 1, name: 'Salt'}, {product_no: 2, name: 'Pepper'}) as t;","breadcrumbs":"SQL Reference » Queries » OBJECTS Lists","id":"49","title":"OBJECTS Lists"},"5":{"body":"curl -d \"SELECT 'Hello World';\" -H \"Content-Type: application/sql\" -X POST http://localhost:3803/sql","breadcrumbs":"Tutorial » Quickstart » Run your first query","id":"5","title":"Run your first query"},"50":{"body":"The set operations union, intersection, and difference are available to the results of two queries.","breadcrumbs":"SQL Reference » Queries » Set Operations: UNION, INTERSECT, EXCEPT","id":"50","title":"Set Operations: UNION, INTERSECT, EXCEPT"},"51":{"body":"Append the results of one query to another. Duplicate rows are removed. SELECT * FROM products UNION SELECT * FROM new_products; To keep duplicate rows, use UNION ALL: SELECT * FROM products UNION ALL SELECT * FROM new_products;","breadcrumbs":"SQL Reference » Queries » UNION","id":"51","title":"UNION"},"52":{"body":"The intersection of two queries returns results which are found in both. SELECT * FROM products INTERSECT SELECT * FROM new_products;","breadcrumbs":"SQL Reference » Queries » INTERSECT","id":"52","title":"INTERSECT"},"53":{"body":"The difference of two queries returns only results from the first query which are not found in the second. Another way of thinking about this is that results of the second query are removed from the first. SELECT * FROM products EXCEPT SELECT * FROM ignored_products;","breadcrumbs":"SQL Reference » Queries » EXCEPT","id":"53","title":"EXCEPT"},"54":{"body":"\"Union Compatibility\" refers to the ability of two queries to be used in a union, intersection, or difference. Because Endb is dynamically-typed, the only constraint on union compatibility is the number of columns returned. In general, it only makes sense to use set operations on two queries which return either: (1) explicit columns, so order and naming are respected or (2) columns with the same names, so they are guaranteed to return in order, in the case of * queries. When applying set operations to * queries, keep in mind that the widest column set (across the entire history of the table) will be returned. If the queries return a different number of columns, set operations will result in an error: -> SELECT * FROM products UNION SELECT * FROM new_products;\n400 Bad Request\nNumber of UNION left columns: 3 does not match right columns: 2","breadcrumbs":"SQL Reference » Queries » Union-Compatibility","id":"54","title":"Union-Compatibility"},"55":{"body":"The WITH keyword is used to create Common Table Expressions , or CTEs. CTEs act like temporary tables or views within the context of a query or DML statement . CTEs are used in place of a sub-select to simplify the appearance of a query. WITH clauses take the form WITH AS (). WITH top_margin_products AS (SELECT product_no FROM products WHERE (price - cost) > 5.00)\nSELECT name FROM products\nWHERE product_no IN (SELECT product_no FROM top_margin_products);","breadcrumbs":"SQL Reference » Queries » WITH (Common Table Expressions)","id":"55","title":"WITH (Common Table Expressions)"},"56":{"body":"The RECURSIVE keyword can be added to WITH to create recursive CTEs which can refer to themselves. Recursive CTEs will always have the form UNION or UNION ALL . Here is a naive example, demonstrating the recursive construction of a Fibonacci Sequence: WITH RECURSIVE fib(previous, current) AS ( VALUES (0, 1) UNION ALL SELECT fib.current, fib.previous + fib.current FROM fib WHERE fib.previous + fib.current < 5000\n)\nSELECT * FROM fib; The most beneficial uses for WITH RECURSIVE are walking hierarchical and graph-shaped data sets -- capabilities ordinary SQL lacks. However, Endb recursive queries are also capable of solving Sudoku puzzles and constructing fractals, as seen in the test suite . (Credit goes to SQLite's delightful Outlandish Recursive Query Examples .)","breadcrumbs":"SQL Reference » Queries » WITH RECURSIVE","id":"56","title":"WITH RECURSIVE"},"57":{"body":"Repeatable reads are achieved in Endb by creating savepoints , which queries can return to later. When returning to a savepoint in the future, queries will return results according to the state of the database when the savepoint was captured. By default, savepoints have a 60-second lifespan, after which they expire. Use of a savepoint during its lifespan will renew its lease, allowing it to be used for another 60 seconds. Savepoints can be forcibly expired with RELEASE. Attempting to use a savepoint that has been expired or released will return No active savepoint: .","breadcrumbs":"SQL Reference » Queries » Repeatable Reads: SAVEPOINT, ROLLBACK, RELEASE","id":"57","title":"Repeatable Reads: SAVEPOINT, ROLLBACK, RELEASE"},"58":{"body":"Other SQL dialects have more transaction-specific semantics for SAVEPOINT, ROLLBACK, and RELEASE. Because this difference in behaviour may be confusing to users familiar with other databases, we provide the example below. The result of the final query returns the first two dungeons, which were inserted prior to the savepoint, but not \"Tower of Hera\". INSERT INTO dungeons {name: 'Eastern Palace'};\nINSERT INTO dungeons {name: 'Desert Palace'};\nSAVEPOINT desert_palace;\nINSERT INTO dungeons {name: 'Tower of Hera'};\nROLLBACK TO desert_palace; SELECT * FROM dungeons; NOTE: The ROLLBACK and SELECT above must be executed together, in the same transaction. (Normally this will mean executing both statements in a single HTTP request.)","breadcrumbs":"SQL Reference » Queries » Minimal Example","id":"58","title":"Minimal Example"},"59":{"body":"The SAVEPOINT operator captures a new savepoint at the time it executes. Savepoints can be named or anonymous. Anonymous savepoints are named with a UUID. The name of the savepoint is returned as an attribute named result. SAVEPOINT desert_palace;\n-- [{'result': 'desert_palace'}]\nSAVEPOINT;\n-- [{'result': '0b12de43-1c92-4d92-ab7c-51c5a5129074'}]","breadcrumbs":"SQL Reference » Queries » SAVEPOINT","id":"59","title":"SAVEPOINT"},"6":{"body":"Endb is still in early alpha. While in alpha, new versions are not guaranteed to have binary-compatible storage with previous versions. We encourage you to experiment with Endb but please do not use it in production until a General Availability release.","breadcrumbs":"Tutorial » Quickstart » Warning: Early Alpha","id":"6","title":"Warning: Early Alpha"},"60":{"body":"Inside the scope of a transaction (normally a single HTTP request), ROLLBACK is used to return to a savepoint. ROLLBACK TO returns to a named savepoint (by name) or an anonymous savepoint (by string UUID). When used without a savepoint name, ROLLBACK returns to the last anonymous savepoint. Queries executed inside such a transaction return results according to the state of the database when the savepoint was created. The use of ROLLBACK renews the lease of the associated savepoint. ROLLBACK TO desert_palace; SELECT * FROM dungeons;\nROLLBACK TO 'eab07765-de6f-4f74-8052-838dd29ee8e7'; SELECT * FROM dungeons;\nROLLBACK; SELECT * FROM dungeons;","breadcrumbs":"SQL Reference » Queries » ROLLBACK","id":"60","title":"ROLLBACK"},"61":{"body":"The RELEASE keyword expires a savepoint so it can no longer be used. Anonymous savepoints can be released by string UUID. RELEASE desert_palace;\nRELEASE 'f7c314dd-47b9-4c85-9502-b8e35c82b935';","breadcrumbs":"SQL Reference » Queries » RELEASE","id":"61","title":"RELEASE"},"62":{"body":"","breadcrumbs":"SQL Reference » SQL Data Types » SQL Data Types","id":"62","title":"SQL Data Types"},"63":{"body":"Null serves a variety of purposes in Endb. Explicit: You can provide an explicit NULL value \"Unknown\": As with any SQL, you will receive a null when 3-Valued Logic cannot determine if a statement is true or false \"Missing\": Jagged rows will return NULL for columns projected for a document which does not contain them","breadcrumbs":"SQL Reference » SQL Data Types » NULL","id":"63","title":"NULL"},"64":{"body":"Endb accepts unbounded, variable-length strings with either single or double quotes. CHAR and VARCHAR are synonyms for TEXT. INSERT INTO users (name, title) VALUES ('River', \"Prodigy\"); When casting using the CHAR synonym, an optional integer argument indicates the desired length of the resulting string, padded with spaces: SELECT CAST(123 AS CHAR(10));\n-- [{'column1': '123 '}]","breadcrumbs":"SQL Reference » SQL Data Types » TEXT (CHAR, VARCHAR)","id":"64","title":"TEXT (CHAR, VARCHAR)"},"65":{"body":"Boolean values can be TRUE, FALSE, or NULL.","breadcrumbs":"SQL Reference » SQL Data Types » BOOLEAN","id":"65","title":"BOOLEAN"},"66":{"body":"64-bit integer capable of auto-promotion to 128-bit integer.","breadcrumbs":"SQL Reference » SQL Data Types » INTEGER (BIGINT)","id":"66","title":"INTEGER (BIGINT)"},"67":{"body":"A 64-bit IEEE 754 floating point number, or double.","breadcrumbs":"SQL Reference » SQL Data Types » REAL (DOUBLE)","id":"67","title":"REAL (DOUBLE)"},"68":{"body":"Timestamps can be represented as either SQL timestamps, according to the SQL Specification, or ISO timestamps. The following are legal timestamp literals: 2007-01-01T00:00:00 2007-01-01T00:00:00.123Z 2007-01-01T00:00:00.000000Z TIMESTAMP '2007-01-01 00:00:00' TIMESTAMP '2007-01-01 00:00:00.000000Z'","breadcrumbs":"SQL Reference » SQL Data Types » TIMESTAMP","id":"68","title":"TIMESTAMP"},"69":{"body":"Dates can be represented as either SQL dates, according to the SQL Specification, or ISO dates. The following are legal date literals: 2007-01-01 DATE '2007-01-01'","breadcrumbs":"SQL Reference » SQL Data Types » DATE","id":"69","title":"DATE"},"7":{"body":"You can send SQL statements to endb over HTTP. Any HTTP client will do.","breadcrumbs":"Tutorial » Try It! » Try It!","id":"7","title":"Try It!"},"70":{"body":"Times can be represented as either SQL times, according to the SQL Specification, or ISO times. The following are legal time literals: 23:59:12 23:59:12.12345 TIME '23:59:12' TIME '23:59:12.12345'","breadcrumbs":"SQL Reference » SQL Data Types » TIME","id":"70","title":"TIME"},"71":{"body":"An interval (or duration ) is created whenever two times are subtracted. SELECT 2001-01-02 - 2001-01-01; Interval literals can be constructed with ISO 8601 syntax : PT12H30M5S P1Y2M10DT2H30M This is equivalent to the same ISO 8601 syntax provided as a string to the DURATION constructor: DURATION('PT12H30M5S') DURATION('P1Y2M10DT2H30M') Interval literals can also be constructed with the classic SQL intervals DSL: INTERVAL '1-2' YEAR TO MONTH INTERVAL '0 12:34:56.789' DAY TO SECOND","breadcrumbs":"SQL Reference » SQL Data Types » INTERVAL (DURATION)","id":"71","title":"INTERVAL (DURATION)"},"72":{"body":"Binary Large Objects can be encoded as hexidecimal literals or cast from strings. x'DEADBEEF' CAST(\"hello\" AS BLOB)","breadcrumbs":"SQL Reference » SQL Data Types » BLOB (VARBINARY)","id":"72","title":"BLOB (VARBINARY)"},"73":{"body":"Arrays can be created with array literals similar to JSON. [\"one\", \"two\", \"three\"] Alternatively, arrays can also be created using a literal syntax similar to that in the SQL Specification or a constructor function. ARRAY [\"one\", \"two\", \"three\"] ARRAY(\"one\", \"two\", \"three\") Array literals can contain the spread operator SELECT [1, 2, ...[3, 4], 5];\n-- [{'column1': [1, 2, 3, 4, 5]}] Array equality is tested lexicographically .","breadcrumbs":"SQL Reference » SQL Data Types » ARRAY","id":"73","title":"ARRAY"},"74":{"body":"Objects (which can also be thought of as documents, or rows) can be created with object literals enclosed in curly braces, similar to JSON. Keys in object literals can be quoted or unquoted. {name: \"Hanna\", birthday: 1982-12-31} {'name': \"Hanna\", 'birthday': 1982-12-31} Alternatively, objects can be created using either an OBJECT constructor keyword, similar to that in the SQL Specification. OBJECT(name: 'Hanna', birthday: 1982-12-31) Object literals can contain spreads , computed fields , shorthands , and row literals . SELECT { a: 1, ...[2, 3] };\n-- [{'column1': {'0': 2, '1': 3, 'a': 1}}]\nSELECT { foo: 2, ['foo' || 2]: 5 };\n-- [{'column1': {'foo': 2, 'foo2': 5}}]\nSELECT {p.name, c.discounted} FROM products p JOIN coupons c ON p.name = c.name;\n-- [{'column1': {'discounted': 2.99, 'name': 'Salt'}}]\nSELECT {product: {p.*}, discounted: c.discounted} FROM products p JOIN coupons c ON p.name = c.name;\n-- [{'column1': {'discounted': 2.99, 'product': {'name': 'Salt', 'price': 5.99}}}] Object equality is tested by comparing each key-value pair as an array.","breadcrumbs":"SQL Reference » SQL Data Types » OBJECT","id":"74","title":"OBJECT"},"75":{"body":"","breadcrumbs":"SQL Reference » SQL Data Types » Dynamic Literals","id":"75","title":"Dynamic Literals"},"76":{"body":"It is possible return an entire document (row) as a single literal value. The syntax is akin to Postgres ROW literals . Unlike table.*, which pads non-existent columns with NULL, a row literal returns exactly the schema specified for each individual row. { table.* } Example usage: SELECT { products.* } FROM products; As a shorthand, a table's name may be used in the SELECT clause to return entire rows as documents: -> SELECT users FROM users;\n-- [{'users': {'email': 'patrick@oracle.com', 'name': 'Patrick'}},\n-- {'users': {'email': 'preethi@shopify.ca', 'name': 'Preethi'}}] NOTE: When a table contains a column of the same name, the column takes precedence and a single column is returned, as usual: -> SELECT status FROM status;\n-- [{'status': 'error'}, {'status': 'ok'}]","breadcrumbs":"SQL Reference » SQL Data Types » Row Literals","id":"76","title":"Row Literals"},"77":{"body":"The Spread Operator (..., sometimes known as \"splat\") can be used to directly flatten/unnest one collection (an array, object, or row literal) into another. Strings are treated as character collections. SELECT [1, 2, ...[3, 4], 5];\n-- [{'column1': [1, 2, 3, 4, 5]}] SELECT [1, 2, ...\"foo\", 5];\n-- [{'column1': [1, 2, 'f', 'o', 'o', 5]}] If an array is spread into an object, its ordinals will be used as properties: SELECT { a: 1, ...{b: 2} };\n-- [{'column1': {'a': 1, 'b': 2}}] SELECT { a: 1, ...[2, 3] };\n-- [{'column1': {'0': 2, '1': 3, 'a': 1}}]","breadcrumbs":"SQL Reference » SQL Data Types » Spread","id":"77","title":"Spread"},"78":{"body":"In the key/property position, square brackets are used to construct computed fields in object literals . Computed fields are implicitly cast to string. SELECT { foo: 2, [2 + 2]: 5 };\n-- [{'column1': {'4': 5, 'foo': 2}}]\nSELECT { foo: 2, ['foo' || 2]: 5 };\n-- [{'column1': {'foo': 2, 'foo2': 5}}]","breadcrumbs":"SQL Reference » SQL Data Types » Computed Fields","id":"78","title":"Computed Fields"},"79":{"body":"Column names can be referred to in place of key-value pairs in object literals . SELECT {p.name, c.discounted} FROM products p JOIN coupons c ON p.name = c.name;\n-- [{'column1': {'discounted': 2.99, 'name': 'Salt'}}]","breadcrumbs":"SQL Reference » SQL Data Types » Shorthands","id":"79","title":"Shorthands"},"8":{"body":"Our first couple examples will use curl , which you probably already have installed. curl -d \"INSERT INTO users (name) VALUES ('Tianyu')\" -H \"Content-Type: application/sql\" -X POST http://localhost:3803/sql\ncurl -d \"SELECT * FROM users\" -H \"Content-Type: application/sql\" -X POST http://localhost:3803/sql Read more in the full HTTP API docs .","breadcrumbs":"Tutorial » Try It! » curl","id":"8","title":"curl"},"80":{"body":"Endb date/time data types currently only support times encoded as UTC.","breadcrumbs":"SQL Reference » SQL Data Types » Note on timezones","id":"80","title":"Note on timezones"},"81":{"body":"Operations performed on scalars will attempt to widen those scalars for the purpose of the operation, if reasonable. -> select 2.0 = 2;\n[{'column1': True}] This widening includes joins on scalars, but not collections (ARRAY or OBJECT): -> INSERT INTO zig {at: 2023-12-21, val: 2}\n[{'result': 1}]\n-> INSERT INTO zag {at: 2023-12-21T00:00:00, val: 2.0}\n[{'result': 1}]\n-> SELECT * FROM zig i JOIN zag a ON i.at = a.at;\n[{'at': datetime.datetime(2023, 12, 21, 0, 0, tzinfo=datetime.timezone.utc), 'val': 2.0}]\n-> SELECT * FROM zig i JOIN zag a ON i.val = a.val;\n[{'at': datetime.datetime(2023, 12, 21, 0, 0, tzinfo=datetime.timezone.utc), 'val': 2.0}]","breadcrumbs":"SQL Reference » SQL Data Types » Note on type widening","id":"81","title":"Note on type widening"},"82":{"body":"","breadcrumbs":"SQL Reference » Operators » Operators","id":"82","title":"Operators"},"83":{"body":"Two values can be compared using standard SQL comparison operators: =, == (equals) > (greater than) < (less than) >= (greater than or equal to) <= (less than or equal to) <>, != (not equal to) SELECT * FROM products WHERE NOT name = 'Coffee';\nSELECT * FROM products WHERE name = 'Coffee' AND name <> 'Kaapi';\nSELECT * FROM products WHERE name > 'Cake' AND price >= 5.00;","breadcrumbs":"SQL Reference » Operators » Comparison","id":"83","title":"Comparison"},"84":{"body":"BETWEEN returns TRUE when a value is greater-than-or-equal-to the first limit and less-than-or-equal-to the second. It has the form BETWEEN x AND y. It can be negated with the form NOT BETWEEN x AND y. SELECT * FROM products WHERE price BETWEEN 2.00 AND 4.00;\nSELECT * FROM products WHERE price NOT BETWEEN 2.00 AND 4.00; NOTE: BETWEEN can also be used with System Time .","breadcrumbs":"SQL Reference » Operators » BETWEEN","id":"84","title":"BETWEEN"},"85":{"body":"WHERE clauses can be modified and combined with standard SQL boolean operators: IS and IS NOT behave like = (==) and <> (!=) , respectively. They are usually used to augment equality checks to test for NULL, which is the third boolean value, representing \"unknown\". When both sides of IS evaluate to NULL it returns TRUE. When only one side of IS NOT evaluates to NULL it returns TRUE, When only one side of IS evaluates to NUll it returns FALSE. When both sides of IS NOT evaluates to NULL it returns FALSE. SELECT * FROM products WHERE product_no IS NULL;\nSELECT * FROM products WHERE product_no IS NOT NULL;\nSELECT * FROM products WHERE product_no IS 379; NOT can be prefixed to any clause to negate it: SELECT * FROM products WHERE NOT (name = 'Coffee'); AND returns true if two clauses both return true: SELECT * FROM products WHERE name = 'Coffee' AND price > 2.99; OR returns true if either of two clauses return true: SELECT * FROM products WHERE name = 'Coffee' OR name = 'Kaapi';","breadcrumbs":"SQL Reference » Operators » Boolean Operators","id":"85","title":"Boolean Operators"},"86":{"body":"Standard SQL mathemetical operators are available to any two numeric values: + (addition) - (subtraction) * (multiplication) / (division) % (modulo; integer remainder of division) << (left bit shift) >> (right bit shift) +NUMBER (unary plus) -NUMBER (unary minus) SELECT 1 + 3.555;\nSELECT 1 - 3.555;\nSELECT 2 * 3.555;\nSELECT 2 / 3.555;\nSELECT 2 % 3.555;\nSELECT 62 << 2;\nSELECT 62 >> 2;\nSELECT +128.5;\nSELECT -128.5; NOTE: Mathematical functions are documented under Functions .","breadcrumbs":"SQL Reference » Operators » Math","id":"86","title":"Math"},"87":{"body":"Standard SQL bitwise manipulation operators are available to any two values. & (bitwise and) | (bitwise or) The bitwise not operator is also available to a single value: ~ (bitwise not) SELECT 1 & 2;\nSELECT 1 | 2;\nSELECT ~1;","breadcrumbs":"SQL Reference » Operators » Bitwise Operators","id":"87","title":"Bitwise Operators"},"88":{"body":"LIKE is the operator equivalent of the LIKE function . LIKE returns TRUE if a string matches the supplied LIKE pattern, as defined below: A pattern can be a string literal. It can also contain underscores (_) and/or percentage symbols (%). An underscore matches exactly one character. A percentage symbol matches zero or more characters. Backslash escapes the following character to make it a literal. Use ESCAPE to override the default backslash escape character. SELECT * FROM products WHERE name LIKE 'Tofu';\nSELECT * FROM products WHERE name LIKE 'Tof_';\nSELECT * FROM products WHERE name LIKE '%of%';\nSELECT * FROM products WHERE name LIKE '\\%of\\%';\nSELECT * FROM products WHERE name LIKE 'X%ofX%' ESCAPE 'X'; NOT LIKE is used to invert the results of the match. SELECT * FROM products WHERE name NOT LIKE '%of%'; NOTE: Endb LIKE is case-sensitive.","breadcrumbs":"SQL Reference » Operators » LIKE","id":"88","title":"LIKE"},"89":{"body":"REGEXP returns TRUE if a string matches the supplied regular expression. REGEXP may be prefixed with NOT. SELECT * FROM products WHERE name REGEXP '.*ee|.*ea';\nSELECT * FROM products WHERE name NOT REGEXP '.*[fst]+.*';","breadcrumbs":"SQL Reference » Operators » REGEXP","id":"89","title":"REGEXP"},"9":{"body":"Ultimately, Endb will ship with permissively-licensed client libraries for all major languages. For now, we have provided some example code you can try: https://github.com/endatabas/endb/tree/main/examples","breadcrumbs":"Tutorial » Try It! » Example Libraries","id":"9","title":"Example Libraries"},"90":{"body":"GLOB returns TRUE if a string matches the supplied UNIX glob. GLOB may be prefixed with NOT. SELECT * FROM products WHERE name GLOB '*of*';\nSELECT * FROM avatars WHERE filename NOT GLOB '/opt/local/avatars/*/*.png'; NOTE: GLOB is case-sensitive.","breadcrumbs":"SQL Reference » Operators » GLOB","id":"90","title":"GLOB"},"91":{"body":"MATCH returns TRUE if the value on the left contains the value on the right, at the top level. Note that a top-level array to the right of the MATCH refers to a set of values that all need to match, not a literal array. The following expressions return TRUE: SELECT 'foo' MATCH 'foo';\nSELECT [1, 2, 3] MATCH [3, 1];\nSELECT {user: 'foo', age: 42} MATCH {age: 42};\nSELECT {a: [1, 2, {c: 3, x: 4}], c: 'b'} MATCH {a: [{x: 4}, 1]}; The following expressions return FALSE: SELECT [1, 2, [1, 3]] MATCH [1, 3];\nSELECT {foo: {bar: 'baz'}} MATCH {bar: 'baz'};\nSELECT {a: [1, 2, {c: 3, x: 4}], c: 'b'} MATCH {a: [{x: 4}, 3]}; NOTE: The @> operator is a synonym for MATCH. It is provided as a convenience for users accustomed to the equivalent JSON Containment Operator in Postgres .","breadcrumbs":"SQL Reference » Operators » MATCH (Containment)","id":"91","title":"MATCH (Containment)"},"92":{"body":"SOME is a synonym for ANY. ANY qualifies a subquery by comparing a single column or literal value with the result of that subquery. ANY is used in the form ANY (). It returns true if the subquery returns a one or more values for which the operator is true. The operator must return a boolean and the subquery must return a single column. SELECT 1500 < SOME (SELECT price FROM products);","breadcrumbs":"SQL Reference » Operators » ANY, SOME","id":"92","title":"ANY, SOME"},"93":{"body":"ALL qualifies a subquery by comparing a single column or literal value with the result of that subquery. ALL is used in the form ALL (). It returns true only if all values returned by the subquery are true for the operator provided. The operator must return a boolean and the subquery must return a single column. SELECT \"ok\" = ALL (SELECT status_code FROM statuses);","breadcrumbs":"SQL Reference » Operators » ALL","id":"93","title":"ALL"},"94":{"body":"EXISTS returns TRUE if the subquery which follows it returns at least one row. SELECT name FROM products WHERE EXISTS (SELECT 1 FROM coupons WHERE name = products.name);","breadcrumbs":"SQL Reference » Operators » EXISTS","id":"94","title":"EXISTS"},"95":{"body":"The standard SQL IN clause can be used to test lists and subqueries for containment of a value. SELECT * FROM products WHERE price IN (5.00, 5.99);\nSELECT * FROM products WHERE price IN (SELECT price FROM coupons); NOTE: Use MATCH to test for containment of a value in an array.","breadcrumbs":"SQL Reference » Operators » IN","id":"95","title":"IN"},"96":{"body":"The standard SQL NOT IN clause can be used to test lists and subqueries for absence of a value. SELECT * FROM products WHERE price NOT IN (5.00, 5.99);\nSELECT * FROM products WHERE price NOT IN (SELECT price FROM coupons); NOTE: Use MATCH to test for absence of a value in an array.","breadcrumbs":"SQL Reference » Operators » NOT IN","id":"96","title":"NOT IN"},"97":{"body":"The || operator concatenates two strings or arrays supplied as arguments. When concatenating to an array element: other elements, arrays, and blobs are accepted as the second argument. When concatenating to an array: arrays, blobs, and array elements are accepted as the second argument. Elements other than strings are cast to strings when concatenated with each other. Multiple operators can be chained together. SELECT \"Hello\" || \"World\";\nSELECT [1, 2, 3] || [4, 5, 6];\nSELECT 1 || 2;\nSELECT \"Hello\" || [\"World\"];\nSELECT [\"Hello\"] || \"World\";\nSELECT \"Hello\" || \"World\" || \"And\" || \"Friends\"; The Concatenation Operator is equivalent to the CONCAT function .","breadcrumbs":"SQL Reference » Operators » || (Concatenation)","id":"97","title":"|| (Concatenation)"},"98":{"body":"","breadcrumbs":"SQL Reference » Functions » Functions","id":"98","title":"Functions"},"99":{"body":"","breadcrumbs":"SQL Reference » Functions » String Functions","id":"99","title":"String Functions"}},"length":254,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"0":{":":{"0":{"0":{":":{"0":{"0":{".":{"0":{"0":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"z":{"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":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":16,"docs":{"122":{"tf":2.0},"123":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"137":{"tf":1.0},"161":{"tf":2.23606797749979},"162":{"tf":2.23606797749979},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"225":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"68":{"tf":2.6457513110645907},"69":{"tf":2.0},"71":{"tf":1.7320508075688772}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{".":{"0":{"0":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"3":{"df":0,"docs":{},"z":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"137":{"tf":1.0},"224":{"tf":1.0},"68":{"tf":1.0}},"z":{"df":5,"docs":{"123":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":3,"docs":{"161":{"tf":1.0},"162":{"tf":1.0},"71":{"tf":1.0}}},"3":{":":{"0":{"4":{":":{"0":{"5":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"162":{"tf":1.0},"163":{"tf":1.0}}},"4":{"df":9,"docs":{"161":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}}},"5":{"df":4,"docs":{"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"164":{"tf":1.0}}},"7":{"df":5,"docs":{"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0}}},"8":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"156":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"236":{"tf":1.0}}},"9":{"df":1,"docs":{"245":{"tf":1.4142135623730951}},"t":{"2":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":3,"docs":{"204":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}}}},"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":{"1":{"2":{"d":{"df":0,"docs":{},"e":{"4":{"3":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"105":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"41":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":2.0}}},"1":{",":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":6,"docs":{"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0}}}}}}}},"2":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"4":{"0":{"df":3,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"40":{"tf":1.0}}},"df":1,"docs":{"40":{"tf":1.0}}},"5":{"0":{"df":3,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"40":{"tf":1.0}}},"df":1,"docs":{"40":{"tf":1.0}}},"9":{"8":{"df":1,"docs":{"25":{"tf":1.0}}},"9":{"df":4,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"25":{"tf":1.0}}},"df":1,"docs":{"117":{"tf":1.0}}},"df":1,"docs":{"101":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"229":{"tf":1.0}}}}},"1":{"df":1,"docs":{"233":{"tf":1.0}}},"2":{"3":{"df":5,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"190":{"tf":1.0},"64":{"tf":1.0}}},"8":{".":{"5":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"66":{"tf":1.0}}},":":{"3":{"4":{":":{"5":{"6":{".":{"7":{"8":{"9":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"74":{"tf":1.7320508075688772},"81":{"tf":2.0}}},"3":{"df":1,"docs":{"46":{"tf":1.0}}},"5":{"0":{"0":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":0,"docs":{},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"9":{"2":{"8":{"df":1,"docs":{"245":{"tf":1.0}}},"9":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":1,"docs":{"233":{"tf":1.0}}},"4":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"df":2,"docs":{"233":{"tf":1.7320508075688772},"235":{"tf":1.0}}},"2":{"df":1,"docs":{"74":{"tf":1.7320508075688772}}},"5":{"df":1,"docs":{"233":{"tf":1.0}}},"6":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"0":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"9":{"2":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":29,"docs":{"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"132":{"tf":1.0},"140":{"tf":1.0},"145":{"tf":1.0},"168":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":2.23606797749979},"179":{"tf":1.4142135623730951},"201":{"tf":1.0},"205":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"77":{"tf":3.0},"81":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"91":{"tf":2.8284271247461903},"94":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"2":{",":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}},"'":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"'":{"2":{"0":{"2":{"3":{"df":5,"docs":{"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"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":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"0":{"df":2,"docs":{"25":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":1,"docs":{"81":{"tf":2.0}}},"9":{"9":{"df":7,"docs":{"217":{"tf":1.0},"23":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"1":{"df":8,"docs":{"161":{"tf":2.0},"162":{"tf":2.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"241":{"tf":1.0},"71":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"230":{"tf":1.0}}},"6":{"df":1,"docs":{"241":{"tf":1.0}}},"7":{"df":4,"docs":{"224":{"tf":1.4142135623730951},"241":{"tf":1.0},"68":{"tf":2.23606797749979},"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"1":{"0":{"df":3,"docs":{"229":{"tf":1.0},"233":{"tf":1.0},"241":{"tf":1.0}}},"1":{"df":3,"docs":{"204":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}}},"2":{"df":1,"docs":{"241":{"tf":1.0}}},"5":{"df":1,"docs":{"241":{"tf":1.0}}},"6":{"df":1,"docs":{"241":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":3,"docs":{"229":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"241":{"tf":1.0},"251":{"tf":1.0}}},"3":{"df":8,"docs":{"13":{"tf":1.4142135623730951},"156":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"225":{"tf":1.0},"233":{"tf":1.0},"252":{"tf":1.0},"81":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"134":{"tf":1.0}}},"1":{"df":1,"docs":{"81":{"tf":1.7320508075688772}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"\"":{",":{"\"":{"@":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"\"":{":":{"\"":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"d":{":":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"\"":{"df":0,"docs":{},"}":{"df":0,"docs":{},"}":{",":{"df":0,"docs":{},"{":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"1":{"\"":{":":{"1":{",":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"2":{"\"":{":":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"]":{",":{"[":{"1":{",":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"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":5,"docs":{"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0}}},"3":{":":{"3":{"0":{":":{"0":{"0":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"9":{":":{"1":{"2":{".":{"1":{"2":{"3":{"4":{"5":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"124":{"tf":1.0}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":2,"docs":{"158":{"tf":1.0},"159":{"tf":1.0}}},"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":{"179":{"tf":1.4142135623730951}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":3,"docs":{"156":{"tf":1.0},"158":{"tf":1.0},"236":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":37,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"127":{"tf":1.0},"132":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":2.23606797749979},"176":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.7320508075688772},"226":{"tf":1.0},"23":{"tf":1.0},"238":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":2.23606797749979},"77":{"tf":2.8284271247461903},"78":{"tf":2.6457513110645907},"81":{"tf":1.4142135623730951},"86":{"tf":2.23606797749979},"87":{"tf":1.4142135623730951},"91":{"tf":2.0},"97":{"tf":1.4142135623730951}}},"3":{",":{"4":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},".":{"0":{"0":{"df":1,"docs":{"29":{"tf":1.0}}},"df":1,"docs":{"39":{"tf":1.0}}},"5":{"5":{"5":{"df":1,"docs":{"86":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{"df":5,"docs":{"218":{"tf":1.0},"23":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":0,"docs":{},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"159":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"3":{"5":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"74":{"tf":1.7320508075688772}}},"7":{"9":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"3":{":":{"3":{"8":{"0":{"3":{"df":2,"docs":{"195":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"198":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":1,"docs":{"232":{"tf":1.0}}},"df":21,"docs":{"100":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"132":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.7320508075688772},"179":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.0},"48":{"tf":1.4142135623730951},"54":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"77":{"tf":2.0},"91":{"tf":2.6457513110645907},"97":{"tf":1.0}}},"4":{".":{"0":{"0":{"df":2,"docs":{"23":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"7":{"7":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"9":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"54":{"tf":1.0}}},"1":{"df":1,"docs":{"215":{"tf":1.7320508075688772}}},"9":{"a":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":3,"docs":{"179":{"tf":1.0},"224":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"5":{"6":{"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"7":{"1":{"4":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"b":{"9":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":0,"docs":{},"e":{"1":{"2":{"0":{"0":{"b":{"df":0,"docs":{},"f":{"a":{"4":{"7":{"df":1,"docs":{"144":{"tf":1.0}}},"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":{"8":{"5":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"9":{"2":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"100":{"tf":1.0},"106":{"tf":1.4142135623730951},"132":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":2.0},"178":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"42":{"tf":1.0},"46":{"tf":1.0},"73":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"91":{"tf":2.0},"97":{"tf":1.0}},"f":{"7":{"4":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"}":{"]":{".":{"a":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{".":{"0":{"0":{"df":5,"docs":{"29":{"tf":1.0},"55":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"9":{"8":{"df":2,"docs":{"24":{"tf":1.0},"28":{"tf":1.0}}},"9":{"df":5,"docs":{"139":{"tf":1.0},"23":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"c":{"5":{"a":{"5":{"1":{"2":{"9":{"0":{"7":{"4":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"101":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.4142135623730951},"29":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"77":{"tf":2.0},"78":{"tf":2.0},"97":{"tf":1.0}}},"6":{"0":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}},"4":{"/":{"1":{"2":{"8":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"224":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}},"6":{"df":1,"docs":{"108":{"tf":1.0}}},"7":{"df":1,"docs":{"108":{"tf":1.0}}},"df":2,"docs":{"29":{"tf":1.7320508075688772},"97":{"tf":1.0}},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"238":{"tf":1.0}}}}},"7":{".":{"9":{"9":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"5":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{"6":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"4":{"df":2,"docs":{"224":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":1,"docs":{"112":{"tf":1.0}}},"8":{"9":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"180":{"tf":1.7320508075688772},"29":{"tf":1.0}}},"8":{".":{"9":{"9":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"5":{"2":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{"d":{"d":{"2":{"9":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"8":{"df":0,"docs":{},"e":{"7":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"1":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"233":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"147":{"tf":1.0},"224":{"tf":1.4142135623730951}}},"9":{".":{"9":{"9":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"7":{"1":{"9":{"9":{"2":{"5":{"4":{"7":{"4":{"0":{"9":{"9":{"2":{".":{"1":{"2":{"3":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"2":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"176":{"tf":1.0}}},"7":{",":{"9":{"6":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"176":{"tf":1.0},"228":{"tf":1.0}}},"9":{"df":3,"docs":{"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"_":{"df":1,"docs":{"88":{"tf":1.0}}},"a":{".":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"b":{"7":{"c":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"120":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":10,"docs":{"10":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.0},"241":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"58":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}}}}},"c":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":17,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"208":{"tf":1.7320508075688772},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.0},"35":{"tf":1.4142135623730951},"45":{"tf":1.0},"64":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"125":{"tf":1.0},"151":{"tf":1.0},"155":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"155":{"tf":1.0},"175":{"tf":1.0}}}}}}}},"r":{"d":{"df":6,"docs":{"13":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"233":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"120":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"120":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"55":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"20":{"tf":1.0},"57":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"228":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"243":{"tf":1.0},"251":{"tf":2.0}}}}},"d":{"df":5,"docs":{"15":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.0},"46":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"183":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"245":{"tf":1.0}}}}}}},"df":0,"docs":{}},"[":{"0":{"]":{".":{"c":{"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":5,"docs":{"14":{"tf":1.0},"168":{"tf":1.0},"229":{"tf":1.4142135623730951},"238":{"tf":1.0},"56":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"33":{"tf":1.0},"43":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"253":{"tf":1.0}}}}}}},"g":{"df":1,"docs":{"91":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":5,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"134":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"16":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":2,"docs":{"228":{"tf":1.0},"241":{"tf":1.0}},"m":{"df":1,"docs":{"198":{"tf":1.0}}}},"k":{"a":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"a":{"df":3,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"a":{"df":4,"docs":{"24":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"48":{"tf":1.0}},"s":{"df":2,"docs":{"120":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":8,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"181":{"tf":1.0},"201":{"tf":1.4142135623730951},"239":{"tf":1.0},"246":{"tf":1.0},"47":{"tf":1.0},"57":{"tf":1.0}}},"y":{"d":{"b":{"df":2,"docs":{"241":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"236":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"234":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}}}},"z":{"df":0,"docs":{},"o":{"'":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":2,"docs":{"194":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":5,"docs":{"176":{"tf":1.0},"193":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}},"n":{"df":5,"docs":{"110":{"tf":1.0},"187":{"tf":1.0},"234":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":6,"docs":{"13":{"tf":1.0},"190":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"250":{"tf":1.0},"40":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":10,"docs":{"16":{"tf":1.0},"19":{"tf":1.0},"216":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0},"28":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"237":{"tf":1.0},"241":{"tf":1.4142135623730951},"250":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"245":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"239":{"tf":1.0}}}},"t":{"df":5,"docs":{"228":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"216":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":5,"docs":{"37":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"15":{"tf":1.0},"21":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"77":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"0":{"tf":1.0},"235":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"232":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"220":{"tf":2.0},"228":{"tf":1.0},"234":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":6,"docs":{"192":{"tf":1.0},"199":{"tf":1.0},"238":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"8":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"218":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"235":{"tf":1.4142135623730951},"41":{"tf":1.0},"51":{"tf":1.0}},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"203":{"tf":2.23606797749979},"204":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.7320508075688772},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0}}}}}},"l":{"d":{"+":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"204":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":14,"docs":{"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"205":{"tf":1.7320508075688772},"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},"216":{"tf":1.0},"220":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"n":{"d":{".":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"213":{"tf":1.7320508075688772},"220":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"214":{"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":{}}},"x":{"df":3,"docs":{"207":{"tf":1.7320508075688772},"211":{"tf":1.7320508075688772},"216":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"109":{"tf":1.0},"234":{"tf":1.0}}},"df":2,"docs":{"134":{"tf":1.0},"54":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"168":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"238":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"227":{"tf":1.0},"242":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"238":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"110":{"tf":1.7320508075688772},"141":{"tf":1.0},"147":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"206":{"tf":1.0},"215":{"tf":1.0},"233":{"tf":1.0},"64":{"tf":1.0},"97":{"tf":1.7320508075688772}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"109":{"tf":1.0},"127":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"16":{"tf":1.0},"230":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"(":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":1,"docs":{"40":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"132":{"tf":1.7320508075688772},"40":{"tf":1.0}}}}},"df":0,"docs":{}},"df":22,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"132":{"tf":2.23606797749979},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"180":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772},"73":{"tf":2.6457513110645907},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.0},"91":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":2.449489742783178}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"220":{"tf":3.0},"228":{"tf":1.0},"234":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.0}}}}}},"s":{"c":{"df":2,"docs":{"44":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"120":{"tf":1.0}},"h":{"df":1,"docs":{"120":{"tf":1.0}}}}},"k":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"234":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"185":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":2.449489742783178},"191":{"tf":1.7320508075688772},"20":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"10":{"tf":1.0},"206":{"tf":1.0},"220":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"2":{"df":1,"docs":{"120":{"tf":1.0}}},"df":1,"docs":{"120":{"tf":1.0}},"h":{"df":1,"docs":{"120":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"229":{"tf":1.0},"233":{"tf":1.0},"57":{"tf":1.0},"81":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"131":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":4,"docs":{"229":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.0},"215":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"215":{"tf":1.4142135623730951},"33":{"tf":1.0}}}}},"o":{"df":1,"docs":{"66":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":11,"docs":{"160":{"tf":1.0},"175":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"29":{"tf":1.0},"50":{"tf":1.0},"6":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"130":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"11":{"tf":1.0},"158":{"tf":1.0},"215":{"tf":1.0}}}},"df":1,"docs":{"237":{"tf":1.0}}},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"250":{"tf":1.0}}}}}},"b":{"'":{"1":{"5":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"]":{"[":{"'":{"a":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{".":{"[":{"'":{"a":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"169":{"tf":1.0}}},"c":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"1":{"df":0,"docs":{},"e":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}},"8":{"df":0,"docs":{},"e":{"3":{"5":{"c":{"8":{"2":{"b":{"9":{"3":{"5":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"[":{"'":{"a":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":2.6457513110645907}}}}}}},"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"13":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"229":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"235":{"tf":1.0}}}},"r":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"6":{"4":{"(":{"'":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"'":{"0":{"1":{"0":{"2":{"0":{"3":{"df":1,"docs":{"143":{"tf":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":{"143":{"tf":2.0}}},"df":0,"docs":{}},"df":11,"docs":{"120":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"225":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"25":{"tf":1.0},"45":{"tf":1.0}}},"i":{"c":{"df":6,"docs":{"11":{"tf":1.0},"186":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"215":{"tf":1.7320508075688772},"33":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"y":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":8,"docs":{"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"225":{"tf":1.0},"77":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"233":{"tf":1.0},"235":{"tf":1.0}}}}},"df":1,"docs":{"29":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"20":{"tf":1.0},"47":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"12":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"175":{"tf":1.0},"192":{"tf":1.0},"233":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"85":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"131":{"tf":1.0},"203":{"tf":1.0},"234":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"58":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"232":{"tf":1.0},"234":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":8,"docs":{"167":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"220":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"58":{"tf":1.0},"88":{"tf":1.0}}}}},"n":{"d":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"235":{"tf":1.0}}}}},"t":{"df":3,"docs":{"0":{"tf":1.0},"148":{"tf":1.0},"19":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"158":{"tf":2.23606797749979},"159":{"tf":1.4142135623730951},"233":{"tf":1.0},"84":{"tf":2.6457513110645907}}}}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":2,"docs":{"21":{"tf":1.0},"245":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"226":{"tf":1.0},"66":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"146":{"tf":1.4142135623730951},"194":{"tf":1.0},"197":{"tf":1.7320508075688772},"198":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"6":{"tf":1.0},"72":{"tf":1.0}}}}},"d":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"74":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":4,"docs":{"224":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"86":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":2.449489742783178}}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"df":9,"docs":{"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":2.0},"224":{"tf":1.0},"226":{"tf":1.0},"250":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"215":{"tf":1.0},"216":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"224":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":12,"docs":{"159":{"tf":1.0},"219":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"237":{"tf":1.0},"245":{"tf":1.0},"38":{"tf":1.4142135623730951},"52":{"tf":1.0},"58":{"tf":1.0},"85":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}}}},"x":{"df":1,"docs":{"238":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"35":{"tf":1.0},"74":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"78":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"196":{"tf":1.0}}}},"d":{"df":2,"docs":{"183":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"238":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"229":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":10,"docs":{"193":{"tf":1.0},"196":{"tf":1.0},"21":{"tf":1.0},"229":{"tf":1.4142135623730951},"231":{"tf":1.0},"234":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"247":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":3,"docs":{"241":{"tf":1.4142135623730951},"246":{"tf":1.0},"250":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":3,"docs":{"200":{"tf":1.4142135623730951},"219":{"tf":2.0},"221":{"tf":1.4142135623730951}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":5,"docs":{"230":{"tf":1.0},"233":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.7320508075688772},"241":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"221":{"tf":1.0},"23":{"tf":1.0}}}}}},"y":{"df":2,"docs":{"229":{"tf":1.0},"240":{"tf":1.0}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"101":{"tf":1.0},"146":{"tf":1.4142135623730951}}}}}},"c":{"'":{"]":{"[":{"1":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"74":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":4,"docs":{"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"74":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"34":{"tf":1.0},"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"[":{"1":{"df":1,"docs":{"173":{"tf":1.0}}},"2":{"]":{".":{"df":0,"docs":{},"f":{"df":1,"docs":{"180":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"83":{"tf":1.0}}}},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"220":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}},"a":{"d":{"a":{"'":{"df":0,"docs":{},"}":{",":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"238":{"tf":1.0},"56":{"tf":1.4142135623730951},"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"57":{"tf":1.0},"59":{"tf":1.0}}}}}},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"236":{"tf":1.0},"47":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.0},"34":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":10,"docs":{"129":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"181":{"tf":1.0},"20":{"tf":1.0},"231":{"tf":1.0},"238":{"tf":1.4142135623730951},"54":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0}}},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}},"1":{"2":{"3":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":5,"docs":{"136":{"tf":1.7320508075688772},"64":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.0},"97":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}},"d":{"c":{"df":1,"docs":{"230":{"tf":1.0}}},"df":1,"docs":{"10":{"tf":1.0}}},"df":16,"docs":{"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"168":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.7320508075688772},"177":{"tf":2.0},"178":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"91":{"tf":2.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"230":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":1,"docs":{"239":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"109":{"tf":1.0},"97":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"233":{"tf":1.0},"238":{"tf":1.0}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"c":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"20":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.4142135623730951}}}},"r":{"(":{"1":{"0":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"6":{"5":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"147":{"tf":1.7320508075688772},"77":{"tf":1.0},"88":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"_":{"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":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"100":{"tf":1.7320508075688772},"112":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":4,"docs":{"139":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"185":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"185":{"tf":1.0},"190":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"120":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":4,"docs":{"21":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"238":{"tf":1.0},"250":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":17,"docs":{"167":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":2.0},"34":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":2.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"16":{"tf":1.0},"195":{"tf":1.0},"230":{"tf":1.0}}},"r":{"df":3,"docs":{"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"10":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"215":{"tf":1.7320508075688772},"222":{"tf":1.4142135623730951},"35":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"151":{"tf":1.0},"233":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"10":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"149":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"u":{"d":{"df":1,"docs":{"250":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"141":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"d":{"'":{"df":1,"docs":{"233":{"tf":1.0}}},"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":6,"docs":{"10":{"tf":1.0},"108":{"tf":1.0},"181":{"tf":1.0},"215":{"tf":1.7320508075688772},"253":{"tf":1.0},"9":{"tf":1.0}}}},"df":1,"docs":{"120":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":4,"docs":{"23":{"tf":1.0},"24":{"tf":2.23606797749979},"83":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":2,"docs":{"230":{"tf":1.0},"232":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"120":{"tf":1.0},"179":{"tf":1.0},"225":{"tf":1.0},"40":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"234":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"205":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"222":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"1":{"\"":{",":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"2":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"1":{",":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"2":{"\"":{":":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"211":{"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":{",":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"2":{"\"":{":":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"132":{"tf":1.0},"173":{"tf":2.0},"174":{"tf":1.4142135623730951},"48":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":2.0},"77":{"tf":2.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0}}},"2":{"df":1,"docs":{"48":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"183":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"213":{"tf":1.0},"214":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"246":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951}}}},"df":35,"docs":{"128":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"155":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":2.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"220":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.7320508075688772},"246":{"tf":1.0},"25":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":2.0},"37":{"tf":1.4142135623730951},"38":{"tf":2.6457513110645907},"39":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"54":{"tf":2.6457513110645907},"63":{"tf":1.0},"76":{"tf":2.0},"79":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"205":{"tf":1.0},"215":{"tf":1.0},"221":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"230":{"tf":1.0},"241":{"tf":1.0}}},"m":{"a":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":4,"docs":{"133":{"tf":1.0},"209":{"tf":1.0},"23":{"tf":1.4142135623730951},"35":{"tf":1.0}},"n":{"d":{"df":7,"docs":{"195":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"240":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"190":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"238":{"tf":1.0},"247":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.0},"55":{"tf":1.4142135623730951}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"235":{"tf":1.0}}}},"r":{"df":6,"docs":{"234":{"tf":1.0},"238":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}}}},"t":{"df":9,"docs":{"136":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"194":{"tf":1.0},"241":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.7320508075688772},"6":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"196":{"tf":1.0},"197":{"tf":1.0},"247":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"t":{"df":5,"docs":{"0":{"tf":1.0},"207":{"tf":1.0},"241":{"tf":1.0},"30":{"tf":1.0},"44":{"tf":1.0}}},"x":{"df":4,"docs":{"229":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"13":{"tf":1.0},"228":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}},"s":{"df":1,"docs":{"21":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"49":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"228":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"250":{"tf":1.7320508075688772},"74":{"tf":1.0},"78":{"tf":1.7320508075688772}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.7320508075688772},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"109":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"97":{"tf":2.449489742783178}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"234":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"235":{"tf":1.0},"237":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"138":{"tf":1.0},"139":{"tf":1.7320508075688772},"46":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"151":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":2.8284271247461903},"38":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"232":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"185":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":2,"docs":{"185":{"tf":1.0},"54":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"78":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":17,"docs":{"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"161":{"tf":1.7320508075688772},"20":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":24,"docs":{"132":{"tf":1.0},"199":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":2.0},"204":{"tf":1.7320508075688772},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"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},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"233":{"tf":1.0},"55":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"253":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"22":{"tf":1.0},"37":{"tf":1.0},"91":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"'":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"235":{"tf":1.0}}},"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":2,"docs":{"197":{"tf":1.0},"233":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"253":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":4,"docs":{"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"233":{"tf":1.0},"245":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"247":{"tf":1.0}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"108":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"120":{"tf":1.0}}},"t":{"df":3,"docs":{"229":{"tf":1.0},"233":{"tf":1.4142135623730951},"55":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"h":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":3,"docs":{"112":{"tf":1.0},"131":{"tf":2.0},"173":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"8":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"40":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":8,"docs":{"34":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"241":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"148":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"233":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"237":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":18,"docs":{"12":{"tf":1.4142135623730951},"170":{"tf":1.0},"187":{"tf":2.449489742783178},"190":{"tf":2.23606797749979},"22":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"235":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"55":{"tf":2.23606797749979},"56":{"tf":1.4142135623730951}}}},"u":{"b":{"df":0,"docs":{},"e":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"l":{"df":23,"docs":{"10":{"tf":1.0},"199":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":2.0},"207":{"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},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"5":{"tf":1.0},"8":{"tf":2.0}},"i":{"df":1,"docs":{"74":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":2,"docs":{"125":{"tf":1.4142135623730951},"154":{"tf":1.7320508075688772}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"125":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"125":{"tf":1.4142135623730951},"13":{"tf":1.0},"152":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}},"df":9,"docs":{"13":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"29":{"tf":1.0},"56":{"tf":1.0},"80":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"125":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"d":{"2":{"6":{"8":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"15":{"tf":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":{"15":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"a":{"'":{"df":1,"docs":{"236":{"tf":1.0}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":27,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":1.4142135623730951},"155":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"181":{"tf":1.4142135623730951},"191":{"tf":1.0},"21":{"tf":1.4142135623730951},"228":{"tf":2.23606797749979},"229":{"tf":2.6457513110645907},"230":{"tf":2.0},"231":{"tf":1.7320508075688772},"232":{"tf":1.7320508075688772},"233":{"tf":3.7416573867739413},"234":{"tf":1.7320508075688772},"235":{"tf":2.0},"238":{"tf":2.449489742783178},"239":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}},"df":50,"docs":{"117":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"143":{"tf":1.0},"148":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"16":{"tf":1.7320508075688772},"167":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"192":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"208":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":2.23606797749979},"22":{"tf":2.0},"220":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"230":{"tf":1.7320508075688772},"232":{"tf":1.4142135623730951},"233":{"tf":3.3166247903554},"234":{"tf":1.0},"235":{"tf":2.8284271247461903},"236":{"tf":1.7320508075688772},"237":{"tf":1.4142135623730951},"238":{"tf":3.3166247903554},"239":{"tf":2.0},"241":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.0},"246":{"tf":1.4142135623730951},"249":{"tf":1.0},"28":{"tf":1.7320508075688772},"56":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"234":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"(":{"'":{"2":{"0":{"0":{"1":{"df":1,"docs":{"122":{"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":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"121":{"tf":1.0},"151":{"tf":1.0},"80":{"tf":1.0}}}}}},"df":11,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":2.0},"148":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.4142135623730951},"156":{"tf":1.0},"224":{"tf":1.4142135623730951},"245":{"tf":1.0},"69":{"tf":2.449489742783178}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"'":{"2":{"0":{"0":{"1":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"2":{"0":{"2":{"3":{"df":1,"docs":{"81":{"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":{}}}}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}}}},"y":{"df":4,"docs":{"124":{"tf":1.4142135623730951},"154":{"tf":1.0},"246":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"b":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":21,"docs":{"122":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"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},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.4142135623730951}},"e":{"6":{"df":0,"docs":{},"f":{"df":1,"docs":{"60":{"tf":1.0}}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}}},"c":{"a":{"d":{"df":5,"docs":{"230":{"tf":1.7320508075688772},"232":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951},"241":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"238":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"171":{"tf":1.0}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":12,"docs":{"13":{"tf":1.0},"133":{"tf":1.0},"16":{"tf":1.0},"172":{"tf":1.0},"195":{"tf":1.4142135623730951},"198":{"tf":1.7320508075688772},"208":{"tf":1.0},"228":{"tf":1.0},"236":{"tf":1.0},"44":{"tf":1.0},"57":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"190":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"215":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"88":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"120":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"13":{"tf":1.4142135623730951},"188":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":2.0},"235":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":2.8284271247461903}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"133":{"tf":1.4142135623730951},"211":{"tf":1.0},"222":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"32":{"tf":1.0},"35":{"tf":1.4142135623730951}}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"238":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"233":{"tf":1.0},"239":{"tf":1.0}}}},"t":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"131":{"tf":1.0},"154":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"167":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0}}}}},"s":{"c":{"df":2,"docs":{"132":{"tf":1.0},"44":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"a":{"c":{"df":4,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"58":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"234":{"tf":1.4142135623730951},"235":{"tf":1.0}}}},"r":{"df":4,"docs":{"187":{"tf":1.0},"233":{"tf":1.4142135623730951},"236":{"tf":1.0},"64":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"233":{"tf":2.0},"235":{"tf":1.7320508075688772}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"17":{"tf":1.0},"192":{"tf":1.0},"20":{"tf":1.0},"224":{"tf":1.0},"237":{"tf":1.0},"248":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"20":{"tf":1.0},"229":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"131":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":2.0},"245":{"tf":1.0},"252":{"tf":1.0},"34":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"225":{"tf":1.0}}}},"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"131":{"tf":1.0},"154":{"tf":1.0},"16":{"tf":1.0},"234":{"tf":1.4142135623730951},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"58":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"233":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0}},"i":{"df":2,"docs":{"15":{"tf":1.0},"238":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"132":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"232":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"198":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.4142135623730951},"249":{"tf":1.0},"49":{"tf":1.0},"77":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"197":{"tf":1.0},"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"74":{"tf":1.7320508075688772},"79":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":4,"docs":{"228":{"tf":1.4142135623730951},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"250":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"l":{"df":5,"docs":{"201":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"55":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"8":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"df":2,"docs":{"195":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":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":{"195":{"tf":1.0}}}}},"df":5,"docs":{"193":{"tf":1.7320508075688772},"195":{"tf":2.23606797749979},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"4":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":43,"docs":{"0":{"tf":1.4142135623730951},"117":{"tf":2.449489742783178},"12":{"tf":1.0},"120":{"tf":1.0},"131":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.7320508075688772},"17":{"tf":1.0},"171":{"tf":1.0},"18":{"tf":2.0},"181":{"tf":1.4142135623730951},"192":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"22":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.4142135623730951},"23":{"tf":2.23606797749979},"230":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.7320508075688772},"234":{"tf":1.0},"238":{"tf":1.7320508075688772},"24":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"15":{"tf":1.0},"16":{"tf":1.0},"176":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"197":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"22":{"tf":1.0},"247":{"tf":1.0}}}},"t":{"df":2,"docs":{"169":{"tf":1.0},"171":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"171":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"195":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"21":{"tf":1.4142135623730951},"245":{"tf":1.0}},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"228":{"tf":1.0},"235":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}},"r":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"187":{"tf":1.0},"188":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"230":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"71":{"tf":1.0}}},"m":{"df":1,"docs":{"233":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"230":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"233":{"tf":1.0},"236":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":2.23606797749979},"60":{"tf":1.7320508075688772}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"238":{"tf":1.0},"71":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"p":{"1":{"df":0,"docs":{},"y":{"2":{"df":0,"docs":{},"m":{"1":{"0":{"d":{"df":0,"docs":{},"t":{"2":{"df":0,"docs":{},"h":{"3":{"0":{"df":0,"docs":{},"m":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"1":{"2":{"df":0,"docs":{},"h":{"3":{"0":{"df":0,"docs":{},"m":{"5":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"247":{"tf":1.0},"57":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":9,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.7320508075688772},"245":{"tf":1.4142135623730951},"54":{"tf":1.0},"75":{"tf":1.0}},"o":{"d":{"b":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"b":{"0":{"7":{"7":{"6":{"5":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":20,"docs":{"127":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"187":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"221":{"tf":1.4142135623730951},"232":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"34":{"tf":1.0},"45":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"194":{"tf":1.4142135623730951},"233":{"tf":1.0},"252":{"tf":1.0},"6":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"234":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"170":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"236":{"tf":1.0},"34":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"238":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"187":{"tf":1.0},"188":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"40":{"tf":1.0}}}},"df":1,"docs":{"20":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":2.23606797749979}}}}},"df":2,"docs":{"177":{"tf":1.0},"178":{"tf":1.4142135623730951}},"e":{"df":1,"docs":{"105":{"tf":1.0}},"|":{".":{"*":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"89":{"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":3,"docs":{"110":{"tf":1.0},"237":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"228":{"tf":1.0},"250":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"179":{"tf":1.0},"40":{"tf":1.7320508075688772},"97":{"tf":2.0}}}}}}},"i":{"d":{"df":2,"docs":{"206":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"190":{"tf":1.0},"226":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}},"b":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"11":{"tf":1.0},"238":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"33":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"74":{"tf":1.0}}}}},"o":{"d":{"df":7,"docs":{"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"150":{"tf":1.0},"155":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"194":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":17,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"193":{"tf":1.0},"228":{"tf":2.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"232":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"241":{"tf":1.7320508075688772},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.4142135623730951},"250":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"df":2,"docs":{"195":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"'":{"df":8,"docs":{"148":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":1.4142135623730951},"18":{"tf":1.0},"200":{"tf":1.0},"21":{"tf":1.4142135623730951},"246":{"tf":1.0}}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{":":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"195":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"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":{"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"195":{"tf":1.4142135623730951},"198":{"tf":1.0},"4":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"198":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":72,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"13":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"16":{"tf":1.7320508075688772},"167":{"tf":1.0},"17":{"tf":1.0},"181":{"tf":2.0},"185":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.7320508075688772},"198":{"tf":2.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"20":{"tf":2.0},"202":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":2.0},"215":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"220":{"tf":1.4142135623730951},"222":{"tf":1.0},"224":{"tf":1.4142135623730951},"228":{"tf":2.23606797749979},"229":{"tf":1.0},"231":{"tf":1.4142135623730951},"234":{"tf":2.8284271247461903},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"48":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0}}},"df":11,"docs":{"106":{"tf":1.0},"149":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"192":{"tf":1.0},"2":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"228":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"231":{"tf":1.0},"233":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"215":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":8,"docs":{"157":{"tf":1.0},"21":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.0},"76":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"238":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}}},"v":{"df":1,"docs":{"198":{"tf":2.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"186":{"tf":1.0},"35":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"140":{"tf":1.0},"238":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}},"t":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"109":{"tf":1.0},"117":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"229":{"tf":1.0},"39":{"tf":1.0},"71":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":1,"docs":{"233":{"tf":1.0}},"s":{"df":5,"docs":{"13":{"tf":1.0},"228":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":2.0}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"232":{"tf":1.0},"235":{"tf":1.0},"244":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"19":{"tf":1.4142135623730951},"220":{"tf":1.0},"24":{"tf":1.0},"54":{"tf":1.0},"76":{"tf":1.0}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"110":{"tf":1.0},"88":{"tf":2.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"t":{"c":{"df":3,"docs":{"20":{"tf":1.0},"250":{"tf":1.4142135623730951},"48":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":2,"docs":{"229":{"tf":1.0},"230":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"85":{"tf":2.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"15":{"tf":1.0},"195":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0}},"t":{"df":4,"docs":{"204":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.0}},"u":{"df":1,"docs":{"233":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"232":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"165":{"tf":1.0},"166":{"tf":1.0},"76":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"213":{"tf":1.0},"214":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":18,"docs":{"10":{"tf":2.0},"13":{"tf":1.4142135623730951},"141":{"tf":1.0},"167":{"tf":1.4142135623730951},"199":{"tf":1.0},"206":{"tf":1.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"245":{"tf":1.0},"44":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"76":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.0},"129":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"149":{"tf":1.0},"29":{"tf":1.0}},"e":{"d":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"v":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":1,"docs":{"159":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"190":{"tf":1.0},"198":{"tf":1.0},"215":{"tf":1.0},"228":{"tf":1.0},"243":{"tf":1.0},"247":{"tf":1.4142135623730951},"29":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":19,"docs":{"13":{"tf":1.4142135623730951},"131":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.4142135623730951},"192":{"tf":1.0},"220":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.4142135623730951},"241":{"tf":1.0},"250":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.7320508075688772}}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"120":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"252":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":5,"docs":{"139":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.7320508075688772},"237":{"tf":1.0},"241":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"194":{"tf":1.0},"20":{"tf":1.0},"234":{"tf":1.0},"6":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"193":{"tf":1.0},"199":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"57":{"tf":1.7320508075688772},"61":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"37":{"tf":1.0},"38":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"0":{"tf":1.0},"198":{"tf":1.0}}}}}}},"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"201":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"195":{"tf":1.0},"204":{"tf":1.0},"235":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"r":{"df":1,"docs":{"238":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"195":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"127":{"tf":1.0},"132":{"tf":1.0},"140":{"tf":1.0},"17":{"tf":1.4142135623730951},"37":{"tf":1.0},"44":{"tf":1.0},"55":{"tf":1.4142135623730951},"89":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"125":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":2,"docs":{"125":{"tf":2.23606797749979},"235":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"238":{"tf":1.0}}}}}}}},"f":{"7":{"c":{"3":{"1":{"4":{"d":{"d":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"235":{"tf":1.0},"238":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"237":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"159":{"tf":1.0}}},"s":{"df":6,"docs":{"139":{"tf":1.0},"224":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"11":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"33":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"241":{"tf":1.0},"25":{"tf":1.0}}}}}},"t":{"df":3,"docs":{"228":{"tf":1.0},"237":{"tf":1.0},"243":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"237":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"17":{"tf":1.0},"230":{"tf":1.0}}}}}}},"df":10,"docs":{"180":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":2.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"220":{"tf":1.7320508075688772},"221":{"tf":2.449489742783178},"222":{"tf":1.0},"77":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"192":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"220":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":5,"docs":{"11":{"tf":1.4142135623730951},"226":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"252":{"tf":1.0}}},"t":{"df":1,"docs":{"232":{"tf":1.0}}}},"w":{"df":2,"docs":{"232":{"tf":1.0},"235":{"tf":1.0}}}},"i":{"b":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"56":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":10,"docs":{"117":{"tf":2.23606797749979},"169":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"206":{"tf":1.0},"25":{"tf":1.0},"39":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"213":{"tf":2.0},"214":{"tf":1.4142135623730951},"220":{"tf":2.6457513110645907},"235":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"40":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"134":{"tf":1.0}}}}}}},"df":4,"docs":{"134":{"tf":1.4142135623730951},"29":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":2,"docs":{"173":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"'":{"df":0,"docs":{},"}":{",":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":23,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"117":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"232":{"tf":1.4142135623730951},"234":{"tf":1.0},"238":{"tf":1.4142135623730951},"241":{"tf":1.7320508075688772},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"58":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"232":{"tf":1.0}},"r":{"2":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"219":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}},"t":{"df":1,"docs":{"238":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"233":{"tf":1.0},"238":{"tf":1.4142135623730951},"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"224":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":18,"docs":{"12":{"tf":1.0},"120":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.0},"187":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"222":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"29":{"tf":1.0},"37":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.4142135623730951},"94":{"tf":1.0}}}}}},"o":{"2":{"df":2,"docs":{"74":{"tf":1.0},"78":{"tf":1.0}}},"df":4,"docs":{"74":{"tf":1.7320508075688772},"77":{"tf":1.0},"78":{"tf":2.23606797749979},"91":{"tf":2.0}}},"r":{"c":{"df":4,"docs":{"136":{"tf":1.0},"215":{"tf":1.0},"238":{"tf":1.0},"44":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"238":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"v":{"df":2,"docs":{"0":{"tf":1.0},"232":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"122":{"tf":1.0},"144":{"tf":1.4142135623730951},"170":{"tf":1.0},"202":{"tf":1.0},"213":{"tf":1.0},"220":{"tf":1.0},"228":{"tf":1.0}}}},"df":17,"docs":{"125":{"tf":1.0},"158":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"216":{"tf":2.0},"217":{"tf":1.0},"218":{"tf":1.0},"222":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"84":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"117":{"tf":1.0},"147":{"tf":1.0},"162":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"21":{"tf":1.0},"248":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"233":{"tf":2.23606797749979}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"c":{"a":{"df":2,"docs":{"230":{"tf":1.0},"232":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"234":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"228":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.0},"8":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":64,"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},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"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.4142135623730951},"144":{"tf":1.7320508075688772},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"175":{"tf":2.6457513110645907},"186":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"73":{"tf":1.0},"86":{"tf":1.4142135623730951},"88":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"169":{"tf":1.0},"206":{"tf":1.0},"29":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"237":{"tf":1.0},"248":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":4,"docs":{"13":{"tf":1.0},"228":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"194":{"tf":1.0},"253":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"233":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"245":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":4,"docs":{"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"236":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"221":{"tf":1.0}}}}},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"243":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"213":{"tf":1.0},"214":{"tf":1.0}}}},"t":{"@":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"10":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":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":{"252":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"230":{"tf":1.0},"37":{"tf":1.0}},"n":{"df":10,"docs":{"107":{"tf":1.0},"115":{"tf":1.0},"128":{"tf":1.4142135623730951},"130":{"tf":1.0},"133":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.4142135623730951},"171":{"tf":1.0},"37":{"tf":1.0},"48":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":1,"docs":{"90":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"234":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"253":{"tf":1.0}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"21":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.0}}}},"df":1,"docs":{"232":{"tf":1.0}},"e":{"df":2,"docs":{"230":{"tf":1.0},"56":{"tf":1.0}}},"o":{"d":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"250":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"241":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":4,"docs":{"230":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"83":{"tf":1.4142135623730951},"84":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"w":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"232":{"tf":1.0},"235":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"250":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"133":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"133":{"tf":1.0},"45":{"tf":2.23606797749979},"46":{"tf":1.4142135623730951}}}},"w":{"df":1,"docs":{"231":{"tf":1.0}},"n":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"230":{"tf":1.0}}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"194":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"ö":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"245":{"tf":1.0}}}}}}}}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"229":{"tf":1.0},"230":{"tf":1.0}}}},"n":{"d":{"df":3,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"34":{"tf":1.0}},"l":{"df":2,"docs":{"237":{"tf":1.0},"238":{"tf":1.0}}}},"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"74":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"235":{"tf":1.0},"241":{"tf":1.4142135623730951}}}}}},"r":{"d":{"df":2,"docs":{"181":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":1,"docs":{"235":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"247":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"46":{"tf":2.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"241":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":22,"docs":{"122":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"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.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"5":{"tf":1.0},"8":{"tf":1.4142135623730951}},"e":{"a":{"d":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"0":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"199":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"208":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"237":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"c":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"235":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"245":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"175":{"tf":1.0},"21":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"230":{"tf":1.0}}}}}}}}},"o":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"213":{"tf":1.0}}}}}}},"df":0,"docs":{}},"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"102":{"tf":2.449489742783178},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"224":{"tf":1.0},"5":{"tf":1.0},"97":{"tf":2.0}}}},"p":{"df":3,"docs":{"148":{"tf":1.0},"170":{"tf":1.0},"198":{"tf":2.0}}}},"r":{"a":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":4,"docs":{"232":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0},"56":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"247":{"tf":1.0}}}}}}},"x":{"(":{"1":{"5":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"147":{"tf":1.4142135623730951}},"i":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"181":{"tf":1.0},"234":{"tf":1.0},"252":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"132":{"tf":1.0},"234":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"233":{"tf":1.0},"243":{"tf":1.0}},"i":{"df":11,"docs":{"0":{"tf":1.0},"157":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":2.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}}}},"o":{"c":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"228":{"tf":1.0},"239":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"241":{"tf":1.0}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"241":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"228":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"1":{".":{"1":{"df":1,"docs":{"215":{"tf":1.0}}},"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":{":":{"3":{"8":{"0":{"3":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"?":{"df":0,"docs":{},"p":{"=":{"%":{"5":{"b":{"%":{"2":{"2":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"%":{"2":{"2":{"%":{"2":{"c":{"%":{"2":{"2":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"%":{"2":{"2":{"%":{"5":{"d":{"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":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"q":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"%":{"2":{"0":{"1":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":22,"docs":{"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"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},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"5":{"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":{}},"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":1,"docs":{"198":{"tf":1.0}}}}}}},"df":16,"docs":{"10":{"tf":1.0},"192":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.449489742783178},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"215":{"tf":2.23606797749979},"31":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.0}},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"/":{"#":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"196":{"tf":1.0},"197":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"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":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"df":2,"docs":{"193":{"tf":1.4142135623730951},"195":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"238":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"220":{"tf":1.0},"233":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"233":{"tf":1.0},"246":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"å":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"251":{"tf":1.0}}},"df":1,"docs":{"253":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{".":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"m":{"df":1,"docs":{"233":{"tf":1.0}}}},"d":{"df":6,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0}},"e":{"a":{"df":4,"docs":{"148":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"233":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"224":{"tf":1.0},"67":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"131":{"tf":1.0},"147":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"235":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"f":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"139":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"245":{"tf":1.0}}}}}}}},"m":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"193":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":5,"docs":{"149":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"187":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"13":{"tf":1.7320508075688772},"155":{"tf":1.0},"22":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"235":{"tf":1.7320508075688772},"236":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.0}}}}},"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":{"21":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"241":{"tf":1.0},"250":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"232":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"224":{"tf":1.0},"32":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"15":{"tf":1.0},"78":{"tf":1.0}}}}}}},"df":1,"docs":{"232":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"149":{"tf":1.0},"206":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"231":{"tf":1.0},"238":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":11,"docs":{"106":{"tf":1.0},"173":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.4142135623730951},"241":{"tf":1.0},"243":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":2.0},"41":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":2,"docs":{"24":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"230":{"tf":1.0},"233":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"237":{"tf":1.0},"250":{"tf":1.0}}}}}},"l":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"184":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"181":{"tf":2.0},"21":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"248":{"tf":1.0},"251":{"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":{"228":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"117":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}}}},"df":25,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"168":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"199":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.7320508075688772},"222":{"tf":1.0},"23":{"tf":3.1622776601683795},"245":{"tf":1.0},"29":{"tf":2.8284271247461903},"39":{"tf":1.0},"58":{"tf":2.0},"64":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":2,"docs":{"228":{"tf":1.0},"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"158":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"167":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":1.0},"21":{"tf":2.0},"245":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.0},"4":{"tf":1.7320508075688772},"8":{"tf":1.0}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":7,"docs":{"220":{"tf":1.0},"222":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"105":{"tf":1.4142135623730951}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":8,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"119":{"tf":1.0},"136":{"tf":1.0},"224":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.7320508075688772},"86":{"tf":1.0}},"r":{"df":1,"docs":{"232":{"tf":1.0}}}},"n":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1":{"tf":1.0},"233":{"tf":1.0}}}}},"f":{"a":{"c":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":2,"docs":{"125":{"tf":1.0},"234":{"tf":1.0}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"50":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"54":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"v":{"df":3,"docs":{"148":{"tf":1.0},"224":{"tf":1.4142135623730951},"71":{"tf":2.6457513110645907}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":4,"docs":{"231":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"155":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"c":{"df":2,"docs":{"213":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.4142135623730951},"231":{"tf":1.0},"238":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":7,"docs":{"224":{"tf":2.0},"233":{"tf":1.0},"245":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"t":{"'":{"df":5,"docs":{"16":{"tf":1.0},"230":{"tf":1.4142135623730951},"234":{"tf":1.0},"235":{"tf":1.7320508075688772},"241":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"21":{"tf":1.0},"220":{"tf":1.0}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":4,"docs":{"15":{"tf":1.0},"16":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0}}},"m":{"df":1,"docs":{"221":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"18":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"a":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"18":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"245":{"tf":1.0}}}}}}},"o":{"b":{"df":3,"docs":{"237":{"tf":1.0},"239":{"tf":1.4142135623730951},"246":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"225":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"14":{"tf":2.0},"184":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":1.0},"247":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":2.6457513110645907},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.7320508075688772}}}},"y":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":21,"docs":{"17":{"tf":1.0},"175":{"tf":1.0},"203":{"tf":2.0},"204":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.7320508075688772},"216":{"tf":2.0},"217":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":3.3166247903554},"225":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"25":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"91":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"167":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"y":{"(":{"1":{"9":{"7":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"124":{"tf":1.4142135623730951},"148":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}}}}},"k":{"a":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"24":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":4,"docs":{"235":{"tf":1.0},"236":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"219":{"tf":1.0},"222":{"tf":1.0}}}}}},"df":0,"docs":{}},"y":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}}}}},"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":8,"docs":{"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"40":{"tf":1.0},"74":{"tf":1.4142135623730951},"79":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":9,"docs":{"221":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"230":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"11":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0}},"n":{"df":2,"docs":{"235":{"tf":1.0},"77":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"117":{"tf":1.0}}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"187":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"15":{"tf":1.0},"234":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"11":{"tf":1.0},"22":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"234":{"tf":2.8284271247461903},"9":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"146":{"tf":1.4142135623730951},"224":{"tf":1.0},"72":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"179":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"60":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"238":{"tf":1.0},"57":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}},"w":{"df":4,"docs":{"13":{"tf":1.0},"228":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":1.0}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"d":{"df":7,"docs":{"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"212":{"tf":1.0},"216":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"167":{"tf":1.0},"2":{"tf":1.0},"237":{"tf":1.0}}}},"s":{"df":2,"docs":{"57":{"tf":1.0},"60":{"tf":1.0}}},"v":{"df":2,"docs":{"16":{"tf":1.0},"235":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":8,"docs":{"102":{"tf":1.0},"117":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"39":{"tf":1.4142135623730951},"54":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"167":{"tf":1.0},"17":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"46":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"df":1,"docs":{"232":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"'":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":1,"docs":{"112":{"tf":1.0}}}}},"[":{"3":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"44":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":5,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.7320508075688772},"44":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}},"s":{"df":5,"docs":{"106":{"tf":1.0},"230":{"tf":1.0},"238":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.0}}}},"t":{"'":{"df":5,"docs":{"13":{"tf":1.0},"15":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"181":{"tf":1.0},"234":{"tf":1.0},"252":{"tf":1.0},"91":{"tf":1.4142135623730951}}}},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{".":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":1,"docs":{"238":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"227":{"tf":1.0},"253":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"235":{"tf":1.0}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"251":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":2.6457513110645907},"84":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"u":{"a":{"df":2,"docs":{"230":{"tf":1.0},"232":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"df":1,"docs":{"212":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"197":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":2,"docs":{"234":{"tf":1.0},"247":{"tf":1.0}}},"t":{"df":15,"docs":{"133":{"tf":1.0},"169":{"tf":1.0},"187":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":23,"docs":{"170":{"tf":2.0},"216":{"tf":1.4142135623730951},"221":{"tf":1.0},"224":{"tf":2.0},"225":{"tf":1.0},"23":{"tf":1.0},"49":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":2.0},"75":{"tf":1.0},"76":{"tf":2.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"238":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"230":{"tf":1.0},"250":{"tf":1.0}}}}},"n":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"154":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{},"g":{"1":{"0":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"120":{"tf":1.0}}},"df":4,"docs":{"120":{"tf":1.7320508075688772},"198":{"tf":1.0},"235":{"tf":1.7320508075688772},"243":{"tf":1.0}},"i":{"c":{"df":2,"docs":{"233":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"232":{"tf":1.0},"234":{"tf":1.4142135623730951},"241":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"30":{"tf":1.0},"61":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"169":{"tf":1.0},"233":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}}}}},"p":{"df":1,"docs":{"233":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"237":{"tf":1.0}}},"t":{"df":2,"docs":{"13":{"tf":1.0},"243":{"tf":1.0}}}},"t":{"df":2,"docs":{"231":{"tf":1.0},"232":{"tf":1.0}}},"w":{"df":1,"docs":{"233":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"103":{"tf":1.4142135623730951},"181":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.7320508075688772}}}}}},"y":{"df":1,"docs":{"16":{"tf":1.0}}}},"m":{")":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":3,"docs":{"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951}}}}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"237":{"tf":1.0}}}}},"o":{"df":1,"docs":{"197":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"243":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"196":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"229":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"9":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":11,"docs":{"13":{"tf":1.0},"148":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"220":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":12,"docs":{"17":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.0},"231":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.0},"34":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":6,"docs":{"117":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.4142135623730951},"238":{"tf":1.0},"40":{"tf":1.0},"87":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"237":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":1,"docs":{"225":{"tf":1.0}}},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"231":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"233":{"tf":1.7320508075688772},"235":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":13,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"20":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":2.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":3.4641016151377544},"95":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"187":{"tf":1.0},"241":{"tf":1.0}}}}},"h":{"df":2,"docs":{"120":{"tf":1.7320508075688772},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}}}}}},"x":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"127":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}}}}},"df":4,"docs":{"122":{"tf":1.4142135623730951},"147":{"tf":1.0},"200":{"tf":1.0},"219":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":10,"docs":{"149":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}}},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"247":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"247":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"221":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"25":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"220":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"238":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"241":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"54":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":1,"docs":{"127":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"127":{"tf":1.4142135623730951}}}}}},"u":{"df":1,"docs":{"86":{"tf":1.0}},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"224":{"tf":1.0},"63":{"tf":1.0}}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"195":{"tf":1.4142135623730951},"4":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"149":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"235":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"187":{"tf":1.0},"85":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"86":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.7320508075688772}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"d":{"b":{"df":4,"docs":{"234":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"71":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":20,"docs":{"15":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"221":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.7320508075688772},"238":{"tf":1.4142135623730951},"245":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"58":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"197":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"206":{"tf":1.7320508075688772},"216":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":12,"docs":{"151":{"tf":1.0},"180":{"tf":1.0},"222":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"231":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":1.4142135623730951},"40":{"tf":1.0},"86":{"tf":1.0},"97":{"tf":1.0}}}}}}},"n":{"d":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"233":{"tf":1.0},"235":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"56":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":60,"docs":{"110":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.0},"155":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":2.0},"18":{"tf":1.4142135623730951},"181":{"tf":1.0},"187":{"tf":2.23606797749979},"188":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":2.0},"205":{"tf":1.0},"206":{"tf":1.0},"217":{"tf":2.8284271247461903},"218":{"tf":1.4142135623730951},"219":{"tf":2.449489742783178},"220":{"tf":2.23606797749979},"221":{"tf":2.23606797749979},"222":{"tf":1.0},"23":{"tf":2.23606797749979},"24":{"tf":2.449489742783178},"26":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":3.3166247903554},"30":{"tf":1.0},"35":{"tf":1.7320508075688772},"37":{"tf":2.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":2.0},"46":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":2.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":2.0},"60":{"tf":1.7320508075688772},"64":{"tf":1.0},"74":{"tf":2.0},"76":{"tf":2.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.0},"83":{"tf":2.0},"85":{"tf":2.0},"88":{"tf":2.449489742783178},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"94":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"220":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"222":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":7,"docs":{"167":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"120":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":5,"docs":{"167":{"tf":1.4142135623730951},"169":{"tf":2.0},"170":{"tf":1.0},"175":{"tf":1.0},"20":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"211":{"tf":1.7320508075688772}}}}}}},"df":2,"docs":{"225":{"tf":1.0},"41":{"tf":2.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"252":{"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":{"234":{"tf":1.0},"235":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"205":{"tf":1.0}}}}}}},"df":1,"docs":{"235":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":9,"docs":{"12":{"tf":1.0},"190":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"226":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}},"g":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"84":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"250":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.4142135623730951},"21":{"tf":1.0},"219":{"tf":1.0},"238":{"tf":2.6457513110645907},"241":{"tf":1.0},"245":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"237":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"234":{"tf":1.0},"240":{"tf":1.0}}}}},"w":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":13,"docs":{"176":{"tf":1.7320508075688772},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"194":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.7320508075688772},"235":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"211":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"224":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":8,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.7320508075688772},"133":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.4142135623730951},"187":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":5,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"233":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"155":{"tf":1.0},"158":{"tf":1.0},"175":{"tf":1.0},"190":{"tf":1.0},"238":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"169":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":35,"docs":{"112":{"tf":1.0},"120":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.7320508075688772},"131":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"154":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"28":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"58":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0}}},"h":{"df":2,"docs":{"179":{"tf":1.0},"29":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"df":11,"docs":{"13":{"tf":1.0},"151":{"tf":1.4142135623730951},"156":{"tf":1.0},"16":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"241":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"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":14,"docs":{"117":{"tf":1.4142135623730951},"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"133":{"tf":1.0},"141":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"40":{"tf":1.0},"63":{"tf":2.23606797749979},"65":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"f":{"(":{"1":{"df":1,"docs":{"140":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"140":{"tf":1.4142135623730951}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"100":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"145":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.7320508075688772},"179":{"tf":1.0},"180":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"233":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.7320508075688772},"67":{"tf":1.0},"86":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"118":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"86":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.4142135623730951}}}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"115":{"tf":1.0},"40":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"[":{"[":{"'":{"a":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"113":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"113":{"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":{"114":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":27,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"146":{"tf":1.4142135623730951},"167":{"tf":1.0},"168":{"tf":1.7320508075688772},"17":{"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},"217":{"tf":1.0},"221":{"tf":2.449489742783178},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"23":{"tf":1.0},"233":{"tf":1.0},"250":{"tf":1.0},"40":{"tf":1.4142135623730951},"49":{"tf":2.6457513110645907},"72":{"tf":1.0},"74":{"tf":2.8284271247461903},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"207":{"tf":1.0},"235":{"tf":1.0}}}}}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"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":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"101":{"tf":1.7320508075688772}}}}}}}}},"df":1,"docs":{"101":{"tf":1.0}}}}}},"df":1,"docs":{"77":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"167":{"tf":1.0},"207":{"tf":1.0},"238":{"tf":1.0},"40":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}}}}},"k":{"df":2,"docs":{"76":{"tf":1.0},"93":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"228":{"tf":1.0},"233":{"tf":1.0},"249":{"tf":1.0}}}},"d":{"df":2,"docs":{"13":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":4,"docs":{"228":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"157":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":5,"docs":{"23":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":1.0}}},"df":27,"docs":{"125":{"tf":1.0},"132":{"tf":1.0},"17":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"230":{"tf":1.7320508075688772},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":2.23606797749979},"235":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"243":{"tf":1.0},"38":{"tf":1.4142135623730951},"51":{"tf":1.0},"73":{"tf":1.4142135623730951},"77":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"233":{"tf":1.0},"238":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"238":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"235":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"149":{"tf":1.4142135623730951},"228":{"tf":1.0},"240":{"tf":1.0},"245":{"tf":1.4142135623730951}}},"r":{"df":40,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"132":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"187":{"tf":1.0},"192":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"219":{"tf":1.4142135623730951},"231":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"50":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"59":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772},"97":{"tf":1.7320508075688772}}}},"t":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"*":{"/":{"*":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"106":{"tf":1.0},"110":{"tf":1.0},"133":{"tf":1.0},"147":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.4142135623730951},"200":{"tf":1.0},"37":{"tf":1.0},"64":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"110":{"tf":1.0},"132":{"tf":1.4142135623730951},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"218":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.0},"247":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.0},"44":{"tf":3.605551275463989},"45":{"tf":1.0},"47":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":2,"docs":{"41":{"tf":2.23606797749979},"77":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"13":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"180":{"tf":1.0},"253":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"229":{"tf":1.0},"240":{"tf":1.0}}}}}}},"t":{"df":4,"docs":{"0":{"tf":1.0},"146":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"199":{"tf":1.0},"241":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"213":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"228":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"0":{"tf":1.0},"199":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"35":{"tf":1.0},"7":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"149":{"tf":1.0},"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"133":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"176":{"tf":1.0}}}}}}}}}},"p":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}}},")":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":6,"docs":{"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"74":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"34":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"1":{"df":0,"docs":{},"y":{"2":{"df":0,"docs":{},"m":{"1":{"0":{"d":{"df":0,"docs":{},"t":{"2":{"df":0,"docs":{},"h":{"3":{"0":{"df":0,"docs":{},"m":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"\"":{"[":{"[":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"221":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"'":{"[":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"df":2,"docs":{"206":{"tf":1.0},"218":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"[":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"@":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{";":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"=":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"d":{".":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"220":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"d":{"df":2,"docs":{"64":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"21":{"tf":1.0},"233":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":8,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"147":{"tf":1.0},"224":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0}}}},"l":{"a":{"c":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"a":{"df":3,"docs":{"203":{"tf":1.0},"217":{"tf":1.0},"37":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"217":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":22,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"144":{"tf":1.0},"147":{"tf":2.0},"199":{"tf":1.0},"200":{"tf":2.0},"205":{"tf":1.7320508075688772},"216":{"tf":2.23606797749979},"217":{"tf":2.23606797749979},"218":{"tf":2.23606797749979},"219":{"tf":1.7320508075688772},"220":{"tf":2.0},"221":{"tf":2.0},"222":{"tf":1.0},"31":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"187":{"tf":1.0},"224":{"tf":1.0},"48":{"tf":1.0}}}}}}}},"t":{"df":3,"docs":{"162":{"tf":1.0},"216":{"tf":1.0},"232":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"236":{"tf":1.0},"239":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"136":{"tf":1.0},"21":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":1,"docs":{"234":{"tf":1.0}},"q":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"234":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"215":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"198":{"tf":1.4142135623730951},"215":{"tf":2.0}}},"df":0,"docs":{}}}}},"t":{"df":3,"docs":{"13":{"tf":1.0},"236":{"tf":1.0},"241":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"117":{"tf":2.449489742783178},"25":{"tf":2.6457513110645907}}}},"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"180":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":1,"docs":{"180":{"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":{},"{":{"a":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"178":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"179":{"tf":1.0},"27":{"tf":1.0}},"e":{"(":{"[":{"0":{",":{"1":{",":{"2":{",":{"3":{",":{"4":{"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":{}},"df":0,"docs":{},"{":{"df":0,"docs":{},"x":{"df":1,"docs":{"179":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"177":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"177":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"176":{"tf":1.0},"26":{"tf":1.0}}}}}},"df":18,"docs":{"167":{"tf":2.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"17":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":2.0},"172":{"tf":3.1622776601683795},"173":{"tf":2.8284271247461903},"174":{"tf":2.0},"175":{"tf":3.0},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":2.0},"20":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"27":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"@":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"110":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":18,"docs":{"14":{"tf":1.0},"184":{"tf":1.0},"195":{"tf":2.23606797749979},"198":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"79":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"29":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951}}}}}},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"232":{"tf":1.0},"238":{"tf":1.0},"40":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"29":{"tf":1.0},"81":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"d":{"df":9,"docs":{"149":{"tf":1.7320508075688772},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"238":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"9":{"tf":1.0}}}},"t":{"df":8,"docs":{"13":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"201":{"tf":1.0},"235":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"49":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"i":{"df":1,"docs":{"120":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"236":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"232":{"tf":1.7320508075688772},"234":{"tf":1.7320508075688772},"241":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"d":{"a":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"233":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}}}}}},"l":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"231":{"tf":1.0},"55":{"tf":1.0},"79":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"217":{"tf":1.0},"218":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":4,"docs":{"194":{"tf":1.0},"21":{"tf":1.0},"253":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"u":{"df":1,"docs":{"86":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"224":{"tf":1.0},"67":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"198":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"125":{"tf":2.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"200":{"tf":1.0},"218":{"tf":1.7320508075688772},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"78":{"tf":1.0}}},"x":{"df":1,"docs":{"234":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":19,"docs":{"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":27,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"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},"216":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"32":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"df":6,"docs":{"229":{"tf":1.0},"233":{"tf":1.0},"241":{"tf":1.0},"250":{"tf":1.0},"76":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}}}}}}}}}},"w":{"df":1,"docs":{"120":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"120":{"tf":1.0},"167":{"tf":1.0},"21":{"tf":1.4142135623730951},"231":{"tf":1.0},"40":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"149":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"76":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"224":{"tf":1.0},"226":{"tf":1.0},"234":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":3,"docs":{"149":{"tf":1.0},"160":{"tf":1.4142135623730951},"238":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{".":{"c":{"a":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"76":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"10":{"tf":1.0},"207":{"tf":1.0},"220":{"tf":1.4142135623730951},"35":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":3,"docs":{"85":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":6,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"194":{"tf":1.0},"233":{"tf":1.0},"6":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":32,"docs":{"112":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"23":{"tf":2.449489742783178},"238":{"tf":1.0},"24":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":3.1622776601683795},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"44":{"tf":2.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"55":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772}},"s":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"155":{"tf":1.0},"28":{"tf":1.0},"58":{"tf":1.0}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"235":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"234":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"229":{"tf":1.0},"235":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"64":{"tf":1.0}}}}},"u":{"c":{"df":1,"docs":{"239":{"tf":1.0}},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":10,"docs":{"112":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"25":{"tf":1.0},"29":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":2.0},"55":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772}}}}},"df":60,"docs":{"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.4142135623730951},"194":{"tf":1.0},"203":{"tf":1.7320508075688772},"206":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"221":{"tf":2.0},"229":{"tf":1.0},"23":{"tf":2.23606797749979},"236":{"tf":1.4142135623730951},"24":{"tf":2.23606797749979},"240":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":2.449489742783178},"30":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":2.6457513110645907},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":2.23606797749979},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"6":{"tf":1.0},"74":{"tf":2.0},"76":{"tf":1.4142135623730951},"79":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"85":{"tf":2.449489742783178},"88":{"tf":2.449489742783178},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"40":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}}}}},".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"25":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":1,"docs":{"29":{"tf":1.0}}}},"[":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"234":{"tf":1.0},"241":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"220":{"tf":1.0},"238":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"233":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.0},"77":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":32,"docs":{"10":{"tf":1.0},"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"17":{"tf":1.0},"180":{"tf":1.4142135623730951},"186":{"tf":1.0},"19":{"tf":1.0},"198":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"215":{"tf":1.0},"220":{"tf":1.0},"228":{"tf":2.0},"231":{"tf":1.0},"234":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.7320508075688772},"32":{"tf":1.0},"37":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"t":{"1":{"2":{"df":0,"docs":{},"h":{"3":{"0":{"df":0,"docs":{},"m":{"5":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}}},"4":{"df":0,"docs":{},"m":{"5":{"6":{".":{"7":{"8":{"9":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"230":{"tf":1.0},"233":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"195":{"tf":1.4142135623730951},"231":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":5,"docs":{"110":{"tf":1.0},"224":{"tf":1.0},"246":{"tf":1.0},"63":{"tf":1.0},"81":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"193":{"tf":1.0}}}},"z":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"c":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"213":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"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":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}},"q":{")":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"200":{"tf":1.0}}}}}}},"3":{"df":1,"docs":{"252":{"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":8,"docs":{"205":{"tf":1.0},"206":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"%":{"2":{"0":{"*":{"%":{"2":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"%":{"2":{"0":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"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":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"200":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"92":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":49,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"148":{"tf":1.4142135623730951},"15":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"16":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"220":{"tf":1.0},"228":{"tf":1.7320508075688772},"229":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":2.23606797749979},"234":{"tf":2.449489742783178},"236":{"tf":1.7320508075688772},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":2.0},"28":{"tf":1.0},"30":{"tf":1.4142135623730951},"33":{"tf":2.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.7320508075688772},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":2.23606797749979},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"60":{"tf":1.0}}},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"235":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"233":{"tf":1.7320508075688772},"238":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"2":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"234":{"tf":1.0},"241":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"64":{"tf":1.0},"74":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"r":{"a":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"3":{"2":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"146":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":2,"docs":{"119":{"tf":2.0},"146":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"w":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"106":{"tf":1.0},"241":{"tf":1.0}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"192":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"239":{"tf":1.4142135623730951},"245":{"tf":1.0},"252":{"tf":1.0},"35":{"tf":1.0},"57":{"tf":1.4142135623730951},"8":{"tf":1.0}},"i":{"df":2,"docs":{"0":{"tf":1.0},"238":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"224":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"67":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"238":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"207":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"81":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"215":{"tf":1.0},"220":{"tf":1.0},"63":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"193":{"tf":1.0},"205":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"240":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"d":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"13":{"tf":1.4142135623730951},"155":{"tf":1.0},"16":{"tf":1.0},"212":{"tf":1.0},"228":{"tf":1.0},"235":{"tf":1.4142135623730951},"239":{"tf":1.0},"243":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"237":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":7,"docs":{"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"245":{"tf":1.0},"56":{"tf":3.3166247903554}}}}}},"d":{"df":2,"docs":{"219":{"tf":1.0},"222":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"u":{"c":{"df":2,"docs":{"231":{"tf":1.0},"237":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"187":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"17":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"233":{"tf":1.0},"253":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"79":{"tf":1.0},"91":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":2.23606797749979}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"203":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"df":1,"docs":{"104":{"tf":1.0}},"t":{"df":9,"docs":{"103":{"tf":1.0},"148":{"tf":1.4142135623730951},"167":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"230":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"238":{"tf":1.0},"29":{"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":2,"docs":{"14":{"tf":1.0},"238":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"194":{"tf":1.0},"20":{"tf":1.0},"241":{"tf":2.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":2.23606797749979}}}},"df":0,"docs":{},"v":{"df":2,"docs":{"157":{"tf":1.0},"234":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":11,"docs":{"117":{"tf":1.0},"13":{"tf":1.0},"179":{"tf":1.4142135623730951},"191":{"tf":1.0},"235":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"30":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"57":{"tf":1.0},"60":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":1,"docs":{"104":{"tf":1.7320508075688772}},"e":{"(":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"a":{"df":2,"docs":{"237":{"tf":1.0},"239":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"195":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":10,"docs":{"115":{"tf":1.0},"149":{"tf":1.0},"170":{"tf":1.0},"179":{"tf":1.0},"217":{"tf":1.0},"49":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"54":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":13,"docs":{"186":{"tf":1.0},"197":{"tf":1.0},"215":{"tf":1.4142135623730951},"22":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":2.23606797749979},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"203":{"tf":1.0},"204":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"127":{"tf":1.0},"241":{"tf":1.0},"35":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"181":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"t":{"df":3,"docs":{"10":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":25,"docs":{"132":{"tf":1.4142135623730951},"16":{"tf":1.0},"215":{"tf":1.0},"222":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"249":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"64":{"tf":1.0},"81":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"246":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":73,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":2.0},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"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},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.7320508075688772},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"220":{"tf":1.0},"222":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"238":{"tf":1.0},"249":{"tf":1.0},"34":{"tf":1.7320508075688772},"38":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":2.23606797749979},"57":{"tf":2.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":2.0},"63":{"tf":1.0},"76":{"tf":2.0},"84":{"tf":1.0},"85":{"tf":2.8284271247461903},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.7320508075688772},"92":{"tf":2.0},"93":{"tf":2.0},"94":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"233":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"110":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}}}}}}},"f":{"c":{"df":2,"docs":{"215":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"234":{"tf":1.0}}}},"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":7,"docs":{"102":{"tf":1.0},"230":{"tf":1.4142135623730951},"232":{"tf":1.0},"239":{"tf":1.0},"54":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"m":{"df":2,"docs":{"195":{"tf":1.7320508075688772},"4":{"tf":1.0}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"227":{"tf":1.0},"248":{"tf":1.0},"252":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"57":{"tf":1.0},"58":{"tf":1.7320508075688772},"60":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"230":{"tf":1.0}}},"t":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"187":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":1,"docs":{"120":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"w":{"df":30,"docs":{"159":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":2.23606797749979},"18":{"tf":1.0},"181":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"228":{"tf":1.4142135623730951},"232":{"tf":1.0},"238":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"245":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"63":{"tf":1.0},"74":{"tf":1.4142135623730951},"76":{"tf":2.449489742783178},"77":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"229":{"tf":1.0}}}},"n":{"df":9,"docs":{"0":{"tf":1.0},"13":{"tf":1.0},"154":{"tf":1.0},"195":{"tf":2.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"32":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0}}}},"å":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"253":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"3":{"df":2,"docs":{"241":{"tf":1.0},"250":{"tf":1.0}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.0},"244":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"13":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"40":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":4,"docs":{"131":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"35":{"tf":1.0}},"s":{"_":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":10,"docs":{"117":{"tf":1.7320508075688772},"203":{"tf":1.0},"218":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"39":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"79":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":14,"docs":{"110":{"tf":1.0},"158":{"tf":1.0},"197":{"tf":1.0},"220":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"220":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"u":{"c":{"df":4,"docs":{"205":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"235":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"57":{"tf":3.1622776601683795},"58":{"tf":1.7320508075688772},"59":{"tf":2.8284271247461903},"60":{"tf":2.8284271247461903},"61":{"tf":1.4142135623730951}}}}}}}}},"w":{"df":2,"docs":{"233":{"tf":1.0},"241":{"tf":1.0}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"180":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"216":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"81":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"237":{"tf":1.0}}}},"n":{"df":1,"docs":{"171":{"tf":1.0}}},"r":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":10,"docs":{"181":{"tf":2.449489742783178},"186":{"tf":1.0},"20":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":2.8284271247461903},"24":{"tf":1.0},"34":{"tf":1.0},"76":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"12":{"tf":1.0},"167":{"tf":1.0},"181":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.4142135623730951},"24":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"230":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"60":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"21":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":3,"docs":{"122":{"tf":1.0},"184":{"tf":1.0},"35":{"tf":1.0}},"e":{"a":{"df":2,"docs":{"117":{"tf":1.0},"230":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"tf":1.0}}}}},"df":20,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"117":{"tf":1.7320508075688772},"123":{"tf":1.0},"133":{"tf":1.4142135623730951},"139":{"tf":1.0},"147":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"238":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"71":{"tf":1.0},"84":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"148":{"tf":1.0},"37":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":14,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"170":{"tf":1.0},"204":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0}},"m":{"df":1,"docs":{"16":{"tf":1.0}}},"n":{"df":5,"docs":{"155":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"46":{"tf":1.0},"56":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":143,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"102":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":2.449489742783178},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"13":{"tf":2.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":2.23606797749979},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":2.0},"15":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"16":{"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},"169":{"tf":1.7320508075688772},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":2.23606797749979},"173":{"tf":2.0},"174":{"tf":1.7320508075688772},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"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.4142135623730951},"185":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"19":{"tf":1.0},"190":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"205":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"218":{"tf":1.0},"220":{"tf":1.0},"222":{"tf":1.4142135623730951},"23":{"tf":1.0},"236":{"tf":1.4142135623730951},"245":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":3.0},"37":{"tf":2.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":2.23606797749979},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":2.23606797749979},"56":{"tf":2.449489742783178},"58":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"64":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":2.0},"76":{"tf":2.0},"77":{"tf":2.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"85":{"tf":2.449489742783178},"86":{"tf":3.0},"87":{"tf":1.7320508075688772},"88":{"tf":2.449489742783178},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":2.6457513110645907},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"97":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"f":{"df":2,"docs":{"198":{"tf":1.0},"237":{"tf":1.0}}},"l":{"df":1,"docs":{"240":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"58":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"222":{"tf":1.4142135623730951},"32":{"tf":1.0}}}}}}},"df":5,"docs":{"15":{"tf":1.0},"167":{"tf":1.0},"233":{"tf":1.4142135623730951},"238":{"tf":1.0},"245":{"tf":1.0}}}},"n":{"d":{"df":4,"docs":{"199":{"tf":1.4142135623730951},"202":{"tf":1.0},"222":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"13":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"88":{"tf":1.0},"90":{"tf":1.0}}}}},"t":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"209":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.7320508075688772},"24":{"tf":1.0},"250":{"tf":1.4142135623730951},"40":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"233":{"tf":1.0}}},"n":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"235":{"tf":1.0}},"s":{"df":1,"docs":{"235":{"tf":1.0}}}}}},"v":{"df":4,"docs":{"110":{"tf":1.0},"231":{"tf":1.0},"246":{"tf":1.0},"63":{"tf":1.0}}}},"t":{"df":15,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"175":{"tf":1.0},"219":{"tf":1.0},"24":{"tf":2.23606797749979},"249":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":2.0},"29":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"54":{"tf":2.0},"56":{"tf":1.0},"91":{"tf":1.0}}}},"h":{"a":{"1":{"(":{"'":{"2":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"145":{"tf":1.4142135623730951}}},"df":1,"docs":{"145":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}},"p":{"df":1,"docs":{"9":{"tf":1.0}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"40":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"139":{"tf":1.0},"22":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"w":{"df":1,"docs":{"13":{"tf":1.0}},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"233":{"tf":1.0},"236":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"85":{"tf":2.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":1,"docs":{"120":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"159":{"tf":1.0},"25":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"169":{"tf":1.0},"221":{"tf":1.0},"233":{"tf":1.0},"29":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"201":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"238":{"tf":1.0},"33":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"187":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"230":{"tf":1.0},"233":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.0},"55":{"tf":1.0}}}}}}}},"n":{"df":1,"docs":{"120":{"tf":1.0}},"g":{"df":0,"docs":{},"l":{"df":16,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"180":{"tf":1.0},"201":{"tf":1.0},"213":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":1.4142135623730951},"45":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"76":{"tf":1.4142135623730951},"87":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}},"h":{"df":1,"docs":{"120":{"tf":1.0}}}},"t":{"df":1,"docs":{"234":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"247":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"d":{"a":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"184":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"252":{"tf":1.0}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"19":{"tf":1.0},"230":{"tf":1.0}}}},"v":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"241":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"229":{"tf":1.0},"77":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"235":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":4,"docs":{"106":{"tf":1.0},"21":{"tf":1.0},"228":{"tf":1.0},"240":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"228":{"tf":1.0},"235":{"tf":1.0},"35":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"238":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"155":{"tf":1.0},"34":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":12,"docs":{"21":{"tf":1.7320508075688772},"233":{"tf":1.0},"234":{"tf":1.0},"241":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"58":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}},"i":{"df":15,"docs":{"117":{"tf":1.4142135623730951},"120":{"tf":1.0},"131":{"tf":1.0},"179":{"tf":1.0},"195":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"229":{"tf":1.0},"253":{"tf":1.0},"29":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"76":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"l":{"'":{"df":1,"docs":{"21":{"tf":1.0}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"167":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0}}}}}}},":":{"2":{"0":{"1":{"1":{"df":8,"docs":{"149":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"233":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"241":{"tf":1.0},"245":{"tf":1.0}}},"6":{"df":3,"docs":{"238":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}},"2":{"3":{"df":4,"docs":{"233":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{"df":2,"docs":{"238":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":54,"docs":{"0":{"tf":1.0},"10":{"tf":1.4142135623730951},"11":{"tf":2.449489742783178},"12":{"tf":1.0},"120":{"tf":1.7320508075688772},"131":{"tf":1.0},"148":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":2.449489742783178},"200":{"tf":1.0},"21":{"tf":3.0},"216":{"tf":1.4142135623730951},"22":{"tf":1.0},"220":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":3.4641016151377544},"234":{"tf":4.69041575982343},"238":{"tf":2.449489742783178},"24":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":2.0},"246":{"tf":1.0},"252":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"44":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"'":{"df":4,"docs":{"120":{"tf":1.0},"175":{"tf":1.0},"234":{"tf":1.0},"56":{"tf":1.0}}},"df":5,"docs":{"110":{"tf":1.0},"21":{"tf":1.4142135623730951},"234":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"35":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"229":{"tf":1.0}}},"i":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"193":{"tf":1.0},"199":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"'":{"df":1,"docs":{"149":{"tf":1.0}}},"df":18,"docs":{"120":{"tf":1.4142135623730951},"160":{"tf":1.0},"169":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"44":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":10,"docs":{"106":{"tf":1.0},"12":{"tf":1.0},"149":{"tf":1.4142135623730951},"159":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"204":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"234":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":7,"docs":{"13":{"tf":1.0},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"233":{"tf":1.7320508075688772},"245":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"18":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"220":{"tf":1.4142135623730951},"222":{"tf":2.23606797749979},"228":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"55":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.0}}}}}}},"i":{"c":{"df":5,"docs":{"186":{"tf":1.0},"220":{"tf":1.0},"238":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"215":{"tf":1.4142135623730951},"76":{"tf":2.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"93":{"tf":1.0}}}}},"y":{"df":1,"docs":{"238":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"190":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"16":{"tf":1.0},"194":{"tf":1.0},"230":{"tf":1.4142135623730951},"238":{"tf":1.0},"29":{"tf":1.0},"6":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":1,"docs":{"229":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":11,"docs":{"194":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":2.6457513110645907},"234":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":2.0},"241":{"tf":1.0},"246":{"tf":1.0},"250":{"tf":2.23606797749979},"6":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":11,"docs":{"0":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"235":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0}}},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"214":{"tf":1.4142135623730951},"220":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0}},"e":{"d":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"214":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"'":{"%":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":1.0}}},"y":{"/":{"%":{"df":0,"docs":{},"m":{"/":{"%":{"d":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"122":{"tf":1.4142135623730951},"148":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"241":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"185":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":30,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"145":{"tf":1.0},"147":{"tf":2.23606797749979},"222":{"tf":1.4142135623730951},"224":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.7320508075688772},"99":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"33":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"21":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"15":{"tf":1.0},"167":{"tf":1.0},"181":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"238":{"tf":1.0},"245":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"u":{"b":{"df":2,"docs":{"169":{"tf":1.0},"55":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"205":{"tf":1.0},"220":{"tf":1.7320508075688772}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"92":{"tf":2.23606797749979},"93":{"tf":2.23606797749979},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"175":{"tf":1.0},"203":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"217":{"tf":1.0},"218":{"tf":1.0}}}}}},"r":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"105":{"tf":1.0},"106":{"tf":2.449489742783178}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"71":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"149":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"233":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"222":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":7,"docs":{"148":{"tf":1.0},"181":{"tf":1.4142135623730951},"22":{"tf":1.0},"220":{"tf":1.0},"28":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"13":{"tf":1.0}},"i":{"df":2,"docs":{"229":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":3,"docs":{"157":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"m":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"128":{"tf":1.0},"134":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"128":{"tf":2.0},"129":{"tf":1.0},"45":{"tf":1.0}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":10,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"140":{"tf":1.0},"156":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":15,"docs":{"150":{"tf":1.0},"175":{"tf":1.0},"186":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.0},"39":{"tf":1.0},"80":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"197":{"tf":1.0},"230":{"tf":1.0},"250":{"tf":1.0}}},"f":{"a":{"c":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":7,"docs":{"106":{"tf":1.0},"112":{"tf":1.4142135623730951},"172":{"tf":1.0},"27":{"tf":1.0},"64":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"x":{"df":7,"docs":{"125":{"tf":1.0},"158":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"245":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":7,"docs":{"13":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"236":{"tf":1.0}}}}}},"df":7,"docs":{"155":{"tf":1.7320508075688772},"158":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.0},"235":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"t":{"1":{"df":6,"docs":{"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0}}},"a":{"b":{"df":0,"docs":{},"l":{"df":29,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"157":{"tf":1.0},"168":{"tf":1.4142135623730951},"170":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"185":{"tf":1.0},"190":{"tf":1.4142135623730951},"216":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.4142135623730951},"238":{"tf":2.0},"247":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.7320508075688772},"37":{"tf":2.23606797749979},"42":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772}},"e":{"'":{"df":1,"docs":{"76":{"tf":1.0}}},"_":{"c":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":3,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"182":{"tf":1.7320508075688772},"183":{"tf":1.0},"184":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":3,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":19,"docs":{"117":{"tf":1.0},"130":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.7320508075688772},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"40":{"tf":1.0},"55":{"tf":1.0},"76":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"231":{"tf":1.0},"251":{"tf":1.0}}}},"n":{"df":1,"docs":{"120":{"tf":1.0}},"h":{"df":1,"docs":{"120":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"df":2,"docs":{"197":{"tf":1.0},"215":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"21":{"tf":1.0}}},"t":{"df":1,"docs":{"252":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"234":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"23":{"tf":1.0}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"230":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"241":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"231":{"tf":1.0},"234":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"37":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}},"df":4,"docs":{"149":{"tf":1.0},"230":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0}}}}}},"n":{"d":{"df":1,"docs":{"34":{"tf":1.0}}},"df":1,"docs":{"230":{"tf":1.0}},"t":{"a":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"231":{"tf":1.0},"252":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"56":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":2,"docs":{"201":{"tf":1.0},"209":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":6,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.0},"224":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"13":{"tf":1.0},"232":{"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":2,"docs":{"132":{"tf":1.0},"56":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"0":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":3,"docs":{"229":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"228":{"tf":1.0},"229":{"tf":1.0}}},"k":{"df":3,"docs":{"243":{"tf":1.0},"250":{"tf":1.0},"53":{"tf":1.0}}}},"r":{"d":{"df":6,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"139":{"tf":1.0},"234":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"117":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"81":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"15":{"tf":1.0},"172":{"tf":1.0},"205":{"tf":1.0},"241":{"tf":1.0}},"t":{"df":2,"docs":{"40":{"tf":1.0},"74":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"21":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":2,"docs":{"232":{"tf":1.0},"73":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"2":{"tf":1.0},"234":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"df":2,"docs":{"199":{"tf":1.0},"8":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":31,"docs":{"11":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.7320508075688772},"13":{"tf":2.0},"148":{"tf":2.23606797749979},"149":{"tf":1.7320508075688772},"150":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"20":{"tf":1.0},"224":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"230":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":3.0},"236":{"tf":1.4142135623730951},"238":{"tf":2.0},"241":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":2.6457513110645907},"71":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"232":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":7,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"148":{"tf":1.0},"156":{"tf":1.0},"224":{"tf":1.4142135623730951},"68":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"150":{"tf":1.0},"80":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"64":{"tf":1.0}}}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"241":{"tf":1.4142135623730951},"250":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"_":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":2,"docs":{"23":{"tf":1.0},"88":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"230":{"tf":1.0},"234":{"tf":1.0},"58":{"tf":1.0},"97":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"237":{"tf":1.0}}}}},"m":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"235":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":4,"docs":{"10":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0}}}},"p":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"21":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"235":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"r":{"a":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"229":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"243":{"tf":1.0},"246":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"/":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"13":{"tf":1.0},"156":{"tf":1.4142135623730951},"228":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.4142135623730951},"238":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"156":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"169":{"tf":1.0}}}},"i":{"df":9,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"168":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"7":{"tf":1.0},"9":{"tf":1.0}},"m":{"df":1,"docs":{"102":{"tf":2.0}}},"p":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"232":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"237":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"df":24,"docs":{"139":{"tf":1.0},"140":{"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},"206":{"tf":1.0},"219":{"tf":1.4142135623730951},"229":{"tf":1.0},"230":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.449489742783178},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"244":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"235":{"tf":1.0},"238":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"2":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"210":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"147":{"tf":1.7320508075688772},"235":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"10":{"tf":1.0},"2":{"tf":1.4142135623730951}}}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"'":{"df":1,"docs":{"224":{"tf":1.0}}},"df":18,"docs":{"117":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.4142135623730951},"140":{"tf":1.0},"159":{"tf":1.0},"233":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"58":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.7320508075688772},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"97":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"228":{"tf":1.0},"238":{"tf":1.0}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":46,"docs":{"11":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.4142135623730951},"167":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.7320508075688772},"20":{"tf":1.0},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":2.23606797749979},"204":{"tf":2.0},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":2.23606797749979},"226":{"tf":1.4142135623730951},"228":{"tf":1.0},"234":{"tf":2.0},"245":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"2":{"df":0,"docs":{},"u":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}}},"1":{".":{"1":{"2":{"3":{"4":{"5":{"6":{"7":{"8":{"9":{"0":{"1":{"2":{"3":{"4":{"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":{}},"df":0,"docs":{}},"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":{"0":{"1":{"8":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"185":{"tf":1.0},"190":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"137":{"tf":1.4142135623730951}}}}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"=":{"d":{"a":{"df":0,"docs":{},"t":{"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":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"df":1,"docs":{"14":{"tf":1.0}},"i":{"df":1,"docs":{"245":{"tf":1.0}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"246":{"tf":1.0},"9":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"235":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"224":{"tf":1.0}}}}},"r":{"df":11,"docs":{"120":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"20":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.0},"31":{"tf":1.0},"86":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"234":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"0":{"tf":1.0},"228":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"233":{"tf":1.0},"237":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"(":{"'":{"3":{"1":{"3":{"5":{"df":1,"docs":{"147":{"tf":1.0}},"z":{"df":0,"docs":{},"z":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"147":{"tf":2.0}}}}},"i":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"100":{"tf":1.0},"107":{"tf":1.7320508075688772}},"e":{"(":{"'":{"a":{"d":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":2.0},"54":{"tf":2.449489742783178},"56":{"tf":1.7320508075688772}}}},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}},"t":{"df":1,"docs":{"245":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"144":{"tf":1.0},"229":{"tf":1.0}}}}}},"x":{"df":2,"docs":{"123":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{"'":{"2":{"0":{"2":{"3":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"9":{"7":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"123":{"tf":1.4142135623730951},"148":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"237":{"tf":1.0},"63":{"tf":1.0},"85":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"235":{"tf":1.0},"253":{"tf":1.0},"47":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":3,"docs":{"220":{"tf":1.0},"238":{"tf":1.0},"76":{"tf":1.0}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"[":{"1":{".":{"9":{"9":{"df":2,"docs":{"40":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"40":{"tf":2.0},"41":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}},"df":2,"docs":{"24":{"tf":2.449489742783178},"27":{"tf":2.0}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.7320508075688772}}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"194":{"tf":1.0},"6":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"230":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":13,"docs":{"117":{"tf":1.0},"13":{"tf":2.23606797749979},"16":{"tf":1.0},"175":{"tf":1.4142135623730951},"190":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":3.0},"243":{"tf":1.0},"25":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"27":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":5,"docs":{"149":{"tf":1.0},"16":{"tf":1.0},"195":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"103":{"tf":1.4142135623730951},"147":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.7320508075688772}}}}}}},"r":{"d":{"df":0,"docs":{},"u":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"226":{"tf":1.0}}},"l":{"df":2,"docs":{"201":{"tf":1.0},"216":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"207":{"tf":1.7320508075688772},"216":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"198":{"tf":1.4142135623730951},"76":{"tf":1.0}}}},"df":69,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"148":{"tf":1.0},"18":{"tf":1.0},"181":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":2.23606797749979},"221":{"tf":1.0},"226":{"tf":1.7320508075688772},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"231":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"25":{"tf":1.0},"252":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"40":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}},"df":30,"docs":{"10":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"15":{"tf":2.0},"16":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"220":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"244":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.0},"252":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0},"76":{"tf":2.0},"8":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"198":{"tf":1.4142135623730951},"215":{"tf":2.0}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"[":{"1":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"_":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"76":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":6,"docs":{"124":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":2,"docs":{"147":{"tf":1.0},"224":{"tf":1.0}}}},"u":{"df":0,"docs":{},"i":{"d":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"'":{"d":{"2":{"c":{"df":0,"docs":{},"e":{"2":{"1":{"c":{"9":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"'":{"d":{"2":{"c":{"df":0,"docs":{},"e":{"2":{"1":{"c":{"9":{"d":{"2":{"6":{"8":{"4":{"0":{"9":{"a":{"b":{"1":{"df":0,"docs":{},"e":{"0":{"4":{"9":{"df":0,"docs":{},"e":{"1":{"2":{"0":{"0":{"b":{"df":0,"docs":{},"f":{"a":{"4":{"7":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{"'":{"d":{"2":{"c":{"df":0,"docs":{},"e":{"2":{"1":{"c":{"9":{"d":{"2":{"6":{"8":{"4":{"0":{"9":{"a":{"b":{"1":{"df":0,"docs":{},"e":{"0":{"4":{"9":{"df":0,"docs":{},"e":{"1":{"2":{"0":{"0":{"b":{"df":0,"docs":{},"f":{"a":{"4":{"7":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"'":{"d":{"2":{"c":{"df":0,"docs":{},"e":{"2":{"1":{"c":{"9":{"d":{"2":{"6":{"8":{"4":{"0":{"9":{"a":{"b":{"1":{"df":0,"docs":{},"e":{"0":{"4":{"9":{"df":0,"docs":{},"e":{"1":{"2":{"0":{"0":{"b":{"df":0,"docs":{},"f":{"a":{"4":{"7":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"144":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"144":{"tf":2.449489742783178},"226":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"3":{".":{"0":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"81":{"tf":2.0}},"i":{"d":{"df":2,"docs":{"12":{"tf":1.0},"167":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":67,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.0},"127":{"tf":1.7320508075688772},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"145":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"180":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"224":{"tf":1.0},"23":{"tf":1.7320508075688772},"233":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"37":{"tf":2.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"48":{"tf":2.0},"56":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"/":{"@":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"226":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}},"t":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}},"df":5,"docs":{"195":{"tf":1.7320508075688772},"198":{"tf":1.0},"29":{"tf":2.0},"35":{"tf":1.0},"4":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"df":2,"docs":{"199":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":5,"docs":{"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"241":{"tf":1.4142135623730951}}},"s":{"a":{"df":2,"docs":{"143":{"tf":1.0},"18":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"110":{"tf":1.0},"13":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"230":{"tf":1.0}},"i":{"df":1,"docs":{"230":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"143":{"tf":1.0},"18":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"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":{"184":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"184":{"tf":1.0},"186":{"tf":1.4142135623730951},"187":{"tf":3.0},"188":{"tf":2.0},"20":{"tf":1.0},"28":{"tf":1.0},"55":{"tf":1.0}}}},"k":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"16":{"tf":1.0}}},"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"13":{"tf":1.4142135623730951},"157":{"tf":1.0},"236":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":3,"docs":{"171":{"tf":1.0},"2":{"tf":1.0},"56":{"tf":1.0}}},"l":{"df":1,"docs":{"233":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"167":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"236":{"tf":1.4142135623730951},"24":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"194":{"tf":1.0},"6":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"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":{"233":{"tf":1.0}}}}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":8,"docs":{"0":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"220":{"tf":1.0},"236":{"tf":1.4142135623730951},"238":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"13":{"tf":1.0},"199":{"tf":1.0},"238":{"tf":1.0}}}},"r":{"df":1,"docs":{"230":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"238":{"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":2,"docs":{"231":{"tf":1.0},"234":{"tf":1.4142135623730951}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"71":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"131":{"tf":1.4142135623730951},"233":{"tf":1.0},"35":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"102":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"174":{"tf":1.7320508075688772},"175":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"132":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"55":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"16":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"34":{"tf":1.0},"60":{"tf":1.0}}}}}}}},"o":{"b":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":5,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0}}},"l":{"d":{"df":7,"docs":{"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"238":{"tf":2.0},"250":{"tf":1.0},"5":{"tf":1.0},"97":{"tf":2.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"10":{"tf":1.0},"221":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"215":{"tf":1.0},"228":{"tf":1.0},"34":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"207":{"tf":1.7320508075688772},"216":{"tf":1.0}}}}},"x":{"%":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"'":{"d":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"224":{"tf":1.0},"72":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":30,"docs":{"110":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"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},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"88":{"tf":1.0},"91":{"tf":2.0}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"238":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"21":{"tf":1.0},"241":{"tf":1.4142135623730951}}}}}}},"s":{"d":{":":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"224":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"224":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"204":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"224":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"224":{"tf":1.0}}}}},"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":2,"docs":{"224":{"tf":1.0},"226":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"224":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"216":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":3,"docs":{"158":{"tf":1.0},"179":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"229":{"tf":1.0},"230":{"tf":1.4142135623730951},"241":{"tf":1.0},"71":{"tf":1.0}}}},"df":1,"docs":{"234":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"219":{"tf":1.0},"222":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"13":{"tf":1.0},"195":{"tf":1.0},"234":{"tf":1.0}}}},"r":{"df":2,"docs":{"0":{"tf":1.0},"250":{"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":{"167":{"tf":1.0}}}}}}}}}},"z":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"141":{"tf":1.0},"215":{"tf":1.0},"81":{"tf":1.7320508075688772}}}},"df":1,"docs":{"147":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"3":{"2":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"146":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":4,"docs":{"146":{"tf":1.0},"225":{"tf":1.0},"41":{"tf":1.0},"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"z":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"140":{"tf":1.0},"141":{"tf":1.4142135623730951},"215":{"tf":1.0},"81":{"tf":1.7320508075688772}}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"0":{":":{"0":{"0":{":":{"0":{"0":{".":{"0":{"0":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"z":{"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":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":16,"docs":{"122":{"tf":2.0},"123":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"137":{"tf":1.0},"161":{"tf":2.23606797749979},"162":{"tf":2.23606797749979},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"225":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"68":{"tf":2.6457513110645907},"69":{"tf":2.0},"71":{"tf":1.7320508075688772}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{".":{"0":{"0":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"3":{"df":0,"docs":{},"z":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"137":{"tf":1.0},"224":{"tf":1.0},"68":{"tf":1.0}},"z":{"df":5,"docs":{"123":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":3,"docs":{"161":{"tf":1.0},"162":{"tf":1.0},"71":{"tf":1.0}}},"3":{":":{"0":{"4":{":":{"0":{"5":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"162":{"tf":1.0},"163":{"tf":1.0}}},"4":{"df":9,"docs":{"161":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}}},"5":{"df":4,"docs":{"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"164":{"tf":1.0}}},"7":{"df":5,"docs":{"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0}}},"8":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"156":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"236":{"tf":1.0}}},"9":{"df":1,"docs":{"245":{"tf":1.4142135623730951}},"t":{"2":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":3,"docs":{"204":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}}}},"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":{"1":{"2":{"d":{"df":0,"docs":{},"e":{"4":{"3":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"105":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"41":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":2.0}}},"1":{",":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":6,"docs":{"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0}}}}}}}},"2":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"4":{"0":{"df":3,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"40":{"tf":1.0}}},"df":1,"docs":{"40":{"tf":1.0}}},"5":{"0":{"df":3,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"40":{"tf":1.0}}},"df":1,"docs":{"40":{"tf":1.0}}},"9":{"8":{"df":1,"docs":{"25":{"tf":1.0}}},"9":{"df":4,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"25":{"tf":1.0}}},"df":1,"docs":{"117":{"tf":1.0}}},"df":1,"docs":{"101":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"229":{"tf":1.0}}}}},"1":{"df":1,"docs":{"233":{"tf":1.0}}},"2":{"3":{"df":5,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"190":{"tf":1.0},"64":{"tf":1.0}}},"8":{".":{"5":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"66":{"tf":1.0}}},":":{"3":{"4":{":":{"5":{"6":{".":{"7":{"8":{"9":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"74":{"tf":1.7320508075688772},"81":{"tf":2.0}}},"3":{"df":1,"docs":{"46":{"tf":1.0}}},"5":{"0":{"0":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":0,"docs":{},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"9":{"2":{"8":{"df":1,"docs":{"245":{"tf":1.0}}},"9":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":1,"docs":{"233":{"tf":1.0}}},"4":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"df":2,"docs":{"233":{"tf":1.7320508075688772},"235":{"tf":1.0}}},"2":{"df":1,"docs":{"74":{"tf":1.7320508075688772}}},"5":{"df":1,"docs":{"233":{"tf":1.0}}},"6":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"0":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"9":{"2":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":29,"docs":{"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"132":{"tf":1.0},"140":{"tf":1.0},"145":{"tf":1.0},"168":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":2.23606797749979},"179":{"tf":1.4142135623730951},"201":{"tf":1.0},"205":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"77":{"tf":3.0},"81":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"91":{"tf":2.8284271247461903},"94":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"2":{",":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}},"'":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"'":{"2":{"0":{"2":{"3":{"df":5,"docs":{"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"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":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"0":{"df":2,"docs":{"25":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":1,"docs":{"81":{"tf":2.0}}},"9":{"9":{"df":7,"docs":{"217":{"tf":1.0},"23":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"1":{"df":8,"docs":{"161":{"tf":2.0},"162":{"tf":2.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"241":{"tf":1.0},"71":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"230":{"tf":1.0}}},"6":{"df":1,"docs":{"241":{"tf":1.0}}},"7":{"df":4,"docs":{"224":{"tf":1.4142135623730951},"241":{"tf":1.0},"68":{"tf":2.23606797749979},"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"1":{"0":{"df":3,"docs":{"229":{"tf":1.0},"233":{"tf":1.0},"241":{"tf":1.0}}},"1":{"df":3,"docs":{"204":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}}},"2":{"df":1,"docs":{"241":{"tf":1.0}}},"5":{"df":1,"docs":{"241":{"tf":1.0}}},"6":{"df":1,"docs":{"241":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":3,"docs":{"229":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"241":{"tf":1.0},"251":{"tf":1.0}}},"3":{"df":8,"docs":{"13":{"tf":1.4142135623730951},"156":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"225":{"tf":1.0},"233":{"tf":1.0},"252":{"tf":1.0},"81":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"134":{"tf":1.0}}},"1":{"df":1,"docs":{"81":{"tf":1.7320508075688772}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"\"":{",":{"\"":{"@":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"\"":{":":{"\"":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"d":{":":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"\"":{"df":0,"docs":{},"}":{"df":0,"docs":{},"}":{",":{"df":0,"docs":{},"{":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"1":{"\"":{":":{"1":{",":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"2":{"\"":{":":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"]":{",":{"[":{"1":{",":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"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":5,"docs":{"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0}}},"3":{":":{"3":{"0":{":":{"0":{"0":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"9":{":":{"1":{"2":{".":{"1":{"2":{"3":{"4":{"5":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"124":{"tf":1.0}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":2,"docs":{"158":{"tf":1.0},"159":{"tf":1.0}}},"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":{"179":{"tf":1.4142135623730951}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":3,"docs":{"156":{"tf":1.0},"158":{"tf":1.0},"236":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":37,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"127":{"tf":1.0},"132":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":2.23606797749979},"176":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.7320508075688772},"226":{"tf":1.0},"23":{"tf":1.0},"238":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":2.23606797749979},"77":{"tf":2.8284271247461903},"78":{"tf":2.6457513110645907},"81":{"tf":1.4142135623730951},"86":{"tf":2.23606797749979},"87":{"tf":1.4142135623730951},"91":{"tf":2.0},"97":{"tf":1.4142135623730951}}},"3":{",":{"4":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},".":{"0":{"0":{"df":1,"docs":{"29":{"tf":1.0}}},"df":1,"docs":{"39":{"tf":1.0}}},"5":{"5":{"5":{"df":1,"docs":{"86":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{"df":5,"docs":{"218":{"tf":1.0},"23":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":0,"docs":{},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"159":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"3":{"5":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"74":{"tf":1.7320508075688772}}},"7":{"9":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"3":{":":{"3":{"8":{"0":{"3":{"df":2,"docs":{"195":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"198":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":1,"docs":{"232":{"tf":1.0}}},"df":21,"docs":{"100":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"132":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.7320508075688772},"179":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.0},"48":{"tf":1.4142135623730951},"54":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"77":{"tf":2.0},"91":{"tf":2.6457513110645907},"97":{"tf":1.0}}},"4":{".":{"0":{"0":{"df":2,"docs":{"23":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"7":{"7":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"9":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"54":{"tf":1.0}}},"1":{"df":1,"docs":{"215":{"tf":1.7320508075688772}}},"9":{"a":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":3,"docs":{"179":{"tf":1.0},"224":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"5":{"6":{"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"7":{"1":{"4":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"b":{"9":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":0,"docs":{},"e":{"1":{"2":{"0":{"0":{"b":{"df":0,"docs":{},"f":{"a":{"4":{"7":{"df":1,"docs":{"144":{"tf":1.0}}},"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":{"8":{"5":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"9":{"2":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"100":{"tf":1.0},"106":{"tf":1.4142135623730951},"132":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":2.0},"178":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"42":{"tf":1.0},"46":{"tf":1.0},"73":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"91":{"tf":2.0},"97":{"tf":1.0}},"f":{"7":{"4":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"}":{"]":{".":{"a":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{".":{"0":{"0":{"df":5,"docs":{"29":{"tf":1.0},"55":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"9":{"8":{"df":2,"docs":{"24":{"tf":1.0},"28":{"tf":1.0}}},"9":{"df":5,"docs":{"139":{"tf":1.0},"23":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"c":{"5":{"a":{"5":{"1":{"2":{"9":{"0":{"7":{"4":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"101":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.4142135623730951},"29":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"77":{"tf":2.0},"78":{"tf":2.0},"97":{"tf":1.0}}},"6":{"0":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}},"4":{"/":{"1":{"2":{"8":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"224":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}},"6":{"df":1,"docs":{"108":{"tf":1.0}}},"7":{"df":1,"docs":{"108":{"tf":1.0}}},"df":2,"docs":{"29":{"tf":1.7320508075688772},"97":{"tf":1.0}},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"238":{"tf":1.0}}}}},"7":{".":{"9":{"9":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"5":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{"6":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"4":{"df":2,"docs":{"224":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":1,"docs":{"112":{"tf":1.0}}},"8":{"9":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"180":{"tf":1.7320508075688772},"29":{"tf":1.0}}},"8":{".":{"9":{"9":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"5":{"2":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{"d":{"d":{"2":{"9":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"8":{"df":0,"docs":{},"e":{"7":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"1":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"233":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"147":{"tf":1.0},"224":{"tf":1.4142135623730951}}},"9":{".":{"9":{"9":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"7":{"1":{"9":{"9":{"2":{"5":{"4":{"7":{"4":{"0":{"9":{"9":{"2":{".":{"1":{"2":{"3":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"2":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"176":{"tf":1.0}}},"7":{",":{"9":{"6":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"176":{"tf":1.0},"228":{"tf":1.0}}},"9":{"df":3,"docs":{"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"_":{"df":1,"docs":{"88":{"tf":1.0}}},"a":{".":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"b":{"7":{"c":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"120":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":10,"docs":{"10":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.0},"241":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"58":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}}}}},"c":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":17,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"208":{"tf":2.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},"220":{"tf":1.0},"35":{"tf":1.4142135623730951},"45":{"tf":1.0},"64":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"125":{"tf":1.0},"151":{"tf":1.0},"155":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"155":{"tf":1.0},"175":{"tf":1.0}}}}}}}},"r":{"d":{"df":6,"docs":{"13":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"233":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"120":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"120":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"55":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"20":{"tf":1.0},"57":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"228":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"243":{"tf":1.0},"251":{"tf":2.23606797749979}}}}},"d":{"df":5,"docs":{"15":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.0},"46":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"183":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"245":{"tf":1.0}}}}}}},"df":0,"docs":{}},"[":{"0":{"]":{".":{"c":{"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":5,"docs":{"14":{"tf":1.0},"168":{"tf":1.0},"229":{"tf":1.4142135623730951},"238":{"tf":1.0},"56":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"33":{"tf":1.0},"43":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"253":{"tf":1.0}}}}}}},"g":{"df":1,"docs":{"91":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":5,"docs":{"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"134":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"16":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":2,"docs":{"228":{"tf":1.0},"241":{"tf":1.0}},"m":{"df":1,"docs":{"198":{"tf":1.0}}}},"k":{"a":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"a":{"df":3,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"a":{"df":4,"docs":{"24":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.7320508075688772},"48":{"tf":1.0}},"s":{"df":2,"docs":{"120":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":8,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"181":{"tf":1.0},"201":{"tf":1.4142135623730951},"239":{"tf":1.0},"246":{"tf":1.0},"47":{"tf":1.0},"57":{"tf":1.0}}},"y":{"d":{"b":{"df":2,"docs":{"241":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"236":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"234":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}}}},"z":{"df":0,"docs":{},"o":{"'":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":2,"docs":{"194":{"tf":2.0},"6":{"tf":2.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":5,"docs":{"176":{"tf":1.0},"193":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}},"n":{"df":5,"docs":{"110":{"tf":1.0},"187":{"tf":1.0},"234":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":6,"docs":{"13":{"tf":1.0},"190":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"250":{"tf":1.0},"40":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":10,"docs":{"16":{"tf":1.0},"19":{"tf":1.0},"216":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0},"28":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"237":{"tf":1.0},"241":{"tf":1.4142135623730951},"250":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"245":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"239":{"tf":1.0}}}},"t":{"df":5,"docs":{"228":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"246":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"216":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":5,"docs":{"37":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"15":{"tf":1.0},"21":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"77":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"0":{"tf":1.0},"235":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"232":{"tf":1.4142135623730951},"234":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"220":{"tf":2.23606797749979},"228":{"tf":1.0},"234":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":29,"docs":{"192":{"tf":1.0},"199":{"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.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},"238":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"8":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"218":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"235":{"tf":1.4142135623730951},"41":{"tf":1.0},"51":{"tf":1.0}},"i":{"df":0,"docs":{},"x":{"df":27,"docs":{"227":{"tf":1.7320508075688772},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"203":{"tf":2.449489742783178},"204":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":2.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0}}}}}},"l":{"d":{"+":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"204":{"tf":2.0},"212":{"tf":2.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":14,"docs":{"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"205":{"tf":2.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},"216":{"tf":1.0},"220":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"n":{"d":{".":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"213":{"tf":2.0},"220":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"214":{"tf":2.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":3,"docs":{"207":{"tf":2.0},"211":{"tf":2.0},"216":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"109":{"tf":1.0},"234":{"tf":1.0}}},"df":2,"docs":{"134":{"tf":1.0},"54":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"168":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"238":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":11,"docs":{"227":{"tf":1.0},"242":{"tf":1.7320508075688772},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"238":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"110":{"tf":1.7320508075688772},"141":{"tf":1.0},"147":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"206":{"tf":1.0},"215":{"tf":1.0},"233":{"tf":1.0},"64":{"tf":1.0},"97":{"tf":1.7320508075688772}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"109":{"tf":1.0},"127":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"16":{"tf":1.0},"230":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"(":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":1,"docs":{"40":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"132":{"tf":2.0},"40":{"tf":1.0}}}}},"df":0,"docs":{}},"df":22,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"132":{"tf":2.23606797749979},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"180":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772},"73":{"tf":2.8284271247461903},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.0},"91":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":2.449489742783178}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"220":{"tf":3.1622776601683795},"228":{"tf":1.0},"234":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.0}}}}}},"s":{"c":{"df":2,"docs":{"44":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"120":{"tf":1.0}},"h":{"df":1,"docs":{"120":{"tf":1.0}}}}},"k":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"234":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"185":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":2.8284271247461903},"191":{"tf":2.23606797749979},"20":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"10":{"tf":1.0},"206":{"tf":1.0},"220":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"2":{"df":1,"docs":{"120":{"tf":1.0}}},"df":1,"docs":{"120":{"tf":1.0}},"h":{"df":1,"docs":{"120":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"229":{"tf":1.0},"233":{"tf":1.0},"57":{"tf":1.0},"81":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"131":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":4,"docs":{"229":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.0},"215":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"215":{"tf":1.4142135623730951},"33":{"tf":1.0}}}}},"o":{"df":1,"docs":{"66":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":11,"docs":{"160":{"tf":1.0},"175":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"29":{"tf":1.0},"50":{"tf":1.0},"6":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"130":{"tf":1.7320508075688772}}},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"11":{"tf":1.0},"158":{"tf":1.0},"215":{"tf":1.0}}}},"df":1,"docs":{"237":{"tf":1.0}}},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"250":{"tf":1.0}}}}}},"b":{"'":{"1":{"5":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"]":{"[":{"'":{"a":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{".":{"[":{"'":{"a":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"169":{"tf":1.0}}},"c":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"1":{"df":0,"docs":{},"e":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}},"8":{"df":0,"docs":{},"e":{"3":{"5":{"c":{"8":{"2":{"b":{"9":{"3":{"5":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"[":{"'":{"a":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":2.6457513110645907}}}}}}},"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"13":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"229":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"235":{"tf":1.0}}}},"r":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"6":{"4":{"(":{"'":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"'":{"0":{"1":{"0":{"2":{"0":{"3":{"df":1,"docs":{"143":{"tf":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":{"143":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":11,"docs":{"120":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"225":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"25":{"tf":1.0},"45":{"tf":1.0}}},"i":{"c":{"df":14,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"215":{"tf":2.0},"33":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"y":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":8,"docs":{"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"225":{"tf":1.0},"77":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"233":{"tf":1.0},"235":{"tf":1.0}}}}},"df":1,"docs":{"29":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"20":{"tf":1.0},"47":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"12":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"175":{"tf":1.0},"192":{"tf":1.0},"233":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"85":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"131":{"tf":1.0},"203":{"tf":1.0},"234":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"58":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"232":{"tf":1.0},"234":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":8,"docs":{"167":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"220":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"58":{"tf":1.0},"88":{"tf":1.0}}}}},"n":{"d":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"235":{"tf":1.0}}}}},"t":{"df":3,"docs":{"0":{"tf":1.0},"148":{"tf":1.0},"19":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"158":{"tf":2.449489742783178},"159":{"tf":1.4142135623730951},"233":{"tf":1.0},"84":{"tf":2.8284271247461903}}}}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":2,"docs":{"21":{"tf":1.0},"245":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"226":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"146":{"tf":1.4142135623730951},"194":{"tf":1.0},"197":{"tf":2.0},"198":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"6":{"tf":1.0},"72":{"tf":1.0}}}}},"d":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"74":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":4,"docs":{"224":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"86":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":2.6457513110645907}}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"df":9,"docs":{"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":2.0},"224":{"tf":1.0},"226":{"tf":1.0},"250":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"215":{"tf":1.0},"216":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"224":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"85":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":12,"docs":{"159":{"tf":1.0},"219":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"237":{"tf":1.0},"245":{"tf":1.0},"38":{"tf":1.4142135623730951},"52":{"tf":1.0},"58":{"tf":1.0},"85":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}}}},"x":{"df":1,"docs":{"238":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"35":{"tf":1.0},"74":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"78":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"196":{"tf":1.0}}}},"d":{"df":2,"docs":{"183":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"238":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"229":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":10,"docs":{"193":{"tf":1.0},"196":{"tf":1.0},"21":{"tf":1.0},"229":{"tf":1.4142135623730951},"231":{"tf":1.0},"234":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"247":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":3,"docs":{"241":{"tf":1.4142135623730951},"246":{"tf":1.0},"250":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":3,"docs":{"200":{"tf":1.4142135623730951},"219":{"tf":2.23606797749979},"221":{"tf":1.7320508075688772}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":5,"docs":{"230":{"tf":1.0},"233":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.7320508075688772},"241":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"221":{"tf":1.0},"23":{"tf":1.0}}}}}},"y":{"df":2,"docs":{"229":{"tf":1.0},"240":{"tf":1.0}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"101":{"tf":1.0},"146":{"tf":1.4142135623730951}}}}}},"c":{"'":{"]":{"[":{"1":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"74":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":4,"docs":{"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"74":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"34":{"tf":1.0},"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"[":{"1":{"df":1,"docs":{"173":{"tf":1.0}}},"2":{"]":{".":{"df":0,"docs":{},"f":{"df":1,"docs":{"180":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"83":{"tf":1.0}}}},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"220":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}},"a":{"d":{"a":{"'":{"df":0,"docs":{},"}":{",":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"238":{"tf":1.0},"56":{"tf":1.4142135623730951},"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"57":{"tf":1.0},"59":{"tf":1.0}}}}}},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"236":{"tf":1.0},"47":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.0},"34":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":10,"docs":{"129":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"181":{"tf":1.0},"20":{"tf":1.0},"231":{"tf":1.0},"238":{"tf":1.4142135623730951},"54":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0}}},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}},"1":{"2":{"3":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":5,"docs":{"136":{"tf":2.0},"64":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.0},"97":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}},"d":{"c":{"df":1,"docs":{"230":{"tf":1.0}}},"df":1,"docs":{"10":{"tf":1.0}}},"df":16,"docs":{"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"168":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.7320508075688772},"177":{"tf":2.0},"178":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"91":{"tf":2.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"230":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":1,"docs":{"239":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"109":{"tf":1.0},"97":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"233":{"tf":1.0},"238":{"tf":1.0}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"c":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"20":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.4142135623730951}}}},"r":{"(":{"1":{"0":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"6":{"5":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"147":{"tf":1.7320508075688772},"77":{"tf":1.0},"88":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"_":{"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":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"100":{"tf":2.0},"112":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.7320508075688772},"64":{"tf":2.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":4,"docs":{"139":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"185":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"185":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"172":{"tf":1.7320508075688772},"173":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"120":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":4,"docs":{"21":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"238":{"tf":1.0},"250":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":17,"docs":{"167":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":2.0},"34":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":2.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"16":{"tf":1.0},"195":{"tf":1.0},"230":{"tf":1.0}}},"r":{"df":3,"docs":{"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"10":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"215":{"tf":1.7320508075688772},"222":{"tf":1.4142135623730951},"35":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"151":{"tf":1.0},"233":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"10":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"149":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"u":{"d":{"df":1,"docs":{"250":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"141":{"tf":1.7320508075688772}},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"d":{"'":{"df":1,"docs":{"233":{"tf":1.0}}},"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":6,"docs":{"10":{"tf":1.0},"108":{"tf":1.0},"181":{"tf":1.0},"215":{"tf":1.7320508075688772},"253":{"tf":1.0},"9":{"tf":1.0}}}},"df":1,"docs":{"120":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":4,"docs":{"23":{"tf":1.0},"24":{"tf":2.23606797749979},"83":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":2,"docs":{"230":{"tf":1.0},"232":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"120":{"tf":1.0},"179":{"tf":1.0},"225":{"tf":1.4142135623730951},"40":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"234":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"205":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"222":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"1":{"\"":{",":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"2":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"1":{",":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"2":{"\"":{":":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"211":{"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":{",":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"2":{"\"":{":":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"132":{"tf":1.0},"173":{"tf":2.0},"174":{"tf":1.4142135623730951},"48":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":2.0},"77":{"tf":2.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0}}},"2":{"df":1,"docs":{"48":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"183":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"213":{"tf":1.0},"214":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"246":{"tf":1.7320508075688772},"249":{"tf":1.7320508075688772}}}},"df":35,"docs":{"128":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"155":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.4142135623730951},"187":{"tf":2.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"220":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.7320508075688772},"246":{"tf":1.0},"25":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":2.0},"37":{"tf":1.4142135623730951},"38":{"tf":2.8284271247461903},"39":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"54":{"tf":2.6457513110645907},"63":{"tf":1.0},"76":{"tf":2.0},"79":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"205":{"tf":1.0},"215":{"tf":1.0},"221":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"230":{"tf":1.0},"241":{"tf":1.0}}},"m":{"a":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":4,"docs":{"133":{"tf":1.0},"209":{"tf":1.0},"23":{"tf":1.4142135623730951},"35":{"tf":1.0}},"n":{"d":{"df":7,"docs":{"195":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"240":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"190":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"238":{"tf":1.0},"247":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.0},"55":{"tf":1.7320508075688772}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"235":{"tf":1.0}}}},"r":{"df":6,"docs":{"234":{"tf":1.0},"238":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.7320508075688772}}}}}}},"t":{"df":9,"docs":{"136":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"194":{"tf":1.0},"241":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":2.0},"6":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"196":{"tf":1.0},"197":{"tf":1.0},"247":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"t":{"df":5,"docs":{"0":{"tf":1.0},"207":{"tf":1.0},"241":{"tf":1.0},"30":{"tf":1.0},"44":{"tf":1.0}}},"x":{"df":4,"docs":{"229":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"13":{"tf":1.0},"228":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}},"s":{"df":1,"docs":{"21":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"49":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"228":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"237":{"tf":2.0},"250":{"tf":2.0},"74":{"tf":1.0},"78":{"tf":2.0}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":2.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"109":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"97":{"tf":2.6457513110645907}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"234":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"235":{"tf":1.0},"237":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"138":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"46":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"151":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":3.0},"38":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"232":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":2.0}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"185":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":2,"docs":{"185":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"78":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":17,"docs":{"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"161":{"tf":2.0},"20":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":2.0},"95":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":24,"docs":{"132":{"tf":1.0},"199":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951},"202":{"tf":1.7320508075688772},"203":{"tf":2.0},"204":{"tf":1.7320508075688772},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"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},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"233":{"tf":1.0},"55":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"253":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"22":{"tf":1.0},"37":{"tf":1.0},"91":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"'":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"235":{"tf":1.0}}},"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":2,"docs":{"197":{"tf":1.0},"233":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"253":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":4,"docs":{"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"233":{"tf":1.0},"245":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"247":{"tf":1.0}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"108":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"120":{"tf":1.0}}},"t":{"df":3,"docs":{"229":{"tf":1.0},"233":{"tf":1.4142135623730951},"55":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"h":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":3,"docs":{"112":{"tf":1.0},"131":{"tf":2.23606797749979},"173":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"8":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"40":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":8,"docs":{"34":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"241":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"148":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"233":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"237":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":18,"docs":{"12":{"tf":1.4142135623730951},"170":{"tf":1.0},"187":{"tf":2.6457513110645907},"190":{"tf":2.449489742783178},"22":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"235":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"55":{"tf":2.23606797749979},"56":{"tf":1.4142135623730951}}}},"u":{"b":{"df":0,"docs":{},"e":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"l":{"df":23,"docs":{"10":{"tf":1.0},"199":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":2.0},"207":{"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},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"5":{"tf":1.0},"8":{"tf":2.23606797749979}},"i":{"df":1,"docs":{"74":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":2,"docs":{"125":{"tf":1.4142135623730951},"154":{"tf":2.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"125":{"tf":1.4142135623730951},"153":{"tf":2.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"125":{"tf":1.4142135623730951},"13":{"tf":1.0},"152":{"tf":2.0}}}}},"df":0,"docs":{}}}}}}}},"df":9,"docs":{"13":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"29":{"tf":1.0},"56":{"tf":1.0},"80":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"125":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"d":{"2":{"6":{"8":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"15":{"tf":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":{"15":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"a":{"'":{"df":1,"docs":{"236":{"tf":1.0}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":27,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":1.4142135623730951},"155":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"181":{"tf":1.4142135623730951},"191":{"tf":1.0},"21":{"tf":1.4142135623730951},"228":{"tf":2.23606797749979},"229":{"tf":2.8284271247461903},"230":{"tf":2.23606797749979},"231":{"tf":1.7320508075688772},"232":{"tf":1.7320508075688772},"233":{"tf":3.7416573867739413},"234":{"tf":1.7320508075688772},"235":{"tf":2.0},"238":{"tf":2.449489742783178},"239":{"tf":1.7320508075688772},"241":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}},"df":79,"docs":{"117":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"143":{"tf":1.0},"148":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772},"16":{"tf":2.0},"167":{"tf":1.0},"17":{"tf":1.4142135623730951},"170":{"tf":1.0},"192":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":2.0},"208":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":2.23606797749979},"22":{"tf":2.449489742783178},"220":{"tf":1.0},"223":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.7320508075688772},"232":{"tf":1.4142135623730951},"233":{"tf":3.3166247903554},"234":{"tf":1.0},"235":{"tf":2.8284271247461903},"236":{"tf":1.7320508075688772},"237":{"tf":1.4142135623730951},"238":{"tf":3.3166247903554},"239":{"tf":2.0},"24":{"tf":1.0},"241":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.0},"246":{"tf":1.4142135623730951},"249":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":2.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.7320508075688772},"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.4142135623730951},"81":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"234":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"(":{"'":{"2":{"0":{"0":{"1":{"df":1,"docs":{"122":{"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":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"121":{"tf":1.4142135623730951},"151":{"tf":1.0},"80":{"tf":1.0}}}}}},"df":11,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":2.0},"148":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.4142135623730951},"156":{"tf":1.0},"224":{"tf":1.4142135623730951},"245":{"tf":1.0},"69":{"tf":2.6457513110645907}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"'":{"2":{"0":{"0":{"1":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"2":{"0":{"2":{"3":{"df":1,"docs":{"81":{"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":{}}}}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}}}},"y":{"df":4,"docs":{"124":{"tf":1.4142135623730951},"154":{"tf":1.0},"246":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"b":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":21,"docs":{"122":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"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},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.4142135623730951}},"e":{"6":{"df":0,"docs":{},"f":{"df":1,"docs":{"60":{"tf":1.0}}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}}},"c":{"a":{"d":{"df":5,"docs":{"230":{"tf":1.7320508075688772},"232":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951},"241":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"238":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"171":{"tf":1.0}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":12,"docs":{"13":{"tf":1.0},"133":{"tf":1.0},"16":{"tf":1.0},"172":{"tf":1.0},"195":{"tf":1.4142135623730951},"198":{"tf":1.7320508075688772},"208":{"tf":1.0},"228":{"tf":1.0},"236":{"tf":1.0},"44":{"tf":1.0},"57":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"190":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"215":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"88":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"120":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"13":{"tf":1.4142135623730951},"188":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":2.0},"235":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":3.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"133":{"tf":1.4142135623730951},"211":{"tf":1.0},"222":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"32":{"tf":1.0},"35":{"tf":1.4142135623730951}}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"238":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"233":{"tf":1.0},"239":{"tf":1.0}}}},"t":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"131":{"tf":1.0},"154":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"167":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0}}}}},"s":{"c":{"df":2,"docs":{"132":{"tf":1.0},"44":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"a":{"c":{"df":4,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"58":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"234":{"tf":1.4142135623730951},"235":{"tf":1.0}}}},"r":{"df":4,"docs":{"187":{"tf":1.0},"233":{"tf":1.4142135623730951},"236":{"tf":1.0},"64":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"233":{"tf":2.0},"235":{"tf":1.7320508075688772}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"17":{"tf":1.0},"192":{"tf":1.0},"20":{"tf":1.0},"224":{"tf":1.0},"237":{"tf":1.0},"248":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"20":{"tf":1.0},"229":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"131":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":2.0},"245":{"tf":1.0},"252":{"tf":1.0},"34":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"225":{"tf":1.0}}}},"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"131":{"tf":1.0},"154":{"tf":1.0},"16":{"tf":1.0},"234":{"tf":1.4142135623730951},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"58":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"233":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0}},"i":{"df":2,"docs":{"15":{"tf":1.0},"238":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"132":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"232":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"198":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.4142135623730951},"249":{"tf":1.0},"49":{"tf":1.0},"77":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"197":{"tf":1.0},"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"74":{"tf":1.7320508075688772},"79":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":4,"docs":{"228":{"tf":1.4142135623730951},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"250":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"l":{"df":5,"docs":{"201":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"55":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"8":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"df":2,"docs":{"195":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":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":{"195":{"tf":1.0}}}}},"df":5,"docs":{"193":{"tf":1.7320508075688772},"195":{"tf":2.449489742783178},"196":{"tf":1.7320508075688772},"197":{"tf":1.0},"4":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":43,"docs":{"0":{"tf":1.4142135623730951},"117":{"tf":2.449489742783178},"12":{"tf":1.0},"120":{"tf":1.0},"131":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.7320508075688772},"17":{"tf":1.0},"171":{"tf":1.0},"18":{"tf":2.23606797749979},"181":{"tf":1.4142135623730951},"192":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"22":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.4142135623730951},"23":{"tf":2.23606797749979},"230":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.7320508075688772},"234":{"tf":1.0},"238":{"tf":2.0},"24":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"15":{"tf":1.0},"16":{"tf":1.0},"176":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"197":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"22":{"tf":1.0},"247":{"tf":1.0}}}},"t":{"df":2,"docs":{"169":{"tf":1.0},"171":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"171":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"195":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"21":{"tf":1.4142135623730951},"245":{"tf":1.0}},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"228":{"tf":1.0},"235":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}},"r":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"187":{"tf":1.0},"188":{"tf":2.0},"191":{"tf":1.7320508075688772},"230":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"71":{"tf":1.0}}},"m":{"df":1,"docs":{"233":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"230":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"233":{"tf":1.0},"236":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":2.23606797749979},"60":{"tf":1.7320508075688772}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"238":{"tf":1.0},"71":{"tf":2.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"p":{"1":{"df":0,"docs":{},"y":{"2":{"df":0,"docs":{},"m":{"1":{"0":{"d":{"df":0,"docs":{},"t":{"2":{"df":0,"docs":{},"h":{"3":{"0":{"df":0,"docs":{},"m":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"1":{"2":{"df":0,"docs":{},"h":{"3":{"0":{"df":0,"docs":{},"m":{"5":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"247":{"tf":1.0},"57":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":9,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.7320508075688772},"15":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.7320508075688772},"245":{"tf":1.7320508075688772},"54":{"tf":1.0},"75":{"tf":1.4142135623730951}},"o":{"d":{"b":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"b":{"0":{"7":{"7":{"6":{"5":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":20,"docs":{"127":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"187":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"221":{"tf":1.4142135623730951},"232":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"34":{"tf":1.0},"45":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"194":{"tf":1.7320508075688772},"233":{"tf":1.0},"252":{"tf":1.0},"6":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"234":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"170":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"236":{"tf":1.0},"34":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"238":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"187":{"tf":1.0},"188":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"40":{"tf":1.0}}}},"df":1,"docs":{"20":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":2.23606797749979}}}}},"df":2,"docs":{"177":{"tf":1.0},"178":{"tf":1.4142135623730951}},"e":{"df":1,"docs":{"105":{"tf":1.0}},"|":{".":{"*":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"89":{"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":3,"docs":{"110":{"tf":1.0},"237":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"228":{"tf":1.0},"250":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"179":{"tf":1.0},"40":{"tf":1.7320508075688772},"97":{"tf":2.0}}}}}}},"i":{"d":{"df":2,"docs":{"206":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"190":{"tf":1.0},"226":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}},"b":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"11":{"tf":1.0},"238":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"33":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"74":{"tf":1.0}}}}},"o":{"d":{"df":7,"docs":{"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"150":{"tf":1.0},"155":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"194":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":17,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"193":{"tf":1.0},"228":{"tf":2.23606797749979},"230":{"tf":1.4142135623730951},"231":{"tf":2.0},"232":{"tf":2.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"241":{"tf":1.7320508075688772},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.4142135623730951},"250":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"df":2,"docs":{"195":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"'":{"df":8,"docs":{"148":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":1.4142135623730951},"18":{"tf":1.0},"200":{"tf":1.0},"21":{"tf":1.4142135623730951},"246":{"tf":1.0}}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{":":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"195":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"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":{"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"195":{"tf":1.4142135623730951},"198":{"tf":1.0},"4":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"198":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":74,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":2.23606797749979},"12":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"16":{"tf":2.0},"167":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"181":{"tf":2.0},"185":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.4142135623730951},"192":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.7320508075688772},"198":{"tf":2.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"20":{"tf":2.0},"202":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":2.0},"215":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"220":{"tf":1.4142135623730951},"222":{"tf":1.0},"224":{"tf":1.4142135623730951},"228":{"tf":2.23606797749979},"229":{"tf":1.0},"231":{"tf":1.4142135623730951},"234":{"tf":2.8284271247461903},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.7320508075688772},"41":{"tf":1.0},"48":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0}}},"df":11,"docs":{"106":{"tf":1.0},"149":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"192":{"tf":1.0},"2":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"228":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"231":{"tf":1.0},"233":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"215":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":8,"docs":{"157":{"tf":1.0},"21":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.0},"76":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"238":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}}},"v":{"df":1,"docs":{"198":{"tf":2.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"186":{"tf":1.0},"35":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"140":{"tf":1.0},"238":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}},"t":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"109":{"tf":1.0},"117":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"229":{"tf":1.0},"39":{"tf":1.0},"71":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":1,"docs":{"233":{"tf":1.0}},"s":{"df":5,"docs":{"13":{"tf":1.0},"228":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":2.23606797749979}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"232":{"tf":1.0},"235":{"tf":1.0},"244":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"19":{"tf":1.7320508075688772},"220":{"tf":1.0},"24":{"tf":1.0},"54":{"tf":1.0},"76":{"tf":1.0}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"110":{"tf":1.0},"88":{"tf":2.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"t":{"c":{"df":3,"docs":{"20":{"tf":1.0},"250":{"tf":1.4142135623730951},"48":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":2,"docs":{"229":{"tf":1.0},"230":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"85":{"tf":2.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"15":{"tf":1.0},"195":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0}},"t":{"df":4,"docs":{"204":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.0}},"u":{"df":1,"docs":{"233":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"232":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"165":{"tf":1.0},"166":{"tf":1.0},"76":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"213":{"tf":1.0},"214":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":18,"docs":{"10":{"tf":2.23606797749979},"13":{"tf":1.4142135623730951},"141":{"tf":1.0},"167":{"tf":1.4142135623730951},"199":{"tf":1.0},"206":{"tf":1.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"245":{"tf":1.0},"44":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"76":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.7320508075688772}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.0},"129":{"tf":1.0},"50":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"149":{"tf":1.0},"29":{"tf":1.0}},"e":{"d":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"v":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":1,"docs":{"159":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"190":{"tf":1.0},"198":{"tf":1.0},"215":{"tf":1.0},"228":{"tf":1.0},"243":{"tf":1.0},"247":{"tf":1.7320508075688772},"29":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":19,"docs":{"13":{"tf":1.4142135623730951},"131":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.4142135623730951},"192":{"tf":1.0},"220":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.4142135623730951},"241":{"tf":1.0},"250":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":2.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"120":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"252":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":5,"docs":{"139":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.7320508075688772},"237":{"tf":1.0},"241":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"194":{"tf":1.0},"20":{"tf":1.0},"234":{"tf":1.0},"6":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"193":{"tf":1.0},"199":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"57":{"tf":1.7320508075688772},"61":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"37":{"tf":1.0},"38":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"0":{"tf":1.0},"198":{"tf":1.0}}}}}}},"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"201":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"195":{"tf":1.0},"204":{"tf":1.0},"235":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"r":{"df":1,"docs":{"238":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"195":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"127":{"tf":1.0},"132":{"tf":1.0},"140":{"tf":1.0},"17":{"tf":1.4142135623730951},"37":{"tf":1.0},"44":{"tf":1.0},"55":{"tf":1.7320508075688772},"89":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"125":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":2,"docs":{"125":{"tf":2.449489742783178},"235":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"238":{"tf":1.0}}}}}}}},"f":{"7":{"c":{"3":{"1":{"4":{"d":{"d":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"235":{"tf":1.0},"238":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"237":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"159":{"tf":1.0}}},"s":{"df":6,"docs":{"139":{"tf":1.0},"224":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"11":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"33":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"241":{"tf":1.0},"25":{"tf":1.0}}}}}},"t":{"df":3,"docs":{"228":{"tf":1.0},"237":{"tf":1.0},"243":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"237":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"17":{"tf":1.0},"230":{"tf":1.0}}}}}}},"df":10,"docs":{"180":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":2.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"220":{"tf":1.7320508075688772},"221":{"tf":2.449489742783178},"222":{"tf":1.0},"77":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"192":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"220":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":5,"docs":{"11":{"tf":1.4142135623730951},"226":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"252":{"tf":1.0}}},"t":{"df":1,"docs":{"232":{"tf":1.0}}}},"w":{"df":2,"docs":{"232":{"tf":1.0},"235":{"tf":1.0}}}},"i":{"b":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"56":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":10,"docs":{"117":{"tf":2.23606797749979},"169":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"206":{"tf":1.0},"25":{"tf":1.0},"39":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":2.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"213":{"tf":2.0},"214":{"tf":1.4142135623730951},"220":{"tf":2.8284271247461903},"235":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"40":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"134":{"tf":1.0}}}}}}},"df":4,"docs":{"134":{"tf":1.7320508075688772},"29":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.7320508075688772}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":2,"docs":{"173":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"'":{"df":0,"docs":{},"}":{",":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":23,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"117":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"232":{"tf":1.4142135623730951},"234":{"tf":1.0},"238":{"tf":1.4142135623730951},"241":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"58":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"232":{"tf":1.0}},"r":{"2":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"219":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}},"t":{"df":1,"docs":{"238":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"233":{"tf":1.0},"238":{"tf":1.4142135623730951},"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"224":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":18,"docs":{"12":{"tf":1.0},"120":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.0},"187":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"222":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"29":{"tf":1.0},"37":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.4142135623730951},"94":{"tf":1.0}}}}}},"o":{"2":{"df":2,"docs":{"74":{"tf":1.0},"78":{"tf":1.0}}},"df":4,"docs":{"74":{"tf":1.7320508075688772},"77":{"tf":1.0},"78":{"tf":2.23606797749979},"91":{"tf":2.0}}},"r":{"c":{"df":4,"docs":{"136":{"tf":1.0},"215":{"tf":1.0},"238":{"tf":1.0},"44":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"238":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"v":{"df":2,"docs":{"0":{"tf":1.0},"232":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"122":{"tf":1.0},"144":{"tf":1.4142135623730951},"170":{"tf":1.0},"202":{"tf":1.0},"213":{"tf":1.0},"220":{"tf":1.0},"228":{"tf":1.0}}}},"df":17,"docs":{"125":{"tf":1.0},"158":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":2.0},"216":{"tf":2.0},"217":{"tf":1.0},"218":{"tf":1.0},"222":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"84":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"117":{"tf":1.0},"147":{"tf":1.0},"162":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"21":{"tf":1.0},"248":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"233":{"tf":2.23606797749979}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"c":{"a":{"df":2,"docs":{"230":{"tf":1.0},"232":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"234":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"228":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"241":{"tf":1.0},"8":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":69,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":2.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"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.7320508075688772},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"143":{"tf":1.7320508075688772},"144":{"tf":2.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"148":{"tf":1.0},"175":{"tf":2.8284271247461903},"186":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"73":{"tf":1.0},"86":{"tf":1.4142135623730951},"88":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"169":{"tf":1.0},"206":{"tf":1.0},"29":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"237":{"tf":1.0},"248":{"tf":1.7320508075688772},"57":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":4,"docs":{"13":{"tf":1.0},"228":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"194":{"tf":1.0},"253":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"233":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"245":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":4,"docs":{"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"236":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"221":{"tf":1.0}}}}},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"243":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"213":{"tf":1.0},"214":{"tf":1.0}}}},"t":{"@":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"10":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":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":{"252":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"230":{"tf":1.0},"37":{"tf":1.0}},"n":{"df":10,"docs":{"107":{"tf":1.0},"115":{"tf":1.0},"128":{"tf":1.4142135623730951},"130":{"tf":1.0},"133":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.4142135623730951},"171":{"tf":1.0},"37":{"tf":1.0},"48":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":1,"docs":{"90":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"234":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"253":{"tf":1.0}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"21":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.0}}}},"df":1,"docs":{"232":{"tf":1.0}},"e":{"df":2,"docs":{"230":{"tf":1.0},"56":{"tf":1.0}}},"o":{"d":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"250":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"241":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":4,"docs":{"230":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"83":{"tf":1.4142135623730951},"84":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"w":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"232":{"tf":1.0},"235":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"250":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"133":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"133":{"tf":1.0},"45":{"tf":2.449489742783178},"46":{"tf":1.4142135623730951}}}},"w":{"df":1,"docs":{"231":{"tf":1.0}},"n":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"230":{"tf":1.0}}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"194":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"ö":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"245":{"tf":1.0}}}}}}}}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"229":{"tf":1.0},"230":{"tf":1.0}}}},"n":{"d":{"df":3,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"34":{"tf":1.0}},"l":{"df":2,"docs":{"237":{"tf":1.0},"238":{"tf":1.0}}}},"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"74":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"235":{"tf":1.0},"241":{"tf":1.4142135623730951}}}}}},"r":{"d":{"df":2,"docs":{"181":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":1,"docs":{"235":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"247":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"46":{"tf":2.23606797749979}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"241":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":22,"docs":{"122":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"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.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"5":{"tf":1.0},"8":{"tf":1.4142135623730951}},"e":{"a":{"d":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"0":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"199":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"208":{"tf":2.0},"35":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"237":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"c":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"235":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"245":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"175":{"tf":1.0},"21":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"230":{"tf":1.0}}}}}}}}},"o":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"213":{"tf":1.0}}}}}}},"df":0,"docs":{}},"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"102":{"tf":2.449489742783178},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"224":{"tf":1.0},"5":{"tf":1.0},"97":{"tf":2.0}}}},"p":{"df":3,"docs":{"148":{"tf":1.0},"170":{"tf":1.0},"198":{"tf":2.0}}}},"r":{"a":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":4,"docs":{"232":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0},"56":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"247":{"tf":1.0}}}}}}},"x":{"(":{"1":{"5":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"147":{"tf":1.7320508075688772}},"i":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"181":{"tf":1.0},"234":{"tf":1.0},"252":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"132":{"tf":1.0},"234":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"233":{"tf":1.0},"243":{"tf":1.0}},"i":{"df":11,"docs":{"0":{"tf":1.0},"157":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":2.23606797749979},"234":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}}}},"o":{"c":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"228":{"tf":1.0},"239":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"241":{"tf":1.0}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"241":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"228":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"1":{".":{"1":{"df":1,"docs":{"215":{"tf":1.0}}},"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":{":":{"3":{"8":{"0":{"3":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"?":{"df":0,"docs":{},"p":{"=":{"%":{"5":{"b":{"%":{"2":{"2":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"%":{"2":{"2":{"%":{"2":{"c":{"%":{"2":{"2":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"%":{"2":{"2":{"%":{"5":{"d":{"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":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"q":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"%":{"2":{"0":{"1":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":22,"docs":{"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"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},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"5":{"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":{}},"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":1,"docs":{"198":{"tf":1.0}}}}}}},"df":33,"docs":{"10":{"tf":1.0},"192":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.8284271247461903},"200":{"tf":2.0},"201":{"tf":1.7320508075688772},"202":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"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":2.6457513110645907},"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},"31":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.0}},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"/":{"#":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"196":{"tf":1.0},"197":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"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":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"df":2,"docs":{"193":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"238":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"220":{"tf":1.0},"233":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"233":{"tf":1.0},"246":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"å":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"251":{"tf":1.0}}},"df":1,"docs":{"253":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{".":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"m":{"df":1,"docs":{"233":{"tf":1.0}}}},"d":{"df":6,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0}},"e":{"a":{"df":4,"docs":{"148":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"233":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"224":{"tf":1.0},"67":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"131":{"tf":1.0},"147":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"235":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"f":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"139":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"245":{"tf":1.0}}}}}}}},"m":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"193":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":5,"docs":{"149":{"tf":1.4142135623730951},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"187":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"13":{"tf":2.0},"155":{"tf":1.0},"22":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"235":{"tf":1.7320508075688772},"236":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"250":{"tf":1.0},"251":{"tf":1.0}}}}},"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":{"21":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"241":{"tf":1.0},"250":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"232":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"224":{"tf":1.0},"32":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"15":{"tf":1.0},"78":{"tf":1.0}}}}}}},"df":1,"docs":{"232":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"149":{"tf":1.0},"206":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"231":{"tf":1.0},"238":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":11,"docs":{"106":{"tf":1.0},"173":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.4142135623730951},"241":{"tf":1.0},"243":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":2.23606797749979},"41":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":2,"docs":{"24":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"230":{"tf":1.0},"233":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"237":{"tf":1.0},"250":{"tf":1.0}}}}}},"l":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"184":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"181":{"tf":2.0},"21":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"248":{"tf":1.0},"251":{"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":{"228":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"117":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}}}},"df":25,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"168":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"199":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":2.0},"222":{"tf":1.0},"23":{"tf":3.3166247903554},"245":{"tf":1.0},"29":{"tf":2.8284271247461903},"39":{"tf":1.0},"58":{"tf":2.0},"64":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":2,"docs":{"228":{"tf":1.0},"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"158":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"167":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":1.0},"21":{"tf":2.0},"245":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"192":{"tf":1.0},"193":{"tf":2.0},"194":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":1.7320508075688772},"197":{"tf":1.7320508075688772},"2":{"tf":1.0},"4":{"tf":2.0},"8":{"tf":1.0}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":7,"docs":{"220":{"tf":1.0},"222":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"105":{"tf":1.7320508075688772}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":8,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"119":{"tf":1.0},"136":{"tf":1.0},"224":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":2.0},"86":{"tf":1.0}},"r":{"df":1,"docs":{"232":{"tf":1.0}}}},"n":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1":{"tf":1.0},"233":{"tf":1.0}}}}},"f":{"a":{"c":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":2,"docs":{"125":{"tf":1.0},"234":{"tf":1.0}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"50":{"tf":1.7320508075688772},"52":{"tf":2.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"v":{"df":3,"docs":{"148":{"tf":1.0},"224":{"tf":1.4142135623730951},"71":{"tf":2.8284271247461903}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":4,"docs":{"231":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951}},"t":{"df":2,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"155":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"c":{"df":2,"docs":{"213":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.4142135623730951},"231":{"tf":1.0},"238":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":7,"docs":{"224":{"tf":2.0},"233":{"tf":1.0},"245":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"t":{"'":{"df":5,"docs":{"16":{"tf":1.0},"230":{"tf":1.4142135623730951},"234":{"tf":1.0},"235":{"tf":1.7320508075688772},"241":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"21":{"tf":1.0},"220":{"tf":1.0}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":4,"docs":{"15":{"tf":1.0},"16":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0}}},"m":{"df":1,"docs":{"221":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"18":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"a":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"18":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"245":{"tf":1.0}}}}}}},"o":{"b":{"df":3,"docs":{"237":{"tf":1.0},"239":{"tf":1.4142135623730951},"246":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"225":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"14":{"tf":2.23606797749979},"184":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":1.0},"247":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":2.8284271247461903},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.7320508075688772}}}},"y":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":21,"docs":{"17":{"tf":1.0},"175":{"tf":1.0},"203":{"tf":2.0},"204":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.7320508075688772},"216":{"tf":2.0},"217":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":3.3166247903554},"225":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"25":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"91":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"167":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"y":{"(":{"1":{"9":{"7":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"124":{"tf":1.7320508075688772},"148":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}}}}},"k":{"a":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"24":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":4,"docs":{"235":{"tf":1.0},"236":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"219":{"tf":1.0},"222":{"tf":1.0}}}}}},"df":0,"docs":{}},"y":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}}}}},"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":8,"docs":{"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"40":{"tf":1.0},"74":{"tf":1.4142135623730951},"79":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":9,"docs":{"221":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"230":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"11":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0}},"n":{"df":2,"docs":{"235":{"tf":1.0},"77":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"117":{"tf":1.0}}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"187":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"15":{"tf":1.0},"234":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"11":{"tf":1.0},"22":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"234":{"tf":2.8284271247461903},"9":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"146":{"tf":1.4142135623730951},"224":{"tf":1.0},"72":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"179":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"60":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"238":{"tf":1.0},"57":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}},"w":{"df":4,"docs":{"13":{"tf":1.0},"228":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":1.0}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"d":{"df":7,"docs":{"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"212":{"tf":1.0},"216":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"167":{"tf":1.0},"2":{"tf":1.0},"237":{"tf":1.0}}}},"s":{"df":2,"docs":{"57":{"tf":1.0},"60":{"tf":1.0}}},"v":{"df":2,"docs":{"16":{"tf":1.0},"235":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":8,"docs":{"102":{"tf":1.0},"117":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"39":{"tf":1.4142135623730951},"54":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"167":{"tf":1.0},"17":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"46":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"df":1,"docs":{"232":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"'":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":1,"docs":{"112":{"tf":1.0}}}}},"[":{"3":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"44":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":5,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":2.0},"44":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}},"s":{"df":5,"docs":{"106":{"tf":1.0},"230":{"tf":1.0},"238":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.0}}}},"t":{"'":{"df":5,"docs":{"13":{"tf":1.0},"15":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"181":{"tf":1.0},"234":{"tf":1.0},"252":{"tf":1.0},"91":{"tf":1.4142135623730951}}}},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{".":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":1,"docs":{"238":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"227":{"tf":1.0},"253":{"tf":2.23606797749979},"9":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"235":{"tf":1.0}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"251":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":2.8284271247461903},"84":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"u":{"a":{"df":2,"docs":{"230":{"tf":1.0},"232":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"df":1,"docs":{"212":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"197":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":2,"docs":{"234":{"tf":1.0},"247":{"tf":1.0}}},"t":{"df":15,"docs":{"133":{"tf":1.0},"169":{"tf":1.0},"187":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":2.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":23,"docs":{"170":{"tf":2.23606797749979},"216":{"tf":1.4142135623730951},"221":{"tf":1.0},"224":{"tf":2.0},"225":{"tf":1.0},"23":{"tf":1.0},"49":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":2.0},"75":{"tf":1.4142135623730951},"76":{"tf":2.23606797749979},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"238":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"230":{"tf":1.0},"250":{"tf":1.0}}}}},"n":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"154":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{},"g":{"1":{"0":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"120":{"tf":1.0}}},"df":4,"docs":{"120":{"tf":1.7320508075688772},"198":{"tf":1.0},"235":{"tf":1.7320508075688772},"243":{"tf":1.0}},"i":{"c":{"df":2,"docs":{"233":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"232":{"tf":1.0},"234":{"tf":1.4142135623730951},"241":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"30":{"tf":1.0},"61":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"169":{"tf":1.0},"233":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}}}}},"p":{"df":1,"docs":{"233":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"237":{"tf":1.0}}},"t":{"df":2,"docs":{"13":{"tf":1.0},"243":{"tf":1.0}}}},"t":{"df":2,"docs":{"231":{"tf":1.0},"232":{"tf":1.0}}},"w":{"df":1,"docs":{"233":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"103":{"tf":1.7320508075688772},"181":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":2.0}}}}}},"y":{"df":1,"docs":{"16":{"tf":1.0}}}},"m":{")":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":3,"docs":{"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951}}}}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"237":{"tf":1.0}}}}},"o":{"df":1,"docs":{"197":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"243":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"196":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"229":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"9":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":11,"docs":{"13":{"tf":1.0},"148":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"220":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":12,"docs":{"17":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.0},"231":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.0},"34":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":16,"docs":{"117":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":2.0},"23":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"40":{"tf":1.0},"87":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"237":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":1,"docs":{"225":{"tf":1.0}}},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"231":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"233":{"tf":1.7320508075688772},"235":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":13,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"20":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":2.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":3.605551275463989},"95":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"187":{"tf":1.0},"241":{"tf":1.0}}}}},"h":{"df":2,"docs":{"120":{"tf":2.0},"86":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}}}}}},"x":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"127":{"tf":2.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}}}}},"df":4,"docs":{"122":{"tf":1.4142135623730951},"147":{"tf":1.0},"200":{"tf":1.0},"219":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":10,"docs":{"149":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}}},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"247":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"247":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"221":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"25":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"19":{"tf":1.7320508075688772},"220":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"238":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"241":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"54":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":1,"docs":{"127":{"tf":2.0}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"127":{"tf":1.4142135623730951}}}}}},"u":{"df":1,"docs":{"86":{"tf":1.0}},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"224":{"tf":1.0},"63":{"tf":1.0}}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"195":{"tf":1.4142135623730951},"4":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"149":{"tf":1.7320508075688772},"17":{"tf":1.0},"18":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"235":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"187":{"tf":1.0},"85":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"86":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.7320508075688772}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"d":{"b":{"df":4,"docs":{"234":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"71":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":20,"docs":{"15":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"221":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.7320508075688772},"238":{"tf":1.4142135623730951},"245":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"58":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"197":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"206":{"tf":2.0},"216":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":12,"docs":{"151":{"tf":1.0},"180":{"tf":1.0},"222":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"231":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":1.4142135623730951},"40":{"tf":1.0},"86":{"tf":1.0},"97":{"tf":1.0}}}}}}},"n":{"d":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"233":{"tf":1.0},"235":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"56":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":60,"docs":{"110":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.0},"155":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":2.23606797749979},"18":{"tf":1.4142135623730951},"181":{"tf":1.0},"187":{"tf":2.23606797749979},"188":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":2.0},"205":{"tf":1.0},"206":{"tf":1.0},"217":{"tf":3.0},"218":{"tf":1.4142135623730951},"219":{"tf":2.449489742783178},"220":{"tf":2.23606797749979},"221":{"tf":2.23606797749979},"222":{"tf":1.0},"23":{"tf":2.23606797749979},"24":{"tf":2.449489742783178},"26":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":3.3166247903554},"30":{"tf":1.0},"35":{"tf":1.7320508075688772},"37":{"tf":2.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":2.0},"46":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":2.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":2.0},"60":{"tf":1.7320508075688772},"64":{"tf":1.0},"74":{"tf":2.0},"76":{"tf":2.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.0},"83":{"tf":2.0},"85":{"tf":2.0},"88":{"tf":2.449489742783178},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"94":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"220":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"222":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":7,"docs":{"167":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"120":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":15,"docs":{"167":{"tf":2.0},"168":{"tf":1.0},"169":{"tf":2.449489742783178},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"20":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"211":{"tf":2.0}}}}}}},"df":2,"docs":{"225":{"tf":1.0},"41":{"tf":2.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"252":{"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":{"234":{"tf":1.0},"235":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"205":{"tf":1.0}}}}}}},"df":1,"docs":{"235":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":9,"docs":{"12":{"tf":1.0},"190":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"226":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}},"g":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"84":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"250":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"167":{"tf":1.0},"168":{"tf":1.7320508075688772},"169":{"tf":1.0},"17":{"tf":1.7320508075688772},"21":{"tf":1.0},"219":{"tf":1.0},"238":{"tf":2.6457513110645907},"241":{"tf":1.0},"245":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"237":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"234":{"tf":1.0},"240":{"tf":1.0}}}}},"w":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":13,"docs":{"176":{"tf":1.7320508075688772},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"194":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.7320508075688772},"235":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"211":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"224":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":8,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.7320508075688772},"133":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.4142135623730951},"187":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":5,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"233":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"155":{"tf":1.0},"158":{"tf":1.0},"175":{"tf":1.0},"190":{"tf":1.0},"238":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"169":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":35,"docs":{"112":{"tf":1.0},"120":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.7320508075688772},"131":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"154":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"28":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"58":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"84":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0}}},"h":{"df":2,"docs":{"179":{"tf":1.0},"29":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"df":11,"docs":{"13":{"tf":1.0},"151":{"tf":1.7320508075688772},"156":{"tf":1.0},"16":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"241":{"tf":1.7320508075688772},"9":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"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":14,"docs":{"117":{"tf":1.4142135623730951},"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"133":{"tf":1.0},"141":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"40":{"tf":1.0},"63":{"tf":2.449489742783178},"65":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"f":{"(":{"1":{"df":1,"docs":{"140":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"140":{"tf":1.7320508075688772}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"100":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"145":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":2.0},"179":{"tf":1.0},"180":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"233":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.7320508075688772},"67":{"tf":1.0},"86":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"118":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":1.0},"86":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.4142135623730951}}}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"40":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"(":{"[":{"[":{"'":{"a":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"113":{"tf":1.7320508075688772}},"s":{"(":{"df":0,"docs":{},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"113":{"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":{"114":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":27,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"146":{"tf":1.4142135623730951},"167":{"tf":1.0},"168":{"tf":2.0},"17":{"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},"217":{"tf":1.0},"221":{"tf":2.449489742783178},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"23":{"tf":1.0},"233":{"tf":1.0},"250":{"tf":1.0},"40":{"tf":1.4142135623730951},"49":{"tf":2.8284271247461903},"72":{"tf":1.0},"74":{"tf":3.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"207":{"tf":1.0},"235":{"tf":1.0}}}}}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"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":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"101":{"tf":2.0}}}}}}}}},"df":1,"docs":{"101":{"tf":1.0}}}}}},"df":1,"docs":{"77":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"167":{"tf":1.0},"207":{"tf":1.0},"238":{"tf":1.0},"40":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}}}}},"k":{"df":2,"docs":{"76":{"tf":1.0},"93":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"228":{"tf":1.0},"233":{"tf":1.0},"249":{"tf":1.4142135623730951}}}},"d":{"df":2,"docs":{"13":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":4,"docs":{"228":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"157":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":5,"docs":{"23":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":1.0}}},"df":27,"docs":{"125":{"tf":1.0},"132":{"tf":1.0},"17":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"230":{"tf":2.0},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":2.23606797749979},"235":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"243":{"tf":1.0},"38":{"tf":1.4142135623730951},"51":{"tf":1.0},"73":{"tf":1.4142135623730951},"77":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"233":{"tf":1.0},"238":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"238":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"235":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"149":{"tf":1.7320508075688772},"228":{"tf":1.0},"240":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951}}},"r":{"df":46,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"132":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"187":{"tf":1.0},"192":{"tf":1.0},"198":{"tf":1.7320508075688772},"20":{"tf":1.0},"21":{"tf":1.0},"219":{"tf":1.4142135623730951},"231":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"50":{"tf":1.7320508075688772},"54":{"tf":1.7320508075688772},"59":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":2.0},"86":{"tf":1.4142135623730951},"87":{"tf":2.23606797749979},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.7320508075688772},"92":{"tf":2.0},"93":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":2.0}}}},"t":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"*":{"/":{"*":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"106":{"tf":1.0},"110":{"tf":1.0},"133":{"tf":1.0},"147":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.4142135623730951},"200":{"tf":1.0},"37":{"tf":1.0},"64":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"110":{"tf":1.0},"132":{"tf":1.4142135623730951},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"218":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.0},"247":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.0},"44":{"tf":3.7416573867739413},"45":{"tf":1.0},"47":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":2,"docs":{"41":{"tf":2.449489742783178},"77":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"13":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"180":{"tf":1.0},"253":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"229":{"tf":1.0},"240":{"tf":1.0}}}}}}},"t":{"df":4,"docs":{"0":{"tf":1.0},"146":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"199":{"tf":1.0},"241":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"213":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"228":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"0":{"tf":1.0},"199":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"35":{"tf":1.0},"7":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"149":{"tf":1.0},"162":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"133":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"176":{"tf":1.0}}}}}}}}}},"p":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}}},")":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":6,"docs":{"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"74":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"34":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"1":{"df":0,"docs":{},"y":{"2":{"df":0,"docs":{},"m":{"1":{"0":{"d":{"df":0,"docs":{},"t":{"2":{"df":0,"docs":{},"h":{"3":{"0":{"df":0,"docs":{},"m":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"\"":{"[":{"[":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"221":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"'":{"[":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"df":2,"docs":{"206":{"tf":1.0},"218":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"[":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"@":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{";":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"=":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"d":{".":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"220":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"d":{"df":2,"docs":{"64":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"21":{"tf":1.0},"233":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":8,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"147":{"tf":1.0},"224":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0}}}},"l":{"a":{"c":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"a":{"df":3,"docs":{"203":{"tf":1.0},"217":{"tf":1.0},"37":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"217":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":22,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"144":{"tf":1.0},"147":{"tf":2.0},"199":{"tf":1.0},"200":{"tf":2.23606797749979},"205":{"tf":1.7320508075688772},"216":{"tf":2.449489742783178},"217":{"tf":2.449489742783178},"218":{"tf":2.449489742783178},"219":{"tf":2.0},"220":{"tf":2.23606797749979},"221":{"tf":2.0},"222":{"tf":1.0},"31":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"187":{"tf":1.0},"224":{"tf":1.0},"48":{"tf":1.0}}}}}}}},"t":{"df":3,"docs":{"162":{"tf":1.0},"216":{"tf":1.0},"232":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"236":{"tf":1.0},"239":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"136":{"tf":1.0},"21":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":1,"docs":{"234":{"tf":1.0}},"q":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"234":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"215":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"198":{"tf":1.4142135623730951},"215":{"tf":2.0}}},"df":0,"docs":{}}}}},"t":{"df":3,"docs":{"13":{"tf":1.0},"236":{"tf":1.0},"241":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"117":{"tf":2.6457513110645907},"25":{"tf":2.8284271247461903}}}},"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"180":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":1,"docs":{"180":{"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":{},"{":{"a":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"178":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"179":{"tf":1.4142135623730951},"27":{"tf":1.0}},"e":{"(":{"[":{"0":{",":{"1":{",":{"2":{",":{"3":{",":{"4":{"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":{}},"df":0,"docs":{},"{":{"df":0,"docs":{},"x":{"df":1,"docs":{"179":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"177":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"177":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"176":{"tf":1.4142135623730951},"26":{"tf":1.0}}}}}},"df":18,"docs":{"167":{"tf":2.449489742783178},"168":{"tf":1.7320508075688772},"169":{"tf":1.7320508075688772},"17":{"tf":1.0},"170":{"tf":1.7320508075688772},"171":{"tf":2.449489742783178},"172":{"tf":3.3166247903554},"173":{"tf":3.0},"174":{"tf":2.23606797749979},"175":{"tf":3.3166247903554},"176":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"178":{"tf":1.7320508075688772},"179":{"tf":1.7320508075688772},"180":{"tf":2.23606797749979},"20":{"tf":1.4142135623730951},"26":{"tf":2.0},"27":{"tf":2.0}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"@":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"110":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":18,"docs":{"14":{"tf":1.0},"184":{"tf":1.0},"195":{"tf":2.23606797749979},"198":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"79":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"29":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951}}}}}},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"232":{"tf":1.0},"238":{"tf":1.0},"40":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"29":{"tf":1.0},"81":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"d":{"df":9,"docs":{"149":{"tf":2.0},"160":{"tf":1.7320508075688772},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"238":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"9":{"tf":1.0}}}},"t":{"df":8,"docs":{"13":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"201":{"tf":1.0},"235":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"49":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"i":{"df":1,"docs":{"120":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"236":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"232":{"tf":1.7320508075688772},"234":{"tf":1.7320508075688772},"241":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"d":{"a":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"233":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}}}}}},"l":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"231":{"tf":1.0},"55":{"tf":1.0},"79":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"217":{"tf":1.0},"218":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":4,"docs":{"194":{"tf":1.0},"21":{"tf":1.0},"253":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"u":{"df":1,"docs":{"86":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"224":{"tf":1.0},"67":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"198":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"125":{"tf":2.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"200":{"tf":1.0},"218":{"tf":2.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"78":{"tf":1.0}}},"x":{"df":1,"docs":{"234":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":19,"docs":{"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":27,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"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},"216":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"32":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"df":6,"docs":{"229":{"tf":1.0},"233":{"tf":1.0},"241":{"tf":1.0},"250":{"tf":1.0},"76":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}}}}}}}}}},"w":{"df":1,"docs":{"120":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"120":{"tf":1.0},"167":{"tf":1.0},"21":{"tf":1.4142135623730951},"231":{"tf":1.0},"40":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"149":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"165":{"tf":1.7320508075688772},"76":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"224":{"tf":1.0},"226":{"tf":1.0},"234":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":3,"docs":{"149":{"tf":1.0},"160":{"tf":1.7320508075688772},"238":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{".":{"c":{"a":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"76":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"10":{"tf":1.0},"207":{"tf":1.0},"220":{"tf":1.4142135623730951},"35":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":3,"docs":{"85":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":6,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"194":{"tf":1.0},"233":{"tf":1.0},"6":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":32,"docs":{"112":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"23":{"tf":2.449489742783178},"238":{"tf":1.0},"24":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":3.1622776601683795},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"44":{"tf":2.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"55":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772}},"s":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"155":{"tf":1.0},"28":{"tf":1.0},"58":{"tf":1.0}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"235":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"234":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"229":{"tf":1.0},"235":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"246":{"tf":1.7320508075688772}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"64":{"tf":1.0}}}}},"u":{"c":{"df":1,"docs":{"239":{"tf":1.0}},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":10,"docs":{"112":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"25":{"tf":1.0},"29":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":2.0},"55":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772}}}}},"df":60,"docs":{"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.4142135623730951},"194":{"tf":1.0},"203":{"tf":1.7320508075688772},"206":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"221":{"tf":2.0},"229":{"tf":1.0},"23":{"tf":2.23606797749979},"236":{"tf":1.4142135623730951},"24":{"tf":2.23606797749979},"240":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":2.449489742783178},"30":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":2.6457513110645907},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":2.23606797749979},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"6":{"tf":1.0},"74":{"tf":2.0},"76":{"tf":1.4142135623730951},"79":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"85":{"tf":2.449489742783178},"88":{"tf":2.449489742783178},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"40":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}}}}},".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"25":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":1,"docs":{"29":{"tf":1.0}}}},"[":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"234":{"tf":1.0},"241":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"220":{"tf":1.0},"238":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"233":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.0},"77":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":32,"docs":{"10":{"tf":1.0},"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"17":{"tf":1.0},"180":{"tf":1.4142135623730951},"186":{"tf":1.0},"19":{"tf":1.0},"198":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"215":{"tf":1.0},"220":{"tf":1.0},"228":{"tf":2.0},"231":{"tf":1.0},"234":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.7320508075688772},"32":{"tf":1.0},"37":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"t":{"1":{"2":{"df":0,"docs":{},"h":{"3":{"0":{"df":0,"docs":{},"m":{"5":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}}},"4":{"df":0,"docs":{},"m":{"5":{"6":{".":{"7":{"8":{"9":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"230":{"tf":1.0},"233":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"195":{"tf":1.4142135623730951},"231":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":5,"docs":{"110":{"tf":1.0},"224":{"tf":1.0},"246":{"tf":1.0},"63":{"tf":1.0},"81":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"193":{"tf":1.0}}}},"z":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"c":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"213":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"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":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}},"q":{")":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"200":{"tf":1.0}}}}}}},"3":{"df":1,"docs":{"252":{"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":8,"docs":{"205":{"tf":1.0},"206":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"%":{"2":{"0":{"*":{"%":{"2":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"%":{"2":{"0":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"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":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"200":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"92":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":76,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"148":{"tf":2.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.4142135623730951},"155":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"157":{"tf":1.7320508075688772},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"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},"181":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":2.0},"205":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"220":{"tf":1.0},"228":{"tf":1.7320508075688772},"229":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":2.23606797749979},"234":{"tf":2.449489742783178},"236":{"tf":1.7320508075688772},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":2.23606797749979},"28":{"tf":1.0},"30":{"tf":1.4142135623730951},"33":{"tf":2.449489742783178},"34":{"tf":1.4142135623730951},"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.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":2.0},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":2.0},"54":{"tf":2.449489742783178},"55":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0}}},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"235":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"233":{"tf":1.7320508075688772},"238":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"2":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"0":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.7320508075688772},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"234":{"tf":1.0},"241":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"64":{"tf":1.0},"74":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"r":{"a":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"3":{"2":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"146":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":2,"docs":{"119":{"tf":2.23606797749979},"146":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"w":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"106":{"tf":1.0},"241":{"tf":1.0}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"192":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"239":{"tf":1.4142135623730951},"245":{"tf":1.0},"252":{"tf":1.0},"35":{"tf":1.0},"57":{"tf":1.7320508075688772},"8":{"tf":1.0}},"i":{"df":2,"docs":{"0":{"tf":1.0},"238":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"224":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"67":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"238":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"207":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"81":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"215":{"tf":1.0},"220":{"tf":1.0},"63":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"193":{"tf":1.0},"205":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"240":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"d":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"13":{"tf":1.4142135623730951},"155":{"tf":1.0},"16":{"tf":1.0},"212":{"tf":1.0},"228":{"tf":1.0},"235":{"tf":1.4142135623730951},"239":{"tf":1.0},"243":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"237":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":7,"docs":{"171":{"tf":1.7320508075688772},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"245":{"tf":1.0},"56":{"tf":3.4641016151377544}}}}}},"d":{"df":2,"docs":{"219":{"tf":1.0},"222":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"u":{"c":{"df":2,"docs":{"231":{"tf":1.0},"237":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"187":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":210,"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},"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},"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.4142135623730951},"191":{"tf":1.0},"192":{"tf":2.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},"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},"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},"224":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"253":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"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},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"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.4142135623730951},"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.4142135623730951},"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}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":2.449489742783178}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"203":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"df":1,"docs":{"104":{"tf":1.0}},"t":{"df":9,"docs":{"103":{"tf":1.0},"148":{"tf":1.4142135623730951},"167":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"230":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"238":{"tf":1.0},"29":{"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":2,"docs":{"14":{"tf":1.0},"238":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"194":{"tf":1.0},"20":{"tf":1.0},"241":{"tf":2.0},"57":{"tf":2.0},"58":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":2.449489742783178}}}},"df":0,"docs":{},"v":{"df":2,"docs":{"157":{"tf":1.0},"234":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":11,"docs":{"117":{"tf":1.0},"13":{"tf":1.0},"179":{"tf":1.4142135623730951},"191":{"tf":1.0},"235":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"30":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"57":{"tf":1.0},"60":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.7320508075688772}},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":1,"docs":{"104":{"tf":2.0}},"e":{"(":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"a":{"df":2,"docs":{"237":{"tf":1.0},"239":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"195":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":10,"docs":{"115":{"tf":1.0},"149":{"tf":1.0},"170":{"tf":1.0},"179":{"tf":1.0},"217":{"tf":1.0},"49":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"54":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":13,"docs":{"186":{"tf":1.0},"197":{"tf":1.0},"215":{"tf":1.4142135623730951},"22":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":2.23606797749979},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"203":{"tf":1.0},"204":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"127":{"tf":1.0},"241":{"tf":1.0},"35":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"181":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"t":{"df":3,"docs":{"10":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":25,"docs":{"132":{"tf":1.4142135623730951},"16":{"tf":1.0},"215":{"tf":1.0},"222":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"249":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"64":{"tf":1.0},"81":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"246":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":73,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":2.0},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"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},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.7320508075688772},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"220":{"tf":1.0},"222":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"238":{"tf":1.0},"249":{"tf":1.0},"34":{"tf":1.7320508075688772},"38":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":2.23606797749979},"57":{"tf":2.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":2.0},"63":{"tf":1.0},"76":{"tf":2.0},"84":{"tf":1.0},"85":{"tf":2.8284271247461903},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.7320508075688772},"92":{"tf":2.0},"93":{"tf":2.0},"94":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"233":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"110":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}}}}}}},"f":{"c":{"df":2,"docs":{"215":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"234":{"tf":1.0}}}},"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":7,"docs":{"102":{"tf":1.0},"230":{"tf":1.4142135623730951},"232":{"tf":1.0},"239":{"tf":1.0},"54":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"m":{"df":2,"docs":{"195":{"tf":1.7320508075688772},"4":{"tf":1.0}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"227":{"tf":1.0},"248":{"tf":1.0},"252":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"57":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"60":{"tf":3.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"230":{"tf":1.0}}},"t":{"df":1,"docs":{"169":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"187":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":1,"docs":{"120":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"w":{"df":30,"docs":{"159":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":2.449489742783178},"18":{"tf":1.0},"181":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"228":{"tf":1.4142135623730951},"232":{"tf":1.0},"238":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"245":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"63":{"tf":1.0},"74":{"tf":1.4142135623730951},"76":{"tf":2.6457513110645907},"77":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":2.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"229":{"tf":1.0}}}},"n":{"df":9,"docs":{"0":{"tf":1.0},"13":{"tf":1.0},"154":{"tf":1.0},"195":{"tf":2.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"32":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.4142135623730951}}}},"å":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"253":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"3":{"df":2,"docs":{"241":{"tf":1.0},"250":{"tf":1.0}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.0},"244":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"13":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"40":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":4,"docs":{"131":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"35":{"tf":1.0}},"s":{"_":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":10,"docs":{"117":{"tf":1.7320508075688772},"203":{"tf":1.0},"218":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"39":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"79":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":14,"docs":{"110":{"tf":1.0},"158":{"tf":1.0},"197":{"tf":1.0},"220":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"220":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"u":{"c":{"df":4,"docs":{"205":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"235":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"57":{"tf":3.3166247903554},"58":{"tf":1.7320508075688772},"59":{"tf":3.0},"60":{"tf":2.8284271247461903},"61":{"tf":1.4142135623730951}}}}}}}}},"w":{"df":2,"docs":{"233":{"tf":1.0},"241":{"tf":1.0}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"180":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"216":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"228":{"tf":1.0},"81":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"237":{"tf":1.0}}}},"n":{"df":1,"docs":{"171":{"tf":1.0}}},"r":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":14,"docs":{"181":{"tf":2.8284271247461903},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"20":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":2.8284271247461903},"24":{"tf":1.0},"34":{"tf":1.0},"76":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"12":{"tf":1.0},"167":{"tf":1.0},"181":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.4142135623730951},"24":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"230":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"60":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"21":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":3,"docs":{"122":{"tf":1.0},"184":{"tf":1.0},"35":{"tf":1.0}},"e":{"a":{"df":2,"docs":{"117":{"tf":1.0},"230":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"tf":1.0}}}}},"df":20,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"117":{"tf":1.7320508075688772},"123":{"tf":1.0},"133":{"tf":1.4142135623730951},"139":{"tf":1.0},"147":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"238":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"71":{"tf":1.0},"84":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"148":{"tf":1.0},"37":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":14,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"170":{"tf":1.0},"204":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0}},"m":{"df":1,"docs":{"16":{"tf":1.0}}},"n":{"df":5,"docs":{"155":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"46":{"tf":1.0},"56":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":143,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"102":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":2.449489742783178},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"13":{"tf":2.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":2.23606797749979},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":2.0},"15":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"16":{"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},"169":{"tf":1.7320508075688772},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":2.23606797749979},"173":{"tf":2.0},"174":{"tf":1.7320508075688772},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"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.4142135623730951},"185":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"19":{"tf":1.0},"190":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"205":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"218":{"tf":1.0},"220":{"tf":1.0},"222":{"tf":1.4142135623730951},"23":{"tf":1.0},"236":{"tf":1.4142135623730951},"245":{"tf":1.0},"34":{"tf":2.23606797749979},"35":{"tf":3.1622776601683795},"37":{"tf":2.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":2.23606797749979},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":2.23606797749979},"56":{"tf":2.449489742783178},"58":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"64":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":2.0},"76":{"tf":2.0},"77":{"tf":2.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"85":{"tf":2.449489742783178},"86":{"tf":3.0},"87":{"tf":1.7320508075688772},"88":{"tf":2.449489742783178},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":2.6457513110645907},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"97":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"f":{"df":2,"docs":{"198":{"tf":1.0},"237":{"tf":1.0}}},"l":{"df":1,"docs":{"240":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"58":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"222":{"tf":1.4142135623730951},"32":{"tf":1.0}}}}}}},"df":5,"docs":{"15":{"tf":1.4142135623730951},"167":{"tf":1.0},"233":{"tf":1.4142135623730951},"238":{"tf":1.0},"245":{"tf":1.0}}}},"n":{"d":{"df":4,"docs":{"199":{"tf":1.4142135623730951},"202":{"tf":1.0},"222":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"13":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"88":{"tf":1.0},"90":{"tf":1.0}}}}},"t":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"209":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":2.0},"24":{"tf":1.0},"250":{"tf":1.7320508075688772},"40":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"233":{"tf":1.0}}},"n":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"235":{"tf":1.0}},"s":{"df":1,"docs":{"235":{"tf":1.0}}}}}},"v":{"df":4,"docs":{"110":{"tf":1.0},"231":{"tf":1.0},"246":{"tf":1.0},"63":{"tf":1.0}}}},"t":{"df":15,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"175":{"tf":1.0},"219":{"tf":1.0},"24":{"tf":2.23606797749979},"249":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":2.23606797749979},"29":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"47":{"tf":1.0},"50":{"tf":1.7320508075688772},"54":{"tf":2.0},"56":{"tf":1.0},"91":{"tf":1.0}}}},"h":{"a":{"1":{"(":{"'":{"2":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"145":{"tf":1.7320508075688772}}},"df":1,"docs":{"145":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}},"p":{"df":1,"docs":{"9":{"tf":1.0}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"40":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"139":{"tf":1.0},"22":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"w":{"df":1,"docs":{"13":{"tf":1.0}},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"233":{"tf":1.0},"236":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"85":{"tf":2.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":1,"docs":{"120":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"159":{"tf":1.0},"25":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"169":{"tf":1.0},"221":{"tf":1.0},"233":{"tf":1.0},"29":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"201":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"238":{"tf":1.0},"33":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"187":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"230":{"tf":1.0},"233":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.0},"55":{"tf":1.0}}}}}}}},"n":{"df":1,"docs":{"120":{"tf":1.0}},"g":{"df":0,"docs":{},"l":{"df":16,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"180":{"tf":1.0},"201":{"tf":1.0},"213":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":1.4142135623730951},"45":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"76":{"tf":1.4142135623730951},"87":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}},"h":{"df":1,"docs":{"120":{"tf":1.0}}}},"t":{"df":1,"docs":{"234":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"247":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"d":{"a":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"184":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"252":{"tf":1.0}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"19":{"tf":1.0},"230":{"tf":1.0}}}},"v":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"241":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"229":{"tf":1.0},"77":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"235":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":4,"docs":{"106":{"tf":1.0},"21":{"tf":1.0},"228":{"tf":1.0},"240":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"228":{"tf":1.0},"235":{"tf":1.0},"35":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"238":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"155":{"tf":1.0},"34":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":12,"docs":{"21":{"tf":1.7320508075688772},"233":{"tf":1.0},"234":{"tf":1.0},"241":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"58":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}},"i":{"df":15,"docs":{"117":{"tf":1.4142135623730951},"120":{"tf":1.0},"131":{"tf":1.0},"179":{"tf":1.0},"195":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"229":{"tf":1.0},"253":{"tf":1.0},"29":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"76":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"l":{"'":{"df":1,"docs":{"21":{"tf":1.0}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"167":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0}}}}}}},":":{"2":{"0":{"1":{"1":{"df":8,"docs":{"149":{"tf":1.7320508075688772},"156":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"233":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"241":{"tf":1.0},"245":{"tf":1.0}}},"6":{"df":3,"docs":{"238":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}},"2":{"3":{"df":4,"docs":{"233":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{"df":2,"docs":{"238":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":203,"docs":{"0":{"tf":1.0},"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":2.8284271247461903},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.4142135623730951},"120":{"tf":2.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.4142135623730951},"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},"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.7320508075688772},"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.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.4142135623730951},"17":{"tf":1.4142135623730951},"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},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":2.8284271247461903},"200":{"tf":1.0},"21":{"tf":3.1622776601683795},"216":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":3.4641016151377544},"234":{"tf":4.795831523312719},"238":{"tf":2.449489742783178},"24":{"tf":1.4142135623730951},"241":{"tf":1.0},"245":{"tf":2.23606797749979},"246":{"tf":1.0},"25":{"tf":1.0},"252":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":2.0},"34":{"tf":1.7320508075688772},"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.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":2.0},"69":{"tf":2.0},"7":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"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.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"'":{"df":4,"docs":{"120":{"tf":1.0},"175":{"tf":1.0},"234":{"tf":1.0},"56":{"tf":1.0}}},"df":5,"docs":{"110":{"tf":1.0},"21":{"tf":1.4142135623730951},"234":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"35":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"229":{"tf":1.0}}},"i":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"193":{"tf":1.0},"199":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"'":{"df":1,"docs":{"149":{"tf":1.0}}},"df":18,"docs":{"120":{"tf":1.4142135623730951},"160":{"tf":1.0},"169":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"44":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":10,"docs":{"106":{"tf":1.0},"12":{"tf":1.0},"149":{"tf":1.4142135623730951},"159":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"204":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"234":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":7,"docs":{"13":{"tf":1.0},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"233":{"tf":1.7320508075688772},"245":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"18":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"220":{"tf":1.4142135623730951},"222":{"tf":2.449489742783178},"228":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"55":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.0}}}}}}},"i":{"c":{"df":5,"docs":{"186":{"tf":1.0},"220":{"tf":1.0},"238":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"215":{"tf":1.4142135623730951},"76":{"tf":2.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"93":{"tf":1.0}}}}},"y":{"df":1,"docs":{"238":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"190":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"16":{"tf":1.0},"194":{"tf":1.0},"230":{"tf":1.4142135623730951},"238":{"tf":1.0},"29":{"tf":1.0},"6":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":1,"docs":{"229":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":11,"docs":{"194":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":2.6457513110645907},"234":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":2.23606797749979},"241":{"tf":1.0},"246":{"tf":1.0},"250":{"tf":2.449489742783178},"6":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":11,"docs":{"0":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"235":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0}}},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"214":{"tf":1.4142135623730951},"220":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0}},"e":{"d":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"214":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"'":{"%":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":1.0}}},"y":{"/":{"%":{"df":0,"docs":{},"m":{"/":{"%":{"d":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"122":{"tf":1.7320508075688772},"148":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"241":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"185":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":30,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"145":{"tf":1.0},"147":{"tf":2.23606797749979},"222":{"tf":1.4142135623730951},"224":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"33":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"21":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"15":{"tf":1.4142135623730951},"167":{"tf":1.0},"181":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"238":{"tf":1.0},"245":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"u":{"b":{"df":2,"docs":{"169":{"tf":1.0},"55":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"205":{"tf":1.0},"220":{"tf":1.7320508075688772}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"92":{"tf":2.23606797749979},"93":{"tf":2.23606797749979},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"175":{"tf":1.0},"203":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"217":{"tf":1.0},"218":{"tf":1.0}}}}}},"r":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"105":{"tf":1.0},"106":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"71":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"149":{"tf":1.4142135623730951},"164":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"233":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"222":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":7,"docs":{"148":{"tf":1.0},"181":{"tf":1.4142135623730951},"22":{"tf":1.0},"220":{"tf":1.0},"28":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"13":{"tf":1.0}},"i":{"df":2,"docs":{"229":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":3,"docs":{"157":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"m":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"128":{"tf":1.0},"134":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"128":{"tf":2.23606797749979},"129":{"tf":1.0},"45":{"tf":1.0}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":10,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"140":{"tf":1.0},"156":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":15,"docs":{"150":{"tf":1.0},"175":{"tf":1.0},"186":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.0},"39":{"tf":1.0},"80":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"197":{"tf":1.0},"230":{"tf":1.0},"250":{"tf":1.0}}},"f":{"a":{"c":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":7,"docs":{"106":{"tf":1.0},"112":{"tf":1.4142135623730951},"172":{"tf":1.0},"27":{"tf":1.0},"64":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"x":{"df":7,"docs":{"125":{"tf":1.0},"158":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"245":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":7,"docs":{"13":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"236":{"tf":1.0}}}}}},"df":7,"docs":{"155":{"tf":2.0},"158":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.0},"235":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"t":{"1":{"df":6,"docs":{"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0}}},"a":{"b":{"df":0,"docs":{},"l":{"df":29,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"157":{"tf":1.0},"168":{"tf":1.4142135623730951},"170":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"185":{"tf":1.0},"190":{"tf":1.4142135623730951},"216":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.4142135623730951},"238":{"tf":2.0},"247":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.7320508075688772},"37":{"tf":2.449489742783178},"42":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.0},"76":{"tf":1.7320508075688772}},"e":{"'":{"df":1,"docs":{"76":{"tf":1.0}}},"_":{"c":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":3,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"182":{"tf":1.7320508075688772},"183":{"tf":1.0},"184":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":3,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":19,"docs":{"117":{"tf":1.0},"130":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.7320508075688772},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"40":{"tf":1.0},"55":{"tf":1.0},"76":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"231":{"tf":1.0},"251":{"tf":1.0}}}},"n":{"df":1,"docs":{"120":{"tf":1.0}},"h":{"df":1,"docs":{"120":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"df":2,"docs":{"197":{"tf":1.0},"215":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"21":{"tf":1.0}}},"t":{"df":1,"docs":{"252":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"234":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"23":{"tf":1.0}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"230":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"241":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"231":{"tf":1.0},"234":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"37":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}},"df":4,"docs":{"149":{"tf":1.0},"230":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0}}}}}},"n":{"d":{"df":1,"docs":{"34":{"tf":1.0}}},"df":1,"docs":{"230":{"tf":1.0}},"t":{"a":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"231":{"tf":1.0},"252":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"56":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":2,"docs":{"201":{"tf":1.0},"209":{"tf":2.0}}}}},"df":0,"docs":{}},"df":6,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.0},"224":{"tf":1.0},"64":{"tf":1.7320508075688772}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"13":{"tf":1.0},"232":{"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":2,"docs":{"132":{"tf":1.0},"56":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"0":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":3,"docs":{"229":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"228":{"tf":1.0},"229":{"tf":1.0}}},"k":{"df":3,"docs":{"243":{"tf":1.0},"250":{"tf":1.0},"53":{"tf":1.0}}}},"r":{"d":{"df":6,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"139":{"tf":1.0},"234":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"117":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"81":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"15":{"tf":1.0},"172":{"tf":1.0},"205":{"tf":1.0},"241":{"tf":1.0}},"t":{"df":2,"docs":{"40":{"tf":1.0},"74":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"21":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":2,"docs":{"232":{"tf":1.0},"73":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"2":{"tf":1.0},"234":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"df":2,"docs":{"199":{"tf":1.0},"8":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":39,"docs":{"11":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.7320508075688772},"13":{"tf":2.0},"148":{"tf":2.6457513110645907},"149":{"tf":2.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":2.23606797749979},"156":{"tf":2.23606797749979},"157":{"tf":2.0},"158":{"tf":1.7320508075688772},"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},"20":{"tf":1.0},"224":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"230":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":3.0},"236":{"tf":1.4142135623730951},"238":{"tf":2.0},"241":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":2.8284271247461903},"71":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"232":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":2.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":7,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"148":{"tf":1.0},"156":{"tf":1.0},"224":{"tf":1.4142135623730951},"68":{"tf":2.8284271247461903}}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"150":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}}}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"64":{"tf":1.0}}}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"241":{"tf":1.4142135623730951},"250":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"_":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":2,"docs":{"23":{"tf":1.0},"88":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"230":{"tf":1.0},"234":{"tf":1.0},"58":{"tf":1.0},"97":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"237":{"tf":1.0}}}}},"m":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"235":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":4,"docs":{"10":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0}}}},"p":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"21":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":1.7320508075688772},"235":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"r":{"a":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"229":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"243":{"tf":1.0},"246":{"tf":1.7320508075688772},"32":{"tf":2.0},"58":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"/":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"13":{"tf":1.0},"156":{"tf":1.7320508075688772},"228":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.4142135623730951},"238":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"156":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"169":{"tf":1.0}}}},"i":{"df":10,"docs":{"0":{"tf":1.0},"10":{"tf":1.4142135623730951},"168":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"7":{"tf":1.7320508075688772},"8":{"tf":1.0},"9":{"tf":1.4142135623730951}},"m":{"df":1,"docs":{"102":{"tf":2.23606797749979}}},"p":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"232":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"237":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"df":24,"docs":{"139":{"tf":1.0},"140":{"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},"206":{"tf":1.0},"219":{"tf":1.4142135623730951},"229":{"tf":1.0},"230":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.449489742783178},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"244":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"235":{"tf":1.0},"238":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"2":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"210":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"147":{"tf":1.7320508075688772},"235":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":18,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":2.0},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"'":{"df":1,"docs":{"224":{"tf":1.0}}},"df":18,"docs":{"117":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.4142135623730951},"140":{"tf":1.0},"159":{"tf":1.0},"233":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"58":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.7320508075688772},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"97":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"228":{"tf":1.0},"238":{"tf":1.0}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":64,"docs":{"11":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.4142135623730951},"167":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.7320508075688772},"20":{"tf":1.0},"201":{"tf":1.4142135623730951},"202":{"tf":1.7320508075688772},"203":{"tf":2.23606797749979},"204":{"tf":2.0},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.7320508075688772},"224":{"tf":2.449489742783178},"225":{"tf":1.0},"226":{"tf":2.0},"228":{"tf":1.0},"234":{"tf":2.0},"245":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"f":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"2":{"df":0,"docs":{},"u":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}}},"1":{".":{"1":{"2":{"3":{"4":{"5":{"6":{"7":{"8":{"9":{"0":{"1":{"2":{"3":{"4":{"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":{}},"df":0,"docs":{}},"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":{"0":{"1":{"8":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"185":{"tf":1.0},"190":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"137":{"tf":1.7320508075688772}}}}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"=":{"d":{"a":{"df":0,"docs":{},"t":{"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":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"df":1,"docs":{"14":{"tf":1.0}},"i":{"df":1,"docs":{"245":{"tf":1.0}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"246":{"tf":1.0},"9":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"235":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"224":{"tf":1.0}}}}},"r":{"df":11,"docs":{"120":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"20":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.0},"31":{"tf":1.0},"86":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"234":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"0":{"tf":1.0},"228":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"233":{"tf":1.0},"237":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"(":{"'":{"3":{"1":{"3":{"5":{"df":1,"docs":{"147":{"tf":1.0}},"z":{"df":0,"docs":{},"z":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"147":{"tf":2.23606797749979}}}}},"i":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"100":{"tf":1.0},"107":{"tf":2.0}},"e":{"(":{"'":{"a":{"d":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.7320508075688772},"51":{"tf":2.23606797749979},"54":{"tf":2.6457513110645907},"56":{"tf":1.7320508075688772}}}},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}},"t":{"df":1,"docs":{"245":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"144":{"tf":1.0},"229":{"tf":1.0}}}}}},"x":{"df":2,"docs":{"123":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{"'":{"2":{"0":{"2":{"3":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"9":{"7":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"123":{"tf":1.7320508075688772},"148":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"237":{"tf":1.0},"63":{"tf":1.0},"85":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"235":{"tf":1.0},"253":{"tf":1.0},"47":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":3,"docs":{"220":{"tf":1.0},"238":{"tf":1.0},"76":{"tf":1.0}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"[":{"1":{".":{"9":{"9":{"df":2,"docs":{"40":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"40":{"tf":2.23606797749979},"41":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}},"df":2,"docs":{"24":{"tf":2.449489742783178},"27":{"tf":2.23606797749979}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":2.0}}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"194":{"tf":1.0},"6":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"230":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":13,"docs":{"117":{"tf":1.0},"13":{"tf":2.23606797749979},"16":{"tf":1.0},"175":{"tf":1.4142135623730951},"190":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":3.1622776601683795},"243":{"tf":1.0},"25":{"tf":2.0},"26":{"tf":2.0},"27":{"tf":2.0},"29":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":5,"docs":{"149":{"tf":1.0},"16":{"tf":1.0},"195":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"103":{"tf":1.7320508075688772},"147":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":2.0}}}}}}},"r":{"d":{"df":0,"docs":{},"u":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"226":{"tf":1.0}}},"l":{"df":2,"docs":{"201":{"tf":1.0},"216":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"207":{"tf":2.0},"216":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"198":{"tf":1.4142135623730951},"76":{"tf":1.0}}}},"df":69,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"148":{"tf":1.0},"18":{"tf":1.0},"181":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":2.23606797749979},"221":{"tf":1.0},"226":{"tf":1.7320508075688772},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"231":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"25":{"tf":1.0},"252":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"40":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}},"df":30,"docs":{"10":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"15":{"tf":2.0},"16":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"220":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"244":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.0},"252":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0},"76":{"tf":2.0},"8":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"198":{"tf":1.4142135623730951},"215":{"tf":2.0}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"[":{"1":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"_":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"76":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":6,"docs":{"124":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":2,"docs":{"147":{"tf":1.0},"224":{"tf":1.0}}}},"u":{"df":0,"docs":{},"i":{"d":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"'":{"d":{"2":{"c":{"df":0,"docs":{},"e":{"2":{"1":{"c":{"9":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"'":{"d":{"2":{"c":{"df":0,"docs":{},"e":{"2":{"1":{"c":{"9":{"d":{"2":{"6":{"8":{"4":{"0":{"9":{"a":{"b":{"1":{"df":0,"docs":{},"e":{"0":{"4":{"9":{"df":0,"docs":{},"e":{"1":{"2":{"0":{"0":{"b":{"df":0,"docs":{},"f":{"a":{"4":{"7":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{"'":{"d":{"2":{"c":{"df":0,"docs":{},"e":{"2":{"1":{"c":{"9":{"d":{"2":{"6":{"8":{"4":{"0":{"9":{"a":{"b":{"1":{"df":0,"docs":{},"e":{"0":{"4":{"9":{"df":0,"docs":{},"e":{"1":{"2":{"0":{"0":{"b":{"df":0,"docs":{},"f":{"a":{"4":{"7":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"'":{"d":{"2":{"c":{"df":0,"docs":{},"e":{"2":{"1":{"c":{"9":{"d":{"2":{"6":{"8":{"4":{"0":{"9":{"a":{"b":{"1":{"df":0,"docs":{},"e":{"0":{"4":{"9":{"df":0,"docs":{},"e":{"1":{"2":{"0":{"0":{"b":{"df":0,"docs":{},"f":{"a":{"4":{"7":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"144":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"144":{"tf":2.6457513110645907},"226":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"3":{".":{"0":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"81":{"tf":2.0}},"i":{"d":{"df":2,"docs":{"12":{"tf":1.0},"167":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":67,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.0},"127":{"tf":1.7320508075688772},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"145":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"180":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"224":{"tf":1.0},"23":{"tf":1.7320508075688772},"233":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"37":{"tf":2.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"48":{"tf":2.23606797749979},"56":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"/":{"@":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"226":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}},"t":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}},"df":5,"docs":{"195":{"tf":1.7320508075688772},"198":{"tf":1.0},"29":{"tf":2.0},"35":{"tf":1.0},"4":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"df":2,"docs":{"199":{"tf":1.0},"201":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":5,"docs":{"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"241":{"tf":1.4142135623730951}}},"s":{"a":{"df":2,"docs":{"143":{"tf":1.0},"18":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"110":{"tf":1.0},"13":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"230":{"tf":1.0}},"i":{"df":1,"docs":{"230":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"143":{"tf":1.0},"18":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"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":{"184":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"184":{"tf":1.4142135623730951},"186":{"tf":2.0},"187":{"tf":3.3166247903554},"188":{"tf":2.449489742783178},"20":{"tf":1.0},"28":{"tf":1.0},"55":{"tf":1.0}}}},"k":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"16":{"tf":1.0}}},"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"13":{"tf":1.4142135623730951},"157":{"tf":1.0},"236":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":3,"docs":{"171":{"tf":1.0},"2":{"tf":1.0},"56":{"tf":1.0}}},"l":{"df":1,"docs":{"233":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"167":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"236":{"tf":1.4142135623730951},"24":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"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":{"233":{"tf":1.0}}}}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":8,"docs":{"0":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"220":{"tf":1.0},"236":{"tf":1.4142135623730951},"238":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"13":{"tf":1.0},"199":{"tf":1.0},"238":{"tf":1.0}}}},"r":{"df":1,"docs":{"230":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"238":{"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":2,"docs":{"231":{"tf":1.0},"234":{"tf":1.4142135623730951}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"71":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"131":{"tf":1.4142135623730951},"233":{"tf":1.0},"35":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"102":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":2.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"174":{"tf":2.0},"175":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"132":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"55":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"16":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"34":{"tf":1.0},"60":{"tf":1.0}}}}}}}},"o":{"b":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":5,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0}}},"l":{"d":{"df":7,"docs":{"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"238":{"tf":2.0},"250":{"tf":1.0},"5":{"tf":1.0},"97":{"tf":2.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"10":{"tf":1.0},"221":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"215":{"tf":1.0},"228":{"tf":1.0},"34":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"207":{"tf":2.0},"216":{"tf":1.0}}}}},"x":{"%":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"'":{"d":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"224":{"tf":1.0},"72":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":30,"docs":{"110":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"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},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"88":{"tf":1.0},"91":{"tf":2.0}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"238":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"21":{"tf":1.0},"241":{"tf":1.4142135623730951}}}}}}},"s":{"d":{":":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"224":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"224":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"204":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"224":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"224":{"tf":1.0}}}}},"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":2,"docs":{"224":{"tf":1.0},"226":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"224":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"216":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":3,"docs":{"158":{"tf":1.0},"179":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"229":{"tf":1.0},"230":{"tf":1.4142135623730951},"241":{"tf":1.0},"71":{"tf":1.0}}}},"df":1,"docs":{"234":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"219":{"tf":1.0},"222":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"13":{"tf":1.0},"195":{"tf":1.0},"234":{"tf":1.0}}}},"r":{"df":2,"docs":{"0":{"tf":1.0},"250":{"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":{"167":{"tf":1.0}}}}}}}}}},"z":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"141":{"tf":1.0},"215":{"tf":1.0},"81":{"tf":1.7320508075688772}}}},"df":1,"docs":{"147":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"3":{"2":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"146":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":4,"docs":{"146":{"tf":1.0},"225":{"tf":1.0},"41":{"tf":1.0},"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"z":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"140":{"tf":1.0},"141":{"tf":1.4142135623730951},"215":{"tf":1.0},"81":{"tf":1.7320508075688772}}}}}}},"title":{"root":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"a":{"df":2,"docs":{"37":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"h":{"a":{"df":2,"docs":{"194":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"246":{"tf":1.0}}}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"232":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"203":{"tf":1.0},"210":{"tf":1.0}}}}}},"l":{"d":{"+":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"204":{"tf":1.0},"212":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"205":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"n":{"d":{".":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"213":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"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":{}}},"x":{"df":2,"docs":{"207":{"tf":1.0},"211":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"242":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"220":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"189":{"tf":1.0},"190":{"tf":1.0},"191":{"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":1,"docs":{"215":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"g":{"df":1,"docs":{"130":{"tf":1.0}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"c":{"df":2,"docs":{"11":{"tf":1.0},"215":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"158":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"65":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"219":{"tf":1.0},"221":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"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":{"100":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"185":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"149":{"tf":1.0}}}},"u":{"d":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"225":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"246":{"tf":1.0},"249":{"tf":1.0}}}},"df":2,"docs":{"183":{"tf":1.0},"38":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"240":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"237":{"tf":1.0},"250":{"tf":1.0},"78":{"tf":1.0}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"161":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"187":{"tf":1.0},"190":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"8":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"153":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"152":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"239":{"tf":1.0}}}},"df":0,"docs":{}},"df":8,"docs":{"135":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"206":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"195":{"tf":1.0},"196":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"18":{"tf":1.0},"238":{"tf":1.0}}}}}}}},"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"188":{"tf":1.0},"191":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"14":{"tf":1.0},"245":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"194":{"tf":1.0},"6":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":3,"docs":{"228":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":2,"docs":{"11":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"30":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"244":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"58":{"tf":1.0},"9":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"50":{"tf":1.0},"53":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"247":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"55":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"220":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"134":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"207":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"235":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"111":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"175":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"248":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"196":{"tf":1.0},"197":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"45":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"208":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"147":{"tf":1.0}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.0},"235":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"246":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":4,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0}}}}},"u":{"b":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"246":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"139":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"165":{"tf":1.0},"166":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"13":{"tf":1.0},"243":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"251":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"221":{"tf":1.0},"23":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"4":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"105":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"66":{"tf":1.0}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"50":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":1,"docs":{"71":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"39":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"253":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"170":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":2,"docs":{"120":{"tf":1.0},"86":{"tf":1.0}}}},"x":{"df":1,"docs":{"127":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":1,"docs":{"127":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"222":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"172":{"tf":1.0},"217":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"167":{"tf":1.0},"169":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"211":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"168":{"tf":1.0},"17":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"149":{"tf":1.0},"150":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}}},"w":{"df":2,"docs":{"151":{"tf":1.0},"241":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"140":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"173":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"118":{"tf":1.0}}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"113":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"168":{"tf":1.0},"49":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"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":{"101":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"249":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"239":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"149":{"tf":1.0},"240":{"tf":1.0}}},"r":{"df":5,"docs":{"198":{"tf":1.0},"50":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"200":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"31":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"117":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"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":1,"docs":{"178":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"179":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"df":5,"docs":{"167":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"149":{"tf":1.0},"160":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"218":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"163":{"tf":1.0},"165":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"246":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"148":{"tf":1.0},"200":{"tf":1.0},"247":{"tf":1.0},"33":{"tf":1.0},"5":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"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":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"171":{"tf":1.0},"56":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"192":{"tf":1.0},"20":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"57":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"249":{"tf":1.0},"44":{"tf":1.0}}}}}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"252":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"57":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.0}}}},"w":{"df":2,"docs":{"170":{"tf":1.0},"76":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"57":{"tf":1.0},"59":{"tf":1.0}}}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"224":{"tf":1.0},"226":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"181":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.0},"35":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"15":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"237":{"tf":1.0},"250":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":3,"docs":{"249":{"tf":1.0},"26":{"tf":1.0},"50":{"tf":1.0}}}},"h":{"a":{"1":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"240":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"l":{":":{"2":{"0":{"1":{"1":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"11":{"tf":1.0},"20":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0},"62":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"237":{"tf":1.0},"250":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"122":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"99":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"164":{"tf":1.0},"166":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":1,"docs":{"128":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"155":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"182":{"tf":1.0},"37":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"64":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":5,"docs":{"148":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"70":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"236":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"150":{"tf":1.0},"80":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"246":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"7":{"tf":1.0}},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":6,"docs":{"135":{"tf":1.0},"202":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":1.0},"62":{"tf":1.0},"81":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"147":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"50":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}}}},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"48":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"184":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"194":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"w":{"df":1,"docs":{"207":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}}); \ No newline at end of file diff --git a/docs/searchindex.json b/docs/searchindex.json index f495e39..b53c263 100644 --- a/docs/searchindex.json +++ b/docs/searchindex.json @@ -1 +1 @@ -{"doc_urls":["index.html#introduction","index.html#elsewhere","tutorial/index.html#tutorial","tutorial/quickstart.html#quickstart","tutorial/quickstart.html#install-endb","tutorial/quickstart.html#run-your-first-query","tutorial/quickstart.html#warning-early-alpha","tutorial/try_it.html#try-it","tutorial/try_it.html#curl","tutorial/try_it.html#example-libraries","tutorial/try_it.html#example-console","tutorial/sql_basics.html#endb-sql-basics","tutorial/sql_basics.html#just-begin","tutorial/sql_basics.html#immutable","tutorial/sql_basics.html#dynamic-joins","tutorial/sql_basics.html#semi-structured-data","tutorial/sql_basics.html#data-migration","tutorial/sql_basics.html#nested-data","tutorial/sql_basics.html#documents","tutorial/sql_basics.html#error-messages","sql/index.html#sql-reference","sql/intention.html#intention","sql/data_manipulation.html#data-manipulation","sql/data_manipulation.html#insert","sql/data_manipulation.html#update","sql/data_manipulation.html#update-patch","sql/data_manipulation.html#update-set-path","sql/data_manipulation.html#update-unset-path","sql/data_manipulation.html#delete","sql/data_manipulation.html#on-conflict-upsert","sql/data_manipulation.html#erase","sql/data_manipulation.html#parameters","sql/data_manipulation.html#transactions","sql/queries.html#queries","sql/queries.html#select-","sql/queries.html#select","sql/queries.html#from","sql/queries.html#alias-tables","sql/queries.html#alias-columns","sql/queries.html#join","sql/queries.html#unnest","sql/queries.html#with-ordinality","sql/queries.html#where-filtering","sql/queries.html#advanced-filtering","sql/queries.html#order-by-sorting-results","sql/queries.html#group-by","sql/queries.html#having","sql/queries.html#limit","sql/queries.html#values-lists","sql/queries.html#objects-lists","sql/queries.html#set-operations-union-intersect-except","sql/queries.html#union","sql/queries.html#intersect","sql/queries.html#except","sql/queries.html#union-compatibility","sql/queries.html#with-queries-common-table-expressions","sql/queries.html#with-recursive","sql/queries.html#repeatable-reads-savepoint-rollback-release","sql/queries.html#minimal-example","sql/queries.html#savepoint","sql/queries.html#rollback","sql/queries.html#release","sql/data_types.html#sql-data-types","sql/data_types.html#null","sql/data_types.html#text-char-varchar","sql/data_types.html#boolean","sql/data_types.html#integer-bigint","sql/data_types.html#real-double","sql/data_types.html#timestamp","sql/data_types.html#date","sql/data_types.html#time","sql/data_types.html#interval-duration","sql/data_types.html#blob-varbinary","sql/data_types.html#array","sql/data_types.html#object","sql/data_types.html#dynamic-literals","sql/data_types.html#row-literals","sql/data_types.html#spread","sql/data_types.html#computed-fields","sql/data_types.html#shorthands","sql/data_types.html#note-on-timezones","sql/data_types.html#note-on-type-widening","sql/operators.html#operators","sql/operators.html#comparison","sql/operators.html#between","sql/operators.html#boolean-operators","sql/operators.html#math","sql/operators.html#bitwise-operators","sql/operators.html#like","sql/operators.html#regexp","sql/operators.html#glob","sql/operators.html#match-containment","sql/operators.html#any-some","sql/operators.html#all","sql/operators.html#exists","sql/operators.html#in","sql/operators.html#not-in","sql/operators.html#-concatenation","sql/functions.html#functions","sql/functions.html#string-functions","sql/functions.html#character_length","sql/functions.html#octet_length","sql/functions.html#trim-ltrim-rtrim","sql/functions.html#lower-upper","sql/functions.html#replace","sql/functions.html#instr","sql/functions.html#substring","sql/functions.html#unicode","sql/functions.html#char","sql/functions.html#concat","sql/functions.html#like","sql/functions.html#collection-functions","sql/functions.html#length","sql/functions.html#object_keys","sql/functions.html#object_values","sql/functions.html#object_entries","sql/functions.html#object_from_entries","sql/functions.html#patch","sql/functions.html#numeric-functions","sql/functions.html#random","sql/functions.html#math","sql/functions.html#datetime-functions","sql/functions.html#strftime","sql/functions.html#unixepoch","sql/functions.html#julianday","sql/functions.html#extract","sql/functions.html#aggregate-functions","sql/functions.html#min-max","sql/functions.html#sum","sql/functions.html#total","sql/functions.html#avg","sql/functions.html#count","sql/functions.html#array_agg","sql/functions.html#group_concat","sql/functions.html#filter","sql/functions.html#data-type-functions","sql/functions.html#cast","sql/functions.html#typeof","sql/functions.html#conditional-functions","sql/functions.html#iif","sql/functions.html#nullif","sql/functions.html#coalesce","sql/functions.html#encoding-functions","sql/functions.html#base64","sql/functions.html#uuid","sql/functions.html#sha1","sql/functions.html#randomblob-zeroblob","sql/functions.html#hex-unhex","sql/time_queries.html#time-queries","sql/time_queries.html#note-on-sql2011-closed-open-period-model","sql/time_queries.html#note-on-timezones","sql/time_queries.html#now","sql/time_queries.html#current_timestamp","sql/time_queries.html#current_time","sql/time_queries.html#current_date","sql/time_queries.html#system-time","sql/time_queries.html#as-of-time-travel","sql/time_queries.html#all-time-omniscience","sql/time_queries.html#between","sql/time_queries.html#from--to","sql/time_queries.html#period-predicates","sql/time_queries.html#contains","sql/time_queries.html#overlaps","sql/time_queries.html#precedes","sql/time_queries.html#succeeds","sql/time_queries.html#immediately-precedes","sql/time_queries.html#immediately-succeeds","sql/path_navigation.html#path-navigation","sql/path_navigation.html#nested-objects","sql/path_navigation.html#root-navigation","sql/path_navigation.html#row-literals","sql/path_navigation.html#recursive-paths","sql/path_navigation.html#named-child","sql/path_navigation.html#numbered-child","sql/path_navigation.html#wildcard-child","sql/path_navigation.html#path-functions","sql/path_navigation.html#path_set","sql/path_navigation.html#path_replace","sql/path_navigation.html#path_insert","sql/path_navigation.html#path_remove","sql/path_navigation.html#path_extract","sql/schema.html#schema","sql/schema.html#tables","sql/schema.html#columns","sql/schema.html#views","sql/schema.html#check-constraints","sql/views.html#views","sql/views.html#create-view","sql/views.html#drop-view","sql/assertions.html#assertions","sql/assertions.html#create-assertion","sql/assertions.html#drop-assertion","reference/index.html#reference","reference/installation.html#installation","reference/installation.html#warning-early-alpha","reference/installation.html#installing-from-docker-hub","reference/installation.html#installing-from-git-docker","reference/installation.html#installing-from-git-binary","reference/operation.html#operation","reference/http_api.html#http-api","reference/http_api.html#http-query-parameters","reference/http_api.html#http-verbs","reference/http_api.html#content-types","reference/http_api.html#applicationjson","reference/http_api.html#applicationldjson","reference/http_api.html#applicationsql","reference/http_api.html#multipartform-data","reference/http_api.html#applicationx-www-form-urlencoded","reference/http_api.html#accept-headers","reference/http_api.html#textcsv","reference/http_api.html#applicationjson-1","reference/http_api.html#applicationx-ndjson","reference/http_api.html#applicationldjson-1","reference/http_api.html#applicationvndapachearrowfile","reference/http_api.html#applicationvndapachearrowstream","reference/http_api.html#http-basic-authentication","reference/http_api.html#parameters","reference/http_api.html#named-parameters","reference/http_api.html#positional-parameters","reference/http_api.html#bulk-parameters","reference/http_api.html#apache-arrow-file-parameters","reference/http_api.html#bulk-insert","reference/http_api.html#multiple-statements","reference/data_types.html#data-types","reference/data_types.html#scalars","reference/data_types.html#collections","reference/data_types.html#unsupported-scalar-types","appendix/index.html#appendix","appendix/what.html#what-is-endatabas","appendix/what.html#who-wants-one-database","appendix/what.html#when-is-one-database-possible","appendix/why.html#why-endatabas","appendix/why.html#what-is-endatabas-anyway","appendix/why.html#history","appendix/why.html#why-sql","appendix/why.html#why-full-history","appendix/why.html#why-a-timeline","appendix/why.html#why-separation-of-storage-and-compute","appendix/why.html#why-documents","appendix/why.html#why-one-database","appendix/why.html#why-commercial-open-source","appendix/why.html#why-now","appendix/architecture.html#architecture","appendix/architecture.html#immutable","appendix/architecture.html#erasure","appendix/architecture.html#dynamic-sql","appendix/architecture.html#columnar-hybrid-transactional-analytic-processing-htap","appendix/architecture.html#query-execution","appendix/architecture.html#future","appendix/architecture.html#columnar-olap-result-sets","appendix/architecture.html#cloud-separation-of-storage-from-compute","appendix/architecture.html#adaptive-indexing","appendix/roadmap.html#roadmap","appendix/license.html#license"],"index":{"documentStore":{"docInfo":{"0":{"body":31,"breadcrumbs":2,"title":1},"1":{"body":7,"breadcrumbs":2,"title":1},"10":{"body":42,"breadcrumbs":4,"title":2},"100":{"body":13,"breadcrumbs":4,"title":1},"101":{"body":13,"breadcrumbs":4,"title":1},"102":{"body":25,"breadcrumbs":6,"title":3},"103":{"body":17,"breadcrumbs":5,"title":2},"104":{"body":16,"breadcrumbs":4,"title":1},"105":{"body":15,"breadcrumbs":4,"title":1},"106":{"body":32,"breadcrumbs":4,"title":1},"107":{"body":12,"breadcrumbs":4,"title":1},"108":{"body":13,"breadcrumbs":4,"title":1},"109":{"body":11,"breadcrumbs":4,"title":1},"11":{"body":25,"breadcrumbs":7,"title":3},"110":{"body":35,"breadcrumbs":3,"title":0},"111":{"body":0,"breadcrumbs":5,"title":2},"112":{"body":26,"breadcrumbs":4,"title":1},"113":{"body":12,"breadcrumbs":4,"title":1},"114":{"body":12,"breadcrumbs":4,"title":1},"115":{"body":20,"breadcrumbs":4,"title":1},"116":{"body":18,"breadcrumbs":4,"title":1},"117":{"body":54,"breadcrumbs":4,"title":1},"118":{"body":0,"breadcrumbs":5,"title":2},"119":{"body":7,"breadcrumbs":4,"title":1},"12":{"body":30,"breadcrumbs":5,"title":1},"120":{"body":62,"breadcrumbs":4,"title":1},"121":{"body":0,"breadcrumbs":5,"title":2},"122":{"body":23,"breadcrumbs":4,"title":1},"123":{"body":19,"breadcrumbs":4,"title":1},"124":{"body":21,"breadcrumbs":4,"title":1},"125":{"body":53,"breadcrumbs":4,"title":1},"126":{"body":0,"breadcrumbs":5,"title":2},"127":{"body":33,"breadcrumbs":5,"title":2},"128":{"body":21,"breadcrumbs":4,"title":1},"129":{"body":11,"breadcrumbs":4,"title":1},"13":{"body":95,"breadcrumbs":5,"title":1},"130":{"body":15,"breadcrumbs":4,"title":1},"131":{"body":37,"breadcrumbs":4,"title":1},"132":{"body":43,"breadcrumbs":4,"title":1},"133":{"body":28,"breadcrumbs":4,"title":1},"134":{"body":12,"breadcrumbs":4,"title":1},"135":{"body":0,"breadcrumbs":6,"title":3},"136":{"body":16,"breadcrumbs":4,"title":1},"137":{"body":14,"breadcrumbs":4,"title":1},"138":{"body":0,"breadcrumbs":5,"title":2},"139":{"body":19,"breadcrumbs":4,"title":1},"14":{"body":31,"breadcrumbs":6,"title":2},"140":{"body":14,"breadcrumbs":4,"title":1},"141":{"body":16,"breadcrumbs":4,"title":1},"142":{"body":0,"breadcrumbs":5,"title":2},"143":{"body":22,"breadcrumbs":4,"title":1},"144":{"body":45,"breadcrumbs":4,"title":1},"145":{"body":15,"breadcrumbs":4,"title":1},"146":{"body":25,"breadcrumbs":5,"title":2},"147":{"body":70,"breadcrumbs":5,"title":2},"148":{"body":35,"breadcrumbs":6,"title":2},"149":{"body":30,"breadcrumbs":10,"title":6},"15":{"body":38,"breadcrumbs":7,"title":3},"150":{"body":6,"breadcrumbs":6,"title":2},"151":{"body":10,"breadcrumbs":5,"title":1},"152":{"body":8,"breadcrumbs":5,"title":1},"153":{"body":7,"breadcrumbs":5,"title":1},"154":{"body":16,"breadcrumbs":5,"title":1},"155":{"body":23,"breadcrumbs":6,"title":2},"156":{"body":21,"breadcrumbs":6,"title":2},"157":{"body":20,"breadcrumbs":6,"title":2},"158":{"body":26,"breadcrumbs":5,"title":1},"159":{"body":22,"breadcrumbs":4,"title":0},"16":{"body":52,"breadcrumbs":6,"title":2},"160":{"body":5,"breadcrumbs":6,"title":2},"161":{"body":25,"breadcrumbs":5,"title":1},"162":{"body":26,"breadcrumbs":5,"title":1},"163":{"body":20,"breadcrumbs":5,"title":1},"164":{"body":19,"breadcrumbs":5,"title":1},"165":{"body":21,"breadcrumbs":6,"title":2},"166":{"body":21,"breadcrumbs":6,"title":2},"167":{"body":39,"breadcrumbs":6,"title":2},"168":{"body":20,"breadcrumbs":6,"title":2},"169":{"body":38,"breadcrumbs":6,"title":2},"17":{"body":53,"breadcrumbs":6,"title":2},"170":{"body":22,"breadcrumbs":6,"title":2},"171":{"body":22,"breadcrumbs":6,"title":2},"172":{"body":40,"breadcrumbs":6,"title":2},"173":{"body":44,"breadcrumbs":6,"title":2},"174":{"body":40,"breadcrumbs":6,"title":2},"175":{"body":43,"breadcrumbs":6,"title":2},"176":{"body":27,"breadcrumbs":5,"title":1},"177":{"body":31,"breadcrumbs":5,"title":1},"178":{"body":24,"breadcrumbs":5,"title":1},"179":{"body":32,"breadcrumbs":5,"title":1},"18":{"body":30,"breadcrumbs":5,"title":1},"180":{"body":44,"breadcrumbs":5,"title":1},"181":{"body":45,"breadcrumbs":4,"title":1},"182":{"body":15,"breadcrumbs":4,"title":1},"183":{"body":16,"breadcrumbs":4,"title":1},"184":{"body":17,"breadcrumbs":4,"title":1},"185":{"body":20,"breadcrumbs":5,"title":2},"186":{"body":10,"breadcrumbs":4,"title":1},"187":{"body":52,"breadcrumbs":5,"title":2},"188":{"body":9,"breadcrumbs":5,"title":2},"189":{"body":0,"breadcrumbs":4,"title":1},"19":{"body":11,"breadcrumbs":6,"title":2},"190":{"body":36,"breadcrumbs":5,"title":2},"191":{"body":8,"breadcrumbs":5,"title":2},"192":{"body":18,"breadcrumbs":2,"title":1},"193":{"body":27,"breadcrumbs":3,"title":1},"194":{"body":23,"breadcrumbs":5,"title":3},"195":{"body":62,"breadcrumbs":5,"title":3},"196":{"body":11,"breadcrumbs":5,"title":3},"197":{"body":25,"breadcrumbs":5,"title":3},"198":{"body":52,"breadcrumbs":3,"title":1},"199":{"body":64,"breadcrumbs":5,"title":2},"2":{"body":18,"breadcrumbs":2,"title":1},"20":{"body":51,"breadcrumbs":4,"title":2},"200":{"body":25,"breadcrumbs":6,"title":3},"201":{"body":30,"breadcrumbs":5,"title":2},"202":{"body":11,"breadcrumbs":5,"title":2},"203":{"body":72,"breadcrumbs":4,"title":1},"204":{"body":42,"breadcrumbs":4,"title":1},"205":{"body":36,"breadcrumbs":4,"title":1},"206":{"body":46,"breadcrumbs":5,"title":2},"207":{"body":25,"breadcrumbs":7,"title":4},"208":{"body":15,"breadcrumbs":5,"title":2},"209":{"body":31,"breadcrumbs":4,"title":1},"21":{"body":86,"breadcrumbs":4,"title":1},"210":{"body":34,"breadcrumbs":4,"title":1},"211":{"body":42,"breadcrumbs":5,"title":2},"212":{"body":44,"breadcrumbs":4,"title":1},"213":{"body":46,"breadcrumbs":4,"title":1},"214":{"body":43,"breadcrumbs":4,"title":1},"215":{"body":87,"breadcrumbs":6,"title":3},"216":{"body":51,"breadcrumbs":4,"title":1},"217":{"body":71,"breadcrumbs":5,"title":2},"218":{"body":62,"breadcrumbs":5,"title":2},"219":{"body":57,"breadcrumbs":5,"title":2},"22":{"body":31,"breadcrumbs":6,"title":2},"220":{"body":110,"breadcrumbs":7,"title":4},"221":{"body":72,"breadcrumbs":5,"title":2},"222":{"body":55,"breadcrumbs":5,"title":2},"223":{"body":0,"breadcrumbs":5,"title":2},"224":{"body":117,"breadcrumbs":4,"title":1},"225":{"body":26,"breadcrumbs":4,"title":1},"226":{"body":34,"breadcrumbs":6,"title":3},"227":{"body":3,"breadcrumbs":2,"title":1},"228":{"body":99,"breadcrumbs":2,"title":1},"229":{"body":96,"breadcrumbs":3,"title":2},"23":{"body":80,"breadcrumbs":5,"title":1},"230":{"body":102,"breadcrumbs":4,"title":3},"231":{"body":73,"breadcrumbs":2,"title":1},"232":{"body":102,"breadcrumbs":3,"title":2},"233":{"body":394,"breadcrumbs":2,"title":1},"234":{"body":228,"breadcrumbs":2,"title":1},"235":{"body":130,"breadcrumbs":3,"title":2},"236":{"body":61,"breadcrumbs":2,"title":1},"237":{"body":63,"breadcrumbs":4,"title":3},"238":{"body":226,"breadcrumbs":2,"title":1},"239":{"body":45,"breadcrumbs":3,"title":2},"24":{"body":78,"breadcrumbs":5,"title":1},"240":{"body":7,"breadcrumbs":4,"title":3},"241":{"body":120,"breadcrumbs":2,"title":1},"242":{"body":0,"breadcrumbs":3,"title":1},"243":{"body":22,"breadcrumbs":3,"title":1},"244":{"body":13,"breadcrumbs":3,"title":1},"245":{"body":69,"breadcrumbs":4,"title":2},"246":{"body":30,"breadcrumbs":8,"title":6},"247":{"body":23,"breadcrumbs":4,"title":2},"248":{"body":7,"breadcrumbs":3,"title":1},"249":{"body":7,"breadcrumbs":6,"title":4},"25":{"body":36,"breadcrumbs":6,"title":2},"250":{"body":46,"breadcrumbs":6,"title":4},"251":{"body":18,"breadcrumbs":4,"title":2},"252":{"body":19,"breadcrumbs":3,"title":1},"253":{"body":20,"breadcrumbs":3,"title":1},"26":{"body":24,"breadcrumbs":7,"title":3},"27":{"body":25,"breadcrumbs":7,"title":3},"28":{"body":42,"breadcrumbs":5,"title":1},"29":{"body":120,"breadcrumbs":6,"title":2},"3":{"body":0,"breadcrumbs":3,"title":1},"30":{"body":30,"breadcrumbs":5,"title":1},"31":{"body":6,"breadcrumbs":5,"title":1},"32":{"body":18,"breadcrumbs":5,"title":1},"33":{"body":14,"breadcrumbs":4,"title":1},"34":{"body":63,"breadcrumbs":4,"title":1},"35":{"body":77,"breadcrumbs":4,"title":1},"36":{"body":0,"breadcrumbs":3,"title":0},"37":{"body":56,"breadcrumbs":5,"title":2},"38":{"body":52,"breadcrumbs":5,"title":2},"39":{"body":33,"breadcrumbs":4,"title":1},"4":{"body":21,"breadcrumbs":4,"title":2},"40":{"body":80,"breadcrumbs":4,"title":1},"41":{"body":31,"breadcrumbs":4,"title":1},"42":{"body":11,"breadcrumbs":4,"title":1},"43":{"body":6,"breadcrumbs":5,"title":2},"44":{"body":56,"breadcrumbs":6,"title":3},"45":{"body":43,"breadcrumbs":4,"title":1},"46":{"body":27,"breadcrumbs":4,"title":1},"47":{"body":55,"breadcrumbs":4,"title":1},"48":{"body":53,"breadcrumbs":5,"title":2},"49":{"body":49,"breadcrumbs":5,"title":2},"5":{"body":12,"breadcrumbs":5,"title":3},"50":{"body":9,"breadcrumbs":8,"title":5},"51":{"body":23,"breadcrumbs":4,"title":1},"52":{"body":12,"breadcrumbs":4,"title":1},"53":{"body":22,"breadcrumbs":4,"title":1},"54":{"body":82,"breadcrumbs":5,"title":2},"55":{"body":44,"breadcrumbs":7,"title":4},"56":{"body":80,"breadcrumbs":4,"title":1},"57":{"body":50,"breadcrumbs":8,"title":5},"58":{"body":67,"breadcrumbs":5,"title":2},"59":{"body":31,"breadcrumbs":4,"title":1},"6":{"body":23,"breadcrumbs":5,"title":3},"60":{"body":63,"breadcrumbs":4,"title":1},"61":{"body":19,"breadcrumbs":4,"title":1},"62":{"body":0,"breadcrumbs":8,"title":3},"63":{"body":30,"breadcrumbs":6,"title":1},"64":{"body":39,"breadcrumbs":8,"title":3},"65":{"body":5,"breadcrumbs":6,"title":1},"66":{"body":9,"breadcrumbs":7,"title":2},"67":{"body":8,"breadcrumbs":7,"title":2},"68":{"body":32,"breadcrumbs":6,"title":1},"69":{"body":20,"breadcrumbs":6,"title":1},"7":{"body":8,"breadcrumbs":3,"title":1},"70":{"body":19,"breadcrumbs":6,"title":1},"71":{"body":50,"breadcrumbs":7,"title":2},"72":{"body":11,"breadcrumbs":7,"title":2},"73":{"body":48,"breadcrumbs":6,"title":1},"74":{"body":119,"breadcrumbs":6,"title":1},"75":{"body":0,"breadcrumbs":7,"title":2},"76":{"body":78,"breadcrumbs":7,"title":2},"77":{"body":67,"breadcrumbs":6,"title":1},"78":{"body":37,"breadcrumbs":7,"title":2},"79":{"body":24,"breadcrumbs":6,"title":1},"8":{"body":39,"breadcrumbs":3,"title":1},"80":{"body":9,"breadcrumbs":7,"title":2},"81":{"body":68,"breadcrumbs":8,"title":3},"82":{"body":0,"breadcrumbs":4,"title":1},"83":{"body":32,"breadcrumbs":4,"title":1},"84":{"body":37,"breadcrumbs":4,"title":1},"85":{"body":89,"breadcrumbs":5,"title":2},"86":{"body":59,"breadcrumbs":4,"title":1},"87":{"body":24,"breadcrumbs":5,"title":2},"88":{"body":75,"breadcrumbs":3,"title":0},"89":{"body":20,"breadcrumbs":4,"title":1},"9":{"body":15,"breadcrumbs":4,"title":2},"90":{"body":23,"breadcrumbs":4,"title":1},"91":{"body":104,"breadcrumbs":5,"title":2},"92":{"body":36,"breadcrumbs":3,"title":0},"93":{"body":34,"breadcrumbs":3,"title":0},"94":{"body":17,"breadcrumbs":4,"title":1},"95":{"body":27,"breadcrumbs":3,"title":0},"96":{"body":27,"breadcrumbs":3,"title":0},"97":{"body":63,"breadcrumbs":4,"title":1},"98":{"body":0,"breadcrumbs":4,"title":1},"99":{"body":0,"breadcrumbs":5,"title":2}},"docs":{"0":{"body":"Welcome to Endatabas! Endatabas is a SQL document database with complete history. It will store anything, forever. The best way to understand Endatabas is to use it. Head on over to the Quickstart to try it out. If you're not ready to run your first query yet, there's plenty of explanatory material in our What? and Why? documents.","breadcrumbs":"Introduction » Introduction","id":"0","title":"Introduction"},"1":{"body":"If you came to the Endatabas book directly, you may also be interested in: www.endatabas.com github.com/endatabas/endb","breadcrumbs":"Introduction » Elsewhere","id":"1","title":"Elsewhere"},"10":{"body":"Endb does not yet provide an official SQL console. However, you can try Endb SQL (without writing any code) with the example terminal: git clone git@github.com:endatabas/endb.git\ncd endb/examples\n./endb_console.py This example console wraps the Python example library. Assuming you inserted a user with curl above, you can query that table directly: -> SELECT * FROM users; You can use any of these tools (or any other HTTP client you prefer) for the rest of this tutorial.","breadcrumbs":"Tutorial » Try It! » Example Console","id":"10","title":"Example Console"},"100":{"body":"The CHARACTER_LENGTH function returns the number of unicode characters in a string. SELECT CHARACTER_LENGTH('josé');\n-- 4 SELECT CHARACTER_LENGTH('❤️🥫');\n-- 3","breadcrumbs":"SQL Reference » Functions » CHARACTER_LENGTH","id":"100","title":"CHARACTER_LENGTH"},"101":{"body":"The OCTET_LENGTH function returns the length of a string, in bytes (octets). SELECT OCTET_LENGTH('josé');\n-- 5 SELECT OCTET_LENGTH('❤️🥫');\n-- 10","breadcrumbs":"SQL Reference » Functions » OCTET_LENGTH","id":"101","title":"OCTET_LENGTH"},"102":{"body":"The TRIM, LTRIM, and RTRIM functions trim surrounding whitespace, whitespace to the left, and whitespace to the right of a string, respectively. SELECT TRIM(' hello ');\n-- 'hello' SELECT LTRIM(' hello ');\n-- 'hello ' SELECT RTRIM(' hello ');\n-- ' hello'","breadcrumbs":"SQL Reference » Functions » TRIM, LTRIM, RTRIM","id":"102","title":"TRIM, LTRIM, RTRIM"},"103":{"body":"The LOWER and UPPER functions downcase and upcase a string, respectively. SELECT LOWER('Relatable Algebra');\n-- 'relatable algebra' SELECT UPPER('Shouting Calculus');\n-- 'SHOUTING CALCULUS'","breadcrumbs":"SQL Reference » Functions » LOWER, UPPER","id":"103","title":"LOWER, UPPER"},"104":{"body":"The REPLACE function returns the string in the first parameter, with the second parameter (if found) replaced by the third. SELECT REPLACE('Relatable Algebra', 'Rela', 'Infla');","breadcrumbs":"SQL Reference » Functions » REPLACE","id":"104","title":"REPLACE"},"105":{"body":"The INSTR function returns the first character of a substring match on the second parameter, if found, and 0 if it is not found. SELECT INSTR('Coffee', 'ee');","breadcrumbs":"SQL Reference » Functions » INSTR","id":"105","title":"INSTR"},"106":{"body":"The SUBSTRING function returns the substring starting from the index provided as the second parameter. If the (optional) third parameter is provided, the substring will be of that length (or less, if the end of the source string is reached). SUBSTR is a synonym for SUBSTRING. SELECT SUBSTRING('Hello Edgar', 4);\nSELECT SUBSTR('Hello Edgar', 4, 2);","breadcrumbs":"SQL Reference » Functions » SUBSTRING","id":"106","title":"SUBSTRING"},"107":{"body":"The UNICODE function returns an integer unicode value for the first character of the parameter given. SELECT UNICODE('Adam');","breadcrumbs":"SQL Reference » Functions » UNICODE","id":"107","title":"UNICODE"},"108":{"body":"The CHAR function returns a string corresponding to the supplied integer character codes. SELECT CHAR(65, 66, 67);","breadcrumbs":"SQL Reference » Functions » CHAR","id":"108","title":"CHAR"},"109":{"body":"CONCAT is equivalent to the Concatenation Operator (||) except that CONCAT is limited to 2-arity applications and || can be chained.","breadcrumbs":"SQL Reference » Functions » CONCAT","id":"109","title":"CONCAT"},"11":{"body":"If you know SQL, Endb SQL will feel instantly familiar. It is not \"SQL-like\". It is SQL. However, Endb SQL is dynamic , strongly-typed , time-aware , and shuns language embedding . Hopefully it is pleasant to use without feeling foreign.","breadcrumbs":"Tutorial » Endb SQL Basics » Endb SQL Basics","id":"11","title":"Endb SQL Basics"},"110":{"body":"The LIKE function serves the same purpose as the LIKE operator . However, the argument order is (effectively) reversed for the LIKE function, to match the signature used in SQLite. For the function version, the pattern is the first argument. Optionally, an alternative escape character can be provided as a third argument. SELECT * FROM users WHERE LIKE('Stev%', name);\nSELECT * FROM users WHERE LIKE('EdgarX%', name, 'X');","breadcrumbs":"SQL Reference » Functions » LIKE","id":"110","title":"LIKE"},"111":{"body":"","breadcrumbs":"SQL Reference » Functions » Collection Functions","id":"111","title":"Collection Functions"},"112":{"body":"The LENGTH function counts the number of entries in a collection. When supplied with a string, it is a synonym for CHARACTER_LENGTH. SELECT LENGTH([3, 2]);\nSELECT LENGTH({name: 'Peas', price: 8.99, product_no: 77});\nSELECT LENGTH('josé'); NOTE: CARDINALITY is an synonym for LENGTH.","breadcrumbs":"SQL Reference » Functions » LENGTH","id":"112","title":"LENGTH"},"113":{"body":"An object's keys can be selected using OBJECT_KEYS. SELECT OBJECT_KEYS({original_price: 1.99, sale_price: 1.50, coupon_price: 1.40});","breadcrumbs":"SQL Reference » Functions » OBJECT_KEYS","id":"113","title":"OBJECT_KEYS"},"114":{"body":"An object's values can be selected using OBJECT_VALUES. SELECT OBJECT_VALUES({original_price: 1.99, sale_price: 1.50, coupon_price: 1.40});","breadcrumbs":"SQL Reference » Functions » OBJECT_VALUES","id":"114","title":"OBJECT_VALUES"},"115":{"body":"Returns an array of key-value pairs representing the given object. SELECT OBJECT_ENTRIES({a: 1, b: 2, c: 3});\n-- [['a': 1], ['b': 2], ['c': 3]]","breadcrumbs":"SQL Reference » Functions » OBJECT_ENTRIES","id":"115","title":"OBJECT_ENTRIES"},"116":{"body":"Constructs an object from an array of key-value pairs. SELECT OBJECT_FROM_ENTRIES([['a', 1], ['b', 2], ['c', 3]]);\n-- {a: 1, b: 2, c: 3}","breadcrumbs":"SQL Reference » Functions » OBJECT_FROM_ENTRIES","id":"116","title":"OBJECT_FROM_ENTRIES"},"117":{"body":"The PATCH function takes two documents. The document returned is the first document \"patched\" with any fields found in the second document. If the second document does not specify a field, that field is left untouched. If the second document specifies any fields with values of NULL, those fields are removed. SELECT PATCH( {name: 'Salt', nutrition: {sodium: 100, ingredients: 'Kosher Salt'}}, {name: 'Sea Salt', nutrition: {ingredients: NULL}}\n); The PATCH function has an equivalent operator for data manipulation: UPDATE PATCH","breadcrumbs":"SQL Reference » Functions » PATCH","id":"117","title":"PATCH"},"118":{"body":"","breadcrumbs":"SQL Reference » Functions » Numeric Functions","id":"118","title":"Numeric Functions"},"119":{"body":"The RANDOM function returns a random integer. SELECT RANDOM();","breadcrumbs":"SQL Reference » Functions » RANDOM","id":"119","title":"RANDOM"},"12":{"body":"Endb is a schemaless document database. You do not need CREATE TABLE — tables are dynamically created when you insert data. The following SQL is valid as soon as you start endb: INSERT INTO posts (id, user_id, text) VALUES (123, 456, 'Hello World'); SELECT * from posts;","breadcrumbs":"Tutorial » Endb SQL Basics » Just Begin","id":"12","title":"Just Begin"},"120":{"body":"Endb provides standard SQL math functions based on SQLite's collection of math functions: ROUND SIN COS TAN SINH COSH TANH ASIN ACOS ATAN ASINH ACOSH ATANH ATAN2 FLOOR CEILING, CEIL SIGN SQRT EXP POWER, POW LOG, LOG10 LOG2 LN DEGREES RADIANS PI ABS NOTE: Endb follows the choice of most SQL databases and aliases LOG to LOG10 rather than LN (natural log), as specified by the SQL standard. NOTE: Mathematical operators are documented under Operators .","breadcrumbs":"SQL Reference » Functions » Math","id":"120","title":"Math"},"121":{"body":"","breadcrumbs":"SQL Reference » Functions » Date/Time Functions","id":"121","title":"Date/Time Functions"},"122":{"body":"The STRFTIME function formats a date or time value as a string. SELECT strftime('%Y/%m/%d', date('2001-01-01'));\nSELECT strftime('%Y %m %d at %H %M %S', datetime('2001-01-01 03:04:05'));","breadcrumbs":"SQL Reference » Functions » STRFTIME","id":"122","title":"STRFTIME"},"123":{"body":"The UNIXEPOCH function returns the number of seconds since the UNIX epoch. Accepts a DATE, TIMESTAMP, or STRING. SELECT UNIXEPOCH('2023-01-01');\nSELECT UNIXEPOCH(1970-01-01T00:00:00Z);","breadcrumbs":"SQL Reference » Functions » UNIXEPOCH","id":"123","title":"UNIXEPOCH"},"124":{"body":"The JULIANDAY function returns the Julian Day, which is the number of days since noon in UTC on November 24, 4714 B.C. Accepts a DATE, TIMESTAMP, or STRING. SELECT JULIANDAY(1970-01-01);","breadcrumbs":"SQL Reference » Functions » JULIANDAY","id":"124","title":"JULIANDAY"},"125":{"body":"The EXTRACT pseudo-function provides a way to access one named, numerical portion of a date, time, or timestamp. Portions of dates can only be extracted from dates or timestamps. Portions of times can only be extracted from timestamps or times. SELECT EXTRACT(YEAR FROM CURRENT_DATE);\nSELECT EXTRACT(MONTH FROM CURRENT_DATE);\nSELECT EXTRACT(DAY FROM CURRENT_TIMESTAMP);\nSELECT EXTRACT(HOUR FROM CURRENT_TIMESTAMP);\nSELECT EXTRACT(MINUTE FROM CURRENT_TIME);\nSELECT EXTRACT(SECOND FROM CURRENT_TIME); NOTE: EXTRACT is a \"pseudo-function\" because internally it uses custom syntax of the form FROM .","breadcrumbs":"SQL Reference » Functions » EXTRACT","id":"125","title":"EXTRACT"},"126":{"body":"","breadcrumbs":"SQL Reference » Functions » Aggregate Functions","id":"126","title":"Aggregate Functions"},"127":{"body":"The MIN and MAX functions return the minimum and maximum values for an expression, respectively. SELECT MIN(price) FROM products;\nSELECT MAX(price) FROM products; NOTE: MIN and MAX also have non-aggregate equivalents, which are 2-arity. When used that way, they each return the minimum or maximum value of the two values provided.","breadcrumbs":"SQL Reference » Functions » MIN, MAX","id":"127","title":"MIN, MAX"},"128":{"body":"The SUM function returns the sum of all non-null values under the column given as a parameter. SELECT SUM(price) FROM products; If all values for the given column are NULL, SUM returns NULL.","breadcrumbs":"SQL Reference » Functions » SUM","id":"128","title":"SUM"},"129":{"body":"The TOTAL function is equivalent to SUM except that it returns 0.0 in the case where all input values are NULL.","breadcrumbs":"SQL Reference » Functions » TOTAL","id":"129","title":"TOTAL"},"13":{"body":"Endb is immutable, so it does not permit destructive UPDATE or DELETE. For example, if you run an UPDATE, your previous INSERT isn't lost. Before we update the record, we'll make note of the current time, according to the database. (Any time after the INSERT and before the UPDATE would suffice.) SELECT CURRENT_TIMESTAMP;\n-- for the sake of example, let's say this returns 2023-08-17T00:00:00 UPDATE posts SET text = 'Hello Immutable World' WHERE id = 123; SELECT * from posts; You'll note that Hello World from your original insert isn't visible. That's because it only exists in the past and, by default, SELECT will show the state of the database as of now . To see the old version, you can time-travel back to a time when the old record was visible: SELECT * from posts FOR SYSTEM_TIME AS OF 2023-08-17T00:00:00; NOTE: Although there is no DELETE in the traditional sense, there is ERASE, which exists to remove data for user safety and compliance with laws like GDPR.","breadcrumbs":"Tutorial » Endb SQL Basics » Immutable","id":"13","title":"Immutable"},"130":{"body":"The AVG function takes a numerical-type-agnostic average of all values under the column given as a parameter. SELECT AVG(price) FROM products;","breadcrumbs":"SQL Reference » Functions » AVG","id":"130","title":"AVG"},"131":{"body":"The COUNT function returns the count of non-null , non-empty values for the specified column. SELECT COUNT(price) FROM sales; NOTE: Because null/empty values are ignored, the behaviour of COUNT will differ from other SQL dialects. Whether or not COUNT(price) and COUNT(1) are equivalent is dependent on whether the price attribute exists with a non-null value on each document.","breadcrumbs":"SQL Reference » Functions » COUNT","id":"131","title":"COUNT"},"132":{"body":"The ARRAY_AGG function concatenates the results of an expression into an array. The parameter may be ordered within ARRAY_AGG. SELECT ARRAY_AGG(price) FROM products;\nSELECT ARRAY_AGG(name ORDER BY price DESC) FROM products; Note that when operating on arrays, the arrays themselves will be concatenated, not the contents of the arrays. The result will be an array of one higher dimension: SELECT ARRAY_AGG(x.column1) FROM (VALUES ([1,2]), ([3,4])) AS x;\n-- [{'column1': [[1, 2], [3, 4]]}]","breadcrumbs":"SQL Reference » Functions » ARRAY_AGG","id":"132","title":"ARRAY_AGG"},"133":{"body":"The GROUP_CONCAT function returns a string with concatenated non-null values from a column or group. Given a second parameter, It defaults to a comma-delimited list, but the second (optional) parameter can override the delimiter. SELECT GROUP_CONCAT(name) FROM products;\nSELECT GROUP_CONCAT(name, ':') FROM products;","breadcrumbs":"SQL Reference » Functions » GROUP_CONCAT","id":"133","title":"GROUP_CONCAT"},"134":{"body":"All aggregate functions can have a filter applied before aggregation. SELECT SUM(price) FILTER(WHERE price > 20) FROM products;","breadcrumbs":"SQL Reference » Functions » FILTER","id":"134","title":"FILTER"},"135":{"body":"","breadcrumbs":"SQL Reference » Functions » Data Type Functions","id":"135","title":"Data Type Functions"},"136":{"body":"The CAST function forces a value into a particular data type. Note that not all types are cast-compatible with each other. SELECT CAST(price AS INTEGER) FROM products;","breadcrumbs":"SQL Reference » Functions » CAST","id":"136","title":"CAST"},"137":{"body":"The TYPEOF function returns the type of the provided value. SELECT TYPEOF('hi2u');\nSELECT TYPEOF(1.12345678901234);\nSELECT TYPEOF(2018-01-01T00:00:00);","breadcrumbs":"SQL Reference » Functions » TYPEOF","id":"137","title":"TYPEOF"},"138":{"body":"","breadcrumbs":"SQL Reference » Functions » Conditional Functions","id":"138","title":"Conditional Functions"},"139":{"body":"The IIF function is a conditional shorthand. It returns the second parameter if the condition is true and the third parameter if the condition is false. SELECT IIF(price > 5.99, 'Expensive!', 'Cheap') FROM products;","breadcrumbs":"SQL Reference » Functions » IIF","id":"139","title":"IIF"},"14":{"body":"Relationships are also dynamic. You can join any two tables on any two columns. Adding a user with id 456 allows a join with the previous posts table. INSERT INTO users (id, name) VALUES (456, 'Vikram'); SELECT * from posts p JOIN users u ON p.user_id = u.id;","breadcrumbs":"Tutorial » Endb SQL Basics » Dynamic Joins","id":"14","title":"Dynamic Joins"},"140":{"body":"The NULLIF function returns TRUE if the two supplied expressions are equal. SELECT NULLIF(1, 1);\nSELECT NULLIF(1, 'zig');","breadcrumbs":"SQL Reference » Functions » NULLIF","id":"140","title":"NULLIF"},"141":{"body":"The COALESCE function returns its first non-null argument. The following example returns 'zig': SELECT COALESCE(NULL, NULL, 'zig', 'zag');","breadcrumbs":"SQL Reference » Functions » COALESCE","id":"141","title":"COALESCE"},"142":{"body":"","breadcrumbs":"SQL Reference » Functions » Encoding Functions","id":"142","title":"Encoding Functions"},"143":{"body":"The BASE64 function takes a hexadecimal-encoded BLOB and returns a base64-encoded string, or vice-versa. BASE64 roundtrips its own data. There is therefore no BLOBFROMBASE64 function. SELECT BASE64(x'010203');\nSELECT BASE64('AQID');","breadcrumbs":"SQL Reference » Functions » BASE64","id":"143","title":"BASE64"},"144":{"body":"The UUID function returns a universally-unique identifier, as a string. The UUID_BLOB function takes a string UUID and returns a BLOB. The UUID_STR function takes a BLOB UUID and returns a string. When given a parameter of their return type, UUID_BLOB and UUID_STR will format the UUID provided. SELECT UUID();\nSELECT UUID_BLOB('d2ce21c9-d268-409a-b1e0-49e1200bfa47');\nSELECT UUID_STR(x'd2ce21c9d268409ab1e049e1200bfa47'); -- formatting:\nSELECT UUID_BLOB(x'd2ce21c9d268409ab1e049e1200bfa47');\nSELECT UUID_STR('d2ce21c9d268409ab1e049e1200bfa47');","breadcrumbs":"SQL Reference » Functions » UUID","id":"144","title":"UUID"},"145":{"body":"The SHA1 function takes either a hexadecimal-encoded BLOB, a string, or a number. It returns the SHA-1 encoding of that value. SELECT SHA1('2');","breadcrumbs":"SQL Reference » Functions » SHA1","id":"145","title":"SHA1"},"146":{"body":"The RANDOMBLOB function returns a random binary large object of the size given, in bytes. The ZEROBLOB function returns a zeroed-out binary large object of the size given, in bytes. SELECT RANDOMBLOB(32);\nSELECT ZEROBLOB(32);","breadcrumbs":"SQL Reference » Functions » RANDOMBLOB, ZEROBLOB","id":"146","title":"RANDOMBLOB, ZEROBLOB"},"147":{"body":"The HEX function takes a BLOB (or coerces its argument into a UTF-8 string, which in turn is interpreted as a BLOB) and turns the BLOB into an upper-case hexadecimal string. The UNHEX function takes a hexadecimal string and turns it into a BLOB. The hexadecimal string provided must contain character pairs . UNHEX takes an optional second parameter: a string containing non-hexadecimal characters to be ignored in the first parameter. If non-hexadecimal characters are found in the first parameter but not ignored in the second parameter, UNHEX returns NULL. SELECT HEX(15);\n-- '3135' SELECT UNHEX('3135');\n-- b'15' SELECT UNHEX('3135ZZ', 'Z');\n-- b'15' SELECT UNHEX('3135ZZ', 'M');\n-- NULL","breadcrumbs":"SQL Reference » Functions » HEX, UNHEX","id":"147","title":"HEX, UNHEX"},"148":{"body":"To make best use of Time Queries, it is a good idea to review the time-related SQL data types, such as TIMESTAMP, DATE, TIME, and INTERVAL. These are covered in the SQL Data Types section. It is also a good idea to review Endb's other time-related functions, in case they are helpful to you: STRFTIME UNIXEPOCH JULIANDAY","breadcrumbs":"SQL Reference » Time Queries » Time Queries","id":"148","title":"Time Queries"},"149":{"body":"All Endb temporal predicates (CONTAINS, OVERLAPS, PRECEDES, SUCCEEDS, IMMEDIATELY PRECEDES, and IMMEDIATELY SUCCEEDS) follow the SQL:2011 standard's \"closed-open period model\". This means that a period represents all times starting from (and including) the start time up to (but excluding) the end time.","breadcrumbs":"SQL Reference » Time Queries » Note on SQL:2011 closed-open period model","id":"149","title":"Note on SQL:2011 closed-open period model"},"15":{"body":"Endb allows you to insert asymmetrical, jagged data. Let's add another user with more columns. INSERT INTO users (id, name, email) VALUES (789, 'Daniela', 'daniela@endatabas.com'); SELECT * from users; Note that the SELECT * is an implicitly dynamic query. It doesn't have any difficulty with the previous user document, even though it lacked an email column.","breadcrumbs":"Tutorial » Endb SQL Basics » Semi-Structured Data","id":"15","title":"Semi-Structured Data"},"150":{"body":"Endb currently only supports times encoded as UTC.","breadcrumbs":"SQL Reference » Time Queries » Note on timezones","id":"150","title":"Note on timezones"},"151":{"body":"Endb provides access to the current value of the clock \"now\" in multiple date/time configurations.","breadcrumbs":"SQL Reference » Time Queries » Now","id":"151","title":"Now"},"152":{"body":"CURRENT_TIMESTAMP gets the current date and time in UTC. SELECT CURRENT_TIMESTAMP;","breadcrumbs":"SQL Reference » Time Queries » CURRENT_TIMESTAMP","id":"152","title":"CURRENT_TIMESTAMP"},"153":{"body":"CURRENT_TIME gets the current time in UTC. SELECT CURRENT_TIME;","breadcrumbs":"SQL Reference » Time Queries » CURRENT_TIME","id":"153","title":"CURRENT_TIME"},"154":{"body":"CURRENT_DATE gets the current date in UTC. Note that this may be different from your local date, depending on the time of day when your query is run. SELECT CURRENT_DATE;","breadcrumbs":"SQL Reference » Time Queries » CURRENT_DATE","id":"154","title":"CURRENT_DATE"},"155":{"body":"All states an Endb database has ever seen are recorded, immutably. Accessing these prior states is accomplished by querying System Time. System Time is encoded in a special column, which is normally invisible to most queries, named SYSTEM_TIME.","breadcrumbs":"SQL Reference » Time Queries » System Time","id":"155","title":"System Time"},"156":{"body":"Endb permits time-traveling queries with the SQL:2011-compatible AS OF operator. The query will treat the DATE or TIMESTAMP supplied after AS OF as if it were that time now . SELECT * FROM products FOR SYSTEM_TIME AS OF 2023-08-25T00:00:00;","breadcrumbs":"SQL Reference » Time Queries » AS OF (Time Travel)","id":"156","title":"AS OF (Time Travel)"},"157":{"body":"Endb permits time-omniscient queries with the SQL:2011-compatible ALL operator. All states, across the entire history of the relevant tables, are visible to a query suffixed with FOR SYSTEM_TIME ALL: SELECT * FROM products FOR SYSTEM_TIME ALL;","breadcrumbs":"SQL Reference » Time Queries » ALL (Time Omniscience)","id":"157","title":"ALL (Time Omniscience)"},"158":{"body":"The syntax for time-aware BETWEEN is the same as the normal BETWEEN operator . Inspect System Time with the form FOR SYSTEM_TIME BETWEEN x AND y. SELECT * FROM products FOR SYSTEM_TIME BETWEEN 2023-08-24T00:00:00 AND 2023-08-25T00:00:00;","breadcrumbs":"SQL Reference » Time Queries » BETWEEN","id":"158","title":"BETWEEN"},"159":{"body":"Selects rows which fall between the two times, similar to BETWEEN, but is exclusive of both the start and end times. SELECT * FROM products FOR SYSTEM_TIME FROM 2023-08-24T00:00:00 TO 2023-08-30T00:00:00;","breadcrumbs":"SQL Reference » Time Queries » FROM ... TO","id":"159","title":"FROM ... TO"},"16":{"body":"It may seem strange to leave jagged columns lying around. Endb doesn't discourage you from cleaning up your data, if you can: UPDATE users SET email = 'vikram@stockholm.se' WHERE name = 'Vikram'; SELECT * from users; The difference in Endb is that we haven't \"migrated\" the old data — it's still there. If you query for Vikram's user document as of 2 minutes ago, you will see the old record without an email. Queries in Endb always default to as-of-now , which is why the results of the query above shouldn't be surprising.","breadcrumbs":"Tutorial » Endb SQL Basics » Data \"Migration\"","id":"16","title":"Data \"Migration\""},"160":{"body":"The standard SQL:2011 period predicates are available.","breadcrumbs":"SQL Reference » Time Queries » Period Predicates","id":"160","title":"Period Predicates"},"161":{"body":"Returns TRUE if the second period is contained within the first. SELECT {start: 2001-01-01, end: 2001-04-01} CONTAINS {start: 2001-02-01, end: 2001-04-01};","breadcrumbs":"SQL Reference » Time Queries » CONTAINS","id":"161","title":"CONTAINS"},"162":{"body":"Returns TRUE if any part of the first period is found within the second. SELECT {start: 2001-01-01, end: 2001-03-01} OVERLAPS {start: 2001-02-01, end: 2001-04-01};","breadcrumbs":"SQL Reference » Time Queries » OVERLAPS","id":"162","title":"OVERLAPS"},"163":{"body":"Returns TRUE if the first period ends before the second period begins. SELECT 2001-03-01 PRECEDES [2001-04-01T00:00:00Z, 2001-05-01];","breadcrumbs":"SQL Reference » Time Queries » PRECEDES","id":"163","title":"PRECEDES"},"164":{"body":"Returns TRUE if the first period begins after the second period ends. SELECT 2001-06-01 SUCCEEDS [2001-04-01T00:00:00Z, 2001-05-01];","breadcrumbs":"SQL Reference » Time Queries » SUCCEEDS","id":"164","title":"SUCCEEDS"},"165":{"body":"Returns TRUE if the first period ends exactly as the second period begins. SELECT 2001-04-01 IMMEDIATELY PRECEDES [2001-04-01T00:00:00Z, 2001-05-01];","breadcrumbs":"SQL Reference » Time Queries » IMMEDIATELY PRECEDES","id":"165","title":"IMMEDIATELY PRECEDES"},"166":{"body":"Returns TRUE if the first period begins exactly as the second period ends. SELECT 2001-05-01 IMMEDIATELY SUCCEEDS [2001-04-01T00:00:00Z, 2001-05-01];","breadcrumbs":"SQL Reference » Time Queries » IMMEDIATELY SUCCEEDS","id":"166","title":"IMMEDIATELY SUCCEEDS"},"167":{"body":"Because Endb is schemaless and semi-structured, it offers a number of powerful path-nativation primitives inspired by JSONPath , SQL/JSON , and their derivatives in legacy relational databases. You will want to familiarize yourself with Endb's nested data types (arrays and objects) before learning about path navigation. In the examples below, path examples are shown in the SELECT clause, but they are also valid in the WHERE clause.","breadcrumbs":"SQL Reference » Path Navigation » Path Navigation","id":"167","title":"Path Navigation"},"168":{"body":"If you are familiar with arrays and objects, try adding some nested objects to the table paths (the table name is arbitrary). INSERT INTO paths {a: 2, b: {a: 3}, c: [{a: 1}, 2]};","breadcrumbs":"SQL Reference » Path Navigation » Nested Objects","id":"168","title":"Nested Objects"},"169":{"body":"Navigating the root of any document (row) as a tree looks like standard SQL, because it is: SELECT a FROM paths; Similarly, however, it is possible to navigate documents listed in an array: SELECT [{a: 2}, {a: 3}, {b: 4}].a;\n-- [{'a': [2, 3]}] It is also possible to navigate fields of sub-documents (columns of nested rows) with further dot notation: SELECT b.a FROM paths;\n-- [{'a': 3}]","breadcrumbs":"SQL Reference » Path Navigation » Root Navigation","id":"169","title":"Root Navigation"},"17":{"body":"Endb eschews nested json in favour of a native, strongly-typed, document-relational model. INSERT INTO users (id, name, friends) VALUES (123, 'Anastasia', [{name: 'Heikki', country: 'Finland'},{name: 'Amit', country: 'Japan'}]); SELECT users.friends[1] FROM users WHERE id = 123; The users.friends[1] expression above is one of many path expressions inspired by JSONPath , SQL/JSON , and their derivatives in legacy relational databases. A detailed explanation of Endb's arrays and objects is provided in the SQL Reference","breadcrumbs":"Tutorial » Endb SQL Basics » Nested Data","id":"17","title":"Nested Data"},"170":{"body":"It is possible (and helpful) to create a row literal to represent rows returned, so they are easier to navigate. The format of a row literal is {
.* }: SELECT { paths.* } FROM paths; See Row Literal Data Type","breadcrumbs":"SQL Reference » Path Navigation » Row Literals","id":"170","title":"Row Literals"},"171":{"body":"The double dot (..) notation performs a \"deep scan\" by recursively walking the document to match the name given. SELECT { paths.* }..a FROM paths;\n-- [{'a': [2, 3, 1]}] SELECT b..a FROM paths;\n-- [{'a': [3]}]","breadcrumbs":"SQL Reference » Path Navigation » Recursive Paths","id":"171","title":"Recursive Paths"},"172":{"body":"The square bracket notation (['']) performs a lookup of a single descendent child. SELECT { paths.* }['b']['a'] FROM paths;\n-- [{'a': 3}] SELECT b['a'] FROM paths;\n-- [{'a': 3}] Named Children can be combined with recursive paths, though the default recursive path syntax is synonymous with named children: SELECT { paths.* }..a FROM paths;\nSELECT { paths.* }..['a'] FROM paths;\nSELECT b..['a'] FROM paths;","breadcrumbs":"SQL Reference » Path Navigation » Named Child","id":"172","title":"Named Child"},"173":{"body":"The square bracket notation ([]) can also perform indexed lookups of a single descendent child. SELECT { paths.* }['b'][0] FROM paths;\n-- [{'column1': {'a': 3}}] SELECT { paths.* }['c'][1] FROM paths;\n-- [{'column1': 2}] SELECT c[1] FROM paths;\n-- [{'column1': 2}] Numbered Children can be combined with recursive paths. This finds and returns all indexed values, counting backward: SELECT { paths.* }..[-1] FROM paths;\n-- [{'column1': [2]}]","breadcrumbs":"SQL Reference » Path Navigation » Numbered Child","id":"173","title":"Numbered Child"},"174":{"body":"The square bracket notation ([*]) can also perform a wildcard lookup of all descendent children. SELECT [{a: 2}, {a: 3}, {b: 4}, 5][*]; Wildcards can be combined with recursive paths. This finds and returns all values: SELECT { paths.* }..[*] FROM paths;\n-- [{'column1': [2, {'a': 3}, [{'a': 1}, 2], 3, {'a': 1}, 2, 1]}] SELECT c..[*] FROM paths;\n-- [{'column1': [{'a': 1}, 2, 1]}]","breadcrumbs":"SQL Reference » Path Navigation » Wildcard Child","id":"174","title":"Wildcard Child"},"175":{"body":"Path editing is accomplished with an extended path syntax, where each path begins with $. Endb's path editing functions are heavily inspired by SQLite's JSON Functions . Path editing functions add functionality ($, #) to a subset Endb's normal path navigation syntax: path editing functions do not support recursion or wildcards. Path editing functions are available to UPDATE ... SET and UPDATE ... UNSET/REMOVE .","breadcrumbs":"SQL Reference » Path Navigation » Path Functions","id":"175","title":"Path Functions"},"176":{"body":"Takes an object, a path, and a new value. The new value will overwrite existing fields or add a new field if it doesn't already exist. SELECT path_set({a: 2, c: 4}, $.c, [97,96]);\n-- {'a': 2, 'c': [97, 96]}","breadcrumbs":"SQL Reference » Path Navigation » path_set","id":"176","title":"path_set"},"177":{"body":"Takes an object, a path, and a new value. The new value is ignored if the path does not match an existing field. SELECT path_replace({a: 2, c: 4}, $.a, 99);\n-- {'a': 99, 'c': 4} SELECT path_replace({a: 2, c: 4}, $.e, 99);\n-- {'a': 2, 'c': 4}","breadcrumbs":"SQL Reference » Path Navigation » path_replace","id":"177","title":"path_replace"},"178":{"body":"Takes an object, a path, and a new value. The new value is ignored if the path matches an existing field. SELECT path_insert({a: 2, c: 4}, $.e, 99);\n-- {'a': 2, 'c': 4, 'e': 99}","breadcrumbs":"SQL Reference » Path Navigation » path_insert","id":"178","title":"path_insert"},"179":{"body":"Takes an object and a variable number of arguments specifying which paths to remove. If a path is not found, nothing is removed for that argument. # represents the last element in a collection. SELECT path_remove([0,1,2,3,4], $[#-1], $[0]);\n-- [1, 2, 3] SELECT path_remove({x: 25, y: 42}, $.y);\n-- {'x': 25}","breadcrumbs":"SQL Reference » Path Navigation » path_remove","id":"179","title":"path_remove"},"18":{"body":"Because of Endb's native document-relational model, rows are documents and vice-versa. You can use an INSERT statement to add a document directly to the database: INSERT INTO users {id: 890, name: 'Aaron', friends: [{name: 'Jeff', country: 'Canada'},{name: 'Kaia', country: 'Japan'}]};","breadcrumbs":"Tutorial » Endb SQL Basics » Documents","id":"18","title":"Documents"},"180":{"body":"Takes an object and a variable number of path arguments. Returns the value found at each path, if any, otherwise NULL. If only a single path is provided, a scalar is returned. If multiple paths are provided, an array is returned. SELECT path_extract({a: 2, c: [4, 5, {f: 7}]}, $.c[2].f);\n-- 7 SELECT path_extract({a: 2, c: [4, 5], f: 7}, $.x, $.a);\n-- [NULL, 2]","breadcrumbs":"SQL Reference » Path Navigation » path_extract","id":"180","title":"path_extract"},"181":{"body":"Endb allows introspection of its information schema. The Endb information schema does not describe the structure of each table. Because Endb is a document database, each document (row) is responsible for its own schema. The information schema is used by Endb to describe database objects at a high level and is used for schemaless queries, such as SELECT *. Note that all information schema tables are hard-coded to lower-case names and must be queried as such.","breadcrumbs":"SQL Reference » Schema » Schema","id":"181","title":"Schema"},"182":{"body":"-> SELECT * FROM information_schema.tables;\n[{'table_catalog': None, 'table_name': 'stores', 'table_schema': 'main', 'table_type': 'BASE TABLE'}, {... 'table_name': 'products', ... }, {... 'table_name': 'sales', ... }]","breadcrumbs":"SQL Reference » Schema » Tables","id":"182","title":"Tables"},"183":{"body":"-> SELECT * FROM information_schema.columns;\n[{'column_name': 'addresses', 'ordinal_position': 0, 'table_catalog': None, 'table_name': 'stores', 'table_schema': 'main'}, {'column_name': 'brand', ... }, {'column_name': 'price', ... }, ... ]","breadcrumbs":"SQL Reference » Schema » Columns","id":"183","title":"Columns"},"184":{"body":"-> SELECT * FROM information_schema.views;\n[{'table_catalog': None, 'table_name': 'sold_products', 'table_schema': 'main', 'view_definition': 'SELECT * FROM products p JOIN sales s ON p.id = s.p_id'}]","breadcrumbs":"SQL Reference » Schema » Views","id":"184","title":"Views"},"185":{"body":"The check_constraints table in Endb is used to store assertions . -> SELECT * FROM information_schema.check_constraints;\n[{'check_clause': \"(NOT EXISTS (SELECT * FROM users WHERE TYPEOF(email) != 'text'))\", 'constraint_catalog': None, 'constraint_name': 'string_email', 'constraint_schema': 'main'}]","breadcrumbs":"SQL Reference » Schema » Check Constraints","id":"185","title":"Check Constraints"},"186":{"body":"Endb provides basic view functionality to support environments which require a static schema.","breadcrumbs":"SQL Reference » Views » Views","id":"186","title":"Views"},"187":{"body":"CREATE VIEW creates a non-materialized view based on the query which follows the AS operator. Column names are listed in parentheses after the view name. CREATE VIEW simple_products(name, price) AS SELECT name, ROUND(price) FROM products; Alternatively, named columns can each immediately follow queried columns. CREATE VIEW easy_products AS SELECT name label, ROUND(price) easy_price FROM products; NOTE: To modify a view, use DROP VIEW then re-create the view with the desired columns.","breadcrumbs":"SQL Reference » Views » CREATE VIEW","id":"187","title":"CREATE VIEW"},"188":{"body":"DROP VIEW deletes a view based on its name. DROP VIEW easy_products;","breadcrumbs":"SQL Reference » Views » DROP VIEW","id":"188","title":"DROP VIEW"},"189":{"body":"","breadcrumbs":"SQL Reference » Assertions » Assertions","id":"189","title":"Assertions"},"19":{"body":"Endb will always do its best to provide you with meaningful error messages that point you to a solution: SELECT * FROM im_not_here;","breadcrumbs":"Tutorial » Endb SQL Basics » Error Messages","id":"19","title":"Error Messages"},"190":{"body":"Creates a checked, deferred assertion which executes on commit for inserts and updates. Although CREATE ASSERTION (normally) needs to refer to the table it is asserting on, that table need not exist for the assertion to be created. CREATE ASSERTION string_email CHECK (NOT EXISTS (SELECT * FROM users WHERE TYPEOF(email) != 'text'));\nINSERT INTO users {name: 'Steven', email: 123};","breadcrumbs":"SQL Reference » Assertions » CREATE ASSERTION","id":"190","title":"CREATE ASSERTION"},"191":{"body":"Removes an assertion from the database based on its name. DROP ASSERTION string_email;","breadcrumbs":"SQL Reference » Assertions » DROP ASSERTION","id":"191","title":"DROP ASSERTION"},"192":{"body":"Reference documentation exists as a detailed perspective on each feature of Endb. It does not need to be read from beginning to end. Installation Operation HTTP API Data Types","breadcrumbs":"Reference » Reference","id":"192","title":"Reference"},"193":{"body":"At this stage, Endatabas is highly experimental. We do not push images to Docker Hub often. We recommend building the local Docker image if you want a recent version. You only need one of the following options. If you followed the Quickstart, you already have the Docker Hub version installed.","breadcrumbs":"Reference » Installation » Installation","id":"193","title":"Installation"},"194":{"body":"Endb is still in early alpha. While in alpha, new versions are not guaranteed to have binary-compatible storage with previous versions. We encourage you to experiment with Endb but please do not use it in production until a General Availability release.","breadcrumbs":"Reference » Installation » Warning: Early Alpha","id":"194","title":"Warning: Early Alpha"},"195":{"body":"If you run Docker, you can use the default command below. --rm cleans up (optional), -p exposes the default endb port, and -v mounts a local volume so your data persists even if you shut down the Docker image. mkdir -p endb_data\ndocker pull endatabas/endb\ndocker run --rm -p 3803:3803 -v endb_data:/app/endb_data endatabas/endb If you run Podman, you'll need to specify the docker.io repo explicitly: mkdir -p endb_data\npodman pull docker.io/endatabas/endb\npodman run --rm -p 3803:3803 -v endb_data:/app/endb_data docker.io/endatabas/endb","breadcrumbs":"Reference » Installation » Installing from Docker Hub","id":"195","title":"Installing from Docker Hub"},"196":{"body":"If you want to run endb from the main branch, compile and build the Docker image: https://github.com/endatabas/endb/#building https://github.com/endatabas/endb/#docker","breadcrumbs":"Reference » Installation » Installing from Git: Docker","id":"196","title":"Installing from Git: Docker"},"197":{"body":"If you don't want Docker at all, you can compile and run the endb binary: https://github.com/endatabas/endb/#building ./target/endb NOTE: If you move the endb binary, be sure to copy libendb.so (Linux) or libendb.dylib (MacOS) into the same directory. This is because endb requires libendb to run.","breadcrumbs":"Reference » Installation » Installing from Git: Binary","id":"197","title":"Installing from Git: Binary"},"198":{"body":"The endb executable aims to provide self-explanatory help for direct usage of the binary. By default, endb logs to STDOUT. $ endb --help\nUsage: endb [OPTIONS] Options: -d, --data-directory [env: ENDB_DATA_DIRECTORY=] [default: endb_data] -p, --http-port [env: ENDB_HTTP_PORT=] [default: 3803] --username [env: ENDB_USERNAME=] --password [env: ENDB_PASSWORD=] -h, --help Print help -V, --version Print version","breadcrumbs":"Reference » Operation » Operation","id":"198","title":"Operation"},"199":{"body":"At this experimental stage, only raw HTTP drivers are available. Any HTTP client may be used but in the examples below, we'll use curl. You can send SQL statements to endb over HTTP: curl -d \"INSERT INTO users (name) VALUES ('Tianyu')\" -H \"Content-Type: application/sql\" -X POST http://localhost:3803/sql\ncurl -d \"SELECT * FROM users\" -H \"Content-Type: application/sql\" -X POST http://localhost:3803/sql You can send SQL to endb with standard HTTP Query Parameters, Verbs, Content Types, Accept Headers, and HTTP Basic Authentication. Each one is outlined below.","breadcrumbs":"Reference » HTTP API » HTTP API","id":"199","title":"HTTP API"},"2":{"body":"This quick tutorial intends to walk you through the core aspects of Endb. By the end, you will have endb installed and you will have used it to learn some of what it can do. Quickstart Try It! Endb SQL Basics","breadcrumbs":"Tutorial » Tutorial","id":"2","title":"Tutorial"},"20":{"body":"The SQL Reference contains details and edge cases about Endb SQL. NOTE: The Endb SQL dialect is under active development. While most major features of Endb SQL are stable, some more esoteric features (MATCH, path navigation, etc.) may experience naming and semantics changes before Endb 1.0 is released. Intention Data Manipulation Queries SQL Data Types Operators Functions Time Queries Path Navigation Schema Views Assertions","breadcrumbs":"SQL Reference » SQL Reference","id":"20","title":"SQL Reference"},"200":{"body":"The query parameters Endb's HTTP endpoint accepts are: q - (q)uery: a SQL query, optionally parameterized p - (p)arameters: named or positional parameters m - (m)ultiple statements: bulk parameters , used for bulk insert/update","breadcrumbs":"Reference » HTTP API » HTTP Query Parameters","id":"200","title":"HTTP Query Parameters"},"201":{"body":"POST allows explicit Content Types and Accept headers: curl -d 'SELECT 1' -H \"Content-Type: application/sql\" -H \"Accept: text/csv\" -X POST http://localhost:3803/sql GET allows a single, simple URL. GET does not permit DML. curl -X GET \"http://localhost:3803/sql?q=SELECT%201\"","breadcrumbs":"Reference » HTTP API » HTTP Verbs","id":"201","title":"HTTP Verbs"},"202":{"body":"The HTTP Content-Type header is used to specify what format the client is sending data to Endb.","breadcrumbs":"Reference » HTTP API » Content Types","id":"202","title":"Content Types"},"203":{"body":"curl -d '{\"q\": \"SELECT * from products;\"}' -H \"Content-Type: application/json\" -X POST http://localhost:3803/sql\ncurl -d '{\"q\": \"SELECT * from products WHERE name = ?;\", \"p\": [\"Salt\"]}' -H \"Content-Type: application/json\" -X POST http://localhost:3803/sql\ncurl -d '{\"q\": \"INSERT INTO products {name: :name};\", \"p\": {\"name\": \"Paprika\"}}' -H \"Content-Type: application/json\" -X POST http://localhost:3803/sql NOTE: To enable strongly-typed values, payloads sent with the application/json content type have values resolved with JSON-LD scalars. Standard JSON values are a subset of JSON-LD scalars, so data sent as regular JSON is unaffected by this behaviour.","breadcrumbs":"Reference » HTTP API » application/json:","id":"203","title":"application/json:"},"204":{"body":"Although values in the application/json content type are resolved using JSON-LD scalars, you can explicitly specify an application/ld+json content type to avoid all ambiguity. See JSON-LD . curl -d '{\"q\": \"INSERT INTO events {start: :start};\", \"p\": {\"start\": {\"@type\": \"xsd:dateTime\", \"@value\": \"2011-04-09T20:00:00Z\"}}}' -H \"Content-Type: application/ld+json\" -X POST http://localhost:3803/sql","breadcrumbs":"Reference » HTTP API » application/ld+json","id":"204","title":"application/ld+json"},"205":{"body":"curl -d 'SELECT 1' -H \"Content-Type: application/sql\" -X POST http://localhost:3803/sql Submit parameters to application/sql by providing form data or query parameters. Form data and query parameters can be combined, though it is not necessarily recommended. curl -F q=\"INSERT INTO sauces {name: ?, color: ?};\" -X POST http://localhost:3803/sql?p=%5B%22ketchup%22%2C%22purple%22%5D","breadcrumbs":"Reference » HTTP API » application/sql:","id":"205","title":"application/sql:"},"206":{"body":"curl -F q=\"SELECT * from products;\" -H \"Content-Type: multipart/form-data\" -X POST http://localhost:3803/sql\ncurl -F q=\"INSERT INTO products {name: ?};\" -F p='[\"Sriracha\"]' -X POST http://localhost:3803/sql NOTE: Many HTTP clients (including curl) automatically assume a content type of multipart/form-data when form fields are provided. This is true for curl when the -F (--form) argument is used and it has been elided from further examples.","breadcrumbs":"Reference » HTTP API » multipart/form-data","id":"206","title":"multipart/form-data"},"207":{"body":"Although the other content types are preferable for obvious reasons, application/x-www-form-urlencoded is offered for completeness. curl -d 'q=SELECT%20*%20FROM%20products;' -H \"Content-Type: application/x-www-form-urlencoded\" -X POST http://localhost:3803/sql","breadcrumbs":"Reference » HTTP API » application/x-www-form-urlencoded","id":"207","title":"application/x-www-form-urlencoded"},"208":{"body":"The HTTP Accept header is used to specify how data is returned to the Endb client. The default Accept header content type is application/json.","breadcrumbs":"Reference » HTTP API » Accept Headers","id":"208","title":"Accept Headers"},"209":{"body":"text/csv returns comma-separated rows. Column order from the SELECT clause is maintained. curl -d \"SELECT * FROM (VALUES (1,'hello'), (2,'csv')) t1\" -H \"Content-Type: application/sql\" -H \"Accept: text/csv\" -X POST http://localhost:3803/sql returns: \"column1\",\"column2\"\n2,\"csv\"\n1,\"hello\"","breadcrumbs":"Reference » HTTP API » text/csv","id":"209","title":"text/csv"},"21":{"body":"The goal of Endb's SQL dialect is to be small, coherent, and powerful. The SQL specification is massive, with pages ordering in the thousands. Rather than implement the entire SQL specification from scratch (a gargantuan task) or mimic the SQL dialect of another database, Endb chooses a tiny core and builds powerful, composable features on top of that. This tiny core draws inspiration from many sources, but SQLite in particular. If SQLite supports a particular operator or function, Endb SQL also tries to. Endb SQL also draws strong inspiration from the SQL specification itself (and its predecessors ) and from PostgreSQL . Endb SQL's nested data is also heavily inspired by JSONPath , SQL/JSON , and their derivatives found in major SQL databases. Light inspiration is drawn from PartiQL , SQL++ , and XQuery . For more information on Endb's influences, please see our bibliography .","breadcrumbs":"SQL Reference » Intention » Intention","id":"21","title":"Intention"},"210":{"body":"application/json returns rows as an array of JSON tuples. Column order from the SELECT clause is maintained. curl -d \"SELECT * FROM (VALUES (1,'hello'), (2,DATE('2023-07-22'))) t1\" -H \"Content-Type: application/sql\" -H \"Accept: application/json\" -X POST http://localhost:3803/sql returns: [[2,\"2023-07-22\"],[1,\"hello\"]]","breadcrumbs":"Reference » HTTP API » application/json","id":"210","title":"application/json"},"211":{"body":"application/x-ndjson returns newline-delimited JSON documents. Column order from the SELECT clause is not maintained. JSON documents cannot guarantee column order. curl -d \"SELECT * FROM (VALUES (1,'hello'), (2,DATE('2023-07-22'))) t1\" -H \"Content-Type: application/sql\" -H \"Accept: application/x-ndjson\" -X POST http://localhost:3803/sql returns: {\"column1\":2,\"column2\":\"2023-07-22\"}\n{\"column1\":1,\"column2\":\"hello\"}","breadcrumbs":"Reference » HTTP API » application/x-ndjson","id":"211","title":"application/x-ndjson"},"212":{"body":"application/ld+json returns documents of strongly-typed (\"Linking Data\") JSON records. Column order from the SELECT clause is not maintained. JSON documents cannot guarantee column order. curl -d \"SELECT * FROM (VALUES (1,'hello'), (2,DATE('2023-07-22'))) t1\" -H \"Content-Type: application/sql\" -H \"Accept: application/ld+json\" -X POST http://localhost:3803/sql returns: {\"@context\":{\"xsd\":\"http://www.w3.org/2001/XMLSchema#\",\"@vocab\":\"http://endb.io/\"},\"@graph\":[{\"column1\":2,\"column2\":{\"@value\":\"2023-07-22\",\"@type\":\"xsd:date\"}},{\"column1\":1,\"column2\":\"hello\"}]} See JSON-LD .","breadcrumbs":"Reference » HTTP API » application/ld+json","id":"212","title":"application/ld+json"},"213":{"body":"application/vnd.apache.arrow.file returns columnar data as an Apache Arrow file. curl -d \"SELECT * FROM (VALUES (1,'hello'), (2,DATE('2023-07-22'))) t1\" -H \"Content-Type: application/sql\" -H \"Accept: application/vnd.apache.arrow.file\" -X POST http://localhost:3803/sql --output hello.arrow The above command returns a file containing a single RecordBatch in an Apache Arrow file in IPC format. You can examine the file with functions like pyarrow.ipc.open_file , as seen in this gist .","breadcrumbs":"Reference » HTTP API » application/vnd.apache.arrow.file","id":"213","title":"application/vnd.apache.arrow.file"},"214":{"body":"application/vnd.apache.arrow.stream returns columnar data as an Apache Arrow stream. curl -d \"SELECT * FROM (VALUES (1,'hello'), (2,DATE('2023-07-22'))) t1\" -H \"Content-Type: application/sql\" -H \"Accept: application/vnd.apache.arrow.stream\" -X POST http://localhost:3803/sql --output streamed.arrow The above command returns a file containing an Apache Arrow IPC stream. You can examine the file with functions like pyarrow.ipc.open_stream , as seen in this gist .","breadcrumbs":"Reference » HTTP API » application/vnd.apache.arrow.stream","id":"214","title":"application/vnd.apache.arrow.stream"},"215":{"body":"Endb supports HTTP Basic Authentication as defined by RFC 7235 . Pass --username and --password arguments to the endb binary to force basic authentication for HTTP connections. ./target/endb --username zig --password zag Then, from any HTTP client, provide the username and password combination to execute queries. curl --user zig:zag -d \"SELECT 'Hello World';\" -H \"Content-Type: application/sql\" -X POST http://localhost:3803/sql If the client passes an incorrect username or password, it will receive a 401 Authorization Required HTTP status code as a result, but no body. Be aware of this to ensure client code is written to detect 401 status codes. $ curl -i --user zig:wrong -d \"SELECT 'Hello World';\" -H \"Content-Type: application/sql\" -X POST http://localhost:3803/sql\nHTTP/1.1 401 Authorization Required","breadcrumbs":"Reference » HTTP API » HTTP Basic Authentication","id":"215","title":"HTTP Basic Authentication"},"216":{"body":"SQL parameters are available to: application/json and application/ld+json as part of the POST body multipart/form-data as form data application/x-www-form-urlencoded as URL query parameters application/sql as form data and/or URL query parameters Parameters can be JSON literals, JSON-LD scalars, or SQL literals. A JSON-LD scalar always has the form: {\"@type\": \"xsd:TYPE\", \"@value\": \"DATA\"}. JSON-LD types are listed under the Data Types table.","breadcrumbs":"Reference » HTTP API » Parameters","id":"216","title":"Parameters"},"217":{"body":"Named parameters substitute parameter placeholders with the form :param by the parameter key with the corresponding name. Named parameters are represented as a JSON object. curl -d '{\"q\": \"INSERT INTO products {name: :name, price: :price};\", \"p\": {\"name\": \"Paprika\", \"price\": 2.99}}' -H \"Content-Type: application/json\" -X POST http://localhost:3803/sql\ncurl -d '{\"q\": \"INSERT INTO events {start: :start};\", \"p\": {\"start\": {\"@type\": \"xsd:dateTime\", \"@value\": \"2011-04-09T20:00:00Z\"}}}' -H \"Content-Type: application/ld+json\" -X POST http://localhost:3803/sql\ncurl -F q=\"INSERT INTO products {name: :sauce};\" -F p='{\"sauce\": \"Sriracha\"}' -X POST http://localhost:3803/sql","breadcrumbs":"Reference » HTTP API » Named Parameters","id":"217","title":"Named Parameters"},"218":{"body":"Positional parameters substitute parameter placeholders with the form ? by the parameter values, in the order they appear. Positional parameters are respresented as a JSON array. curl -d '{\"q\": \"SELECT * from products WHERE name = ? AND price > ?;\", \"p\": [\"Salt\", 3.99]}' -H \"Content-Type: application/json\" -X POST http://localhost:3803/sql\ncurl -d '{\"q\": \"INSERT INTO events {start: ?};\", \"p\": [{\"@type\": \"xsd:dateTime\", \"@value\": \"2011-04-09T20:00:00Z\"}]}' -H \"Content-Type: application/ld+json\" -X POST http://localhost:3803/sql\ncurl -F q=\"INSERT INTO products {name: ?};\" -F p='[\"Sriracha\"]' -X POST http://localhost:3803/sql","breadcrumbs":"Reference » HTTP API » Positional Parameters","id":"218","title":"Positional Parameters"},"219":{"body":"Bulk operations are possible by setting the m flag to true. Bulk operations are available to both named and positional parameters. The list of parameters supplied in bulk must be nested in an array. curl -d '{\"q\": \"INSERT INTO products {name: :name};\", \"p\": [{\"name\": \"Soda\"}, {\"name\": \"Tonic\"}], \"m\": true}' -H \"Content-Type: application/json\" -X POST http://localhost:3803/sql\ncurl -F q=\"INSERT INTO sauces {name: ?, color: ?};\" -F p='[[\"Mustard\", \"Yellow\"], [\"Ketchup\", \"Red\"]]' -F m=true -X POST http://localhost:3803/sql","breadcrumbs":"Reference » HTTP API » Bulk Parameters","id":"219","title":"Bulk Parameters"},"22":{"body":"Creating, updating, and deleting data in Endb is done using standard SQL Data Manipulation Language (DML). Endb is also immutable and schemaless, so it contains a number of shorthands and document-oriented conveniences. Endb does not require any Data Definition Language (DDL), such as CREATE TABLE.","breadcrumbs":"SQL Reference » Data Manipulation » Data Manipulation","id":"22","title":"Data Manipulation"},"220":{"body":"As it is possible to receive Apache Arrow data from an Endb query, it is possible to submit Apache Arrow as a statement parameter. The example below assumes the existence of a a table called names, which only contains one column (name). Apache Arrow Streams can also be used as parameters in the same way. # create a sample Arrow file:\ncurl -d \"SELECT * FROM names;\" -H \"Content-Type: application/sql\" -H \"Accept: application/vnd.apache.arrow.file\" -X POST http://localhost:3803/sql --output names.arrow\n# use the sample Arrow file:\ncurl -F m=true -F q=\"INSERT INTO projects {name: :name};\" -F \"p=@names.arrow;type=application/vnd.apache.arrow.file\" -X POST http://localhost:3803/sql NOTE: This feature should be used with caution. Do not submit arbitrary Arrow files as parameters. If a malformed Arrow file is submitted, the error message returned (if any) is unlikely to provide guidance. Preferably, Arrow files should be created using Endb itself, as in the example above. Most users will prefer to use a human-readable file format instead, such as a JSON variant or static SQL statements.","breadcrumbs":"Reference » HTTP API » Apache Arrow File Parameters","id":"220","title":"Apache Arrow File Parameters"},"221":{"body":"Bulk inserts are possible by combining the tools mentioned under Parameters . For example, the OBJECTS keyword can insert an array of object literals. Note that each object used as a positional parameter must be wrapped in a JSON array, since there may be more than one positional parameter supplied. Similarly, each named parameter must be wrapped in an object containing a key of the corresponding name. curl -F m=true -F q=\"INSERT INTO products OBJECTS ?\" -F p=\"[[{name: 'jam'}], [{name: 'butter'}]]\" -X POST http://localhost:3803/sql\ncurl -F m=true -F q=\"INSERT INTO products OBJECTS :product\" -F p=\"[{product: {name: 'jelly'}}, {product: {name: 'ghee'}}]\" -X POST http://localhost:3803/sql","breadcrumbs":"Reference » HTTP API » Bulk Insert","id":"221","title":"Bulk Insert"},"222":{"body":"It is possible to pass multiple SQL statements to Endb by delimiting them with semicolons. Parameters will be passed to all statements in order. Only the result of the last statement is returned to the client. In the following example, the INSERT will be successful but will not return a result. The SELECT will return to the client. curl --form-string q=\"INSERT INTO sauces {name: ?, color: ?}; SELECT {namo: ?, colour: ?};\" -F p='[\"Mustard\", \"Yellow\", \"Ketchup\", \"Red\"]' -X POST http://localhost:3803/sql NOTE: --form-string is required instead of --form to send semicolon-delimited statements with curl.","breadcrumbs":"Reference » HTTP API » Multiple Statements","id":"222","title":"Multiple Statements"},"223":{"body":"","breadcrumbs":"Reference » Data Types » Data Types","id":"223","title":"Data Types"},"224":{"body":"Endb supports the following native scalar types for now. JSON-LD values with a type of @json will be returned from Endb as JSON literals, verbatim. The @type listed in parentheses is for reference purposes only. JSON literal types are implicit so a @value/@type pair is not returned for a JSON literal. SQL JSON-LD Example Literal Description NULL @json null Null, nil, undefined, or missing TEXT @json (xsd:string) \"hello\" UTF-8 string BOOLEAN @json (xsd:boolean) FALSE 8-bit boolean INTEGER @json (xsd:int[eger]) 42 64/128-bit two's complement integer REAL @json (xsd:double) 9007199254740992.123 64-bit IEEE 754 floating point number TIMESTAMP xsd:dateTime 2007-01-01T00:00:00 ISO microsecond precision timestamp DATE xsd:date 2007-01-01 ISO date TIME xsd:time 23:30:00 ISO time INTERVAL xsd:duration PT12H34M56.789S ISO interval BLOB xsd:base64Binary x'DEADBEEF' Binary large object SQL Data Types are covered in detail in the SQL Reference.","breadcrumbs":"Reference » Data Types » Scalars","id":"224","title":"Scalars"},"225":{"body":"SQL JSON-LD Example Literal Description ARRAY @json [\"Joe\", \"Dan\", \"Dwayne\"] Zero-based array OBJECT @json {n: 3, b: 2023-01-01} Object, map, dict, document","breadcrumbs":"Reference » Data Types » Collections","id":"225","title":"Collections"},"226":{"body":"SQL JSON-LD Description DECIMAL xsd:decimal Arbitrary precision decimal. Use 2 BIGINTs or VARCHAR URI xsd:anyURI Unsupported. Use VARCHAR UUID @json (xsd:string) Unsupported. Use VARCHAR or BLOB If you strongly feel you need a native representation of one of these types, email us: hello@endatabas.com","breadcrumbs":"Reference » Data Types » Unsupported Scalar Types","id":"226","title":"Unsupported Scalar Types"},"227":{"body":"What? Why? Architecture Roadmap License","breadcrumbs":"Appendix » Appendix","id":"227","title":"Appendix"},"228":{"body":"From the outside, Endatabas (or Endb ) is an open source SQL document database with full history. On the inside, this means all records in Endatabas are immutable. An ERASE statement is provided for compliance with laws and policies like GDPR. Time-travel is possible, but queries default to \"as-of-now\". (Which is the thing you want 97% of the time.) Rows are \"schema-last\" documents and joins can be arbitrary, but queries are written in SQL. Endb stores data in Apache Arrow: scalars are strongly typed, the on-disk format is columnar, and the execution engine understands rows and columns. Endb separates storage from compute to provide unlimited disk space. In Swedish, Endatabas means both \"a database\" and \" one database\". This One Database Dream is twofold: Endb hopes to provide HTAP , so a secondary analytics database is not required for most users. Endb plans to use AI ( adaptive indexing ) to provide fast OLTP and OLAP queries on cheap, elastic infrastructure.","breadcrumbs":"Appendix » What? » What is Endatabas?","id":"228","title":"What is Endatabas?"},"229":{"body":"After years of market research, the complaint of database users is universal: \"I want to stop babysitting the database.\" This can mean many things but they're all expensive and complex. The database equivalent of Greenspun's 10th Rule might be \"any sufficiently complicated backend system contains an ad-hoc, informally-specified, bug-ridden, slow implementation of half a database.\" This was true for much of the work we did in the 2010s and 2020s. \"Babysitting\" is sometimes the energy wasted by repeatedly building and maintaining ad-hoc databases for ourselves instead of building tools for customers. Buying data products also requires babysitting. DBAs babysit Oracle indexes. Developers babysit Postgres query optimizations. Data engineers babysit ETL pipelines. Analysts baybsit Redshift history. SREs babysit Aurora costs. Endb can't solve all these problems, but it attempts to be a jack-of-all-trades database that solves as many as it can — for as many people as it can.","breadcrumbs":"Appendix » What? » Who wants One Database?","id":"229","title":"Who wants One Database?"},"23":{"body":"To create a new document, you can use the standard SQL INSERT command. INSERT INTO products (product_no, name, price) VALUES (1, 'Tofu', 7.99); To create multiple new documents at once, delimit their value lists with commas: INSERT INTO products (product_no, name, price) VALUES (1, 'Butter', 5.99), (2, 'Margarine', 4.99); It is also possible to insert a document directly using an OBJECT literal . INSERT INTO products {product_no: 3, name: 'Tea', price: 3.99}; To insert multiple documents directly, delimit documents with commas: INSERT INTO products {name: 'Coffee', price: 3.99}, {name: 'Croissant', price: 2.99}; It is possible to insert the results of a query: INSERT INTO cheap_products SELECT * FROM products WHERE price < 4.00;","breadcrumbs":"SQL Reference » Data Manipulation » INSERT","id":"23","title":"INSERT"},"230":{"body":"After years of Computer Science research, it's also clear a sea change in database tech is due... right about now. (Give or take ten years. Our timing may be off.) Hellerstein and Stonebraker's What Goes Around Comes Around remains true, decade after decade, since it was published in 2004. As always, the relational data model is still king and SQL is still the lingua franca of databases. Together, they assimilate new rivals every decade or so. Endatabas tries to stand right at the center of this upcoming collapse of the data toolchain. If we, as an industry, can drop a decade's vestigial growth in favour of a tighter, simpler solution? Wonderful. But what if we could shed a half-century's vestiges? Perhaps event streams, relations, documents, graphs, temporal data, ETL and CDC can all live under one roof for many businesses. Let's see. We're not sure if we can make this work. But it's exciting to try. — One Database: Clean. Simple. Less. (Read more in Why Endatabas? )","breadcrumbs":"Appendix » What? » When is One Database possible?","id":"230","title":"When is One Database possible?"},"231":{"body":"(Read more in What is Endatabas? ) Why did we build Endatabas (aka Endb) at all? Isn't one of the many ( many ) existing databases good enough? Many incumbent databases serve their use cases and markets well. But the demands placed on databases are growing rapidly. These demands pull in multiple directions, all at once, and existing technology cannot support them without introducing enormous complexity. Metamorphosis is required. Endb takes good ideas and makes them easier to access, while reducing operational headache. It does not try to be flashy or unnecessarily revolutionary. Instead, it tries to be simple and familiar on the surface while providing a lot of new power under the covers. Let's talk about what that means in clear, concrete terms.","breadcrumbs":"Appendix » Why? » Why Endatabas?","id":"231","title":"Why Endatabas?"},"232":{"body":"The tagline \"SQL Document Database With Full History\" says a lot, but it doesn't say everything. Endatabas is, first and foremost, an immutable database . That's the Full History part. But storing all your data, forever, has clear implications. We consider these implications to be the pillars of Endatabas. In 3D geometry, the legs of a tripod are mutually supportive; as long as all three feet are in contact with the ground, the tripod will not wobble or collapse. So it is with the pillars. Each supports and implies the others. The pillars are as follows: Full History (requires: immutable data and erasure) Timeline (requires: time-traveling queries) Separation of Storage from Compute (requires: light and adaptive indexing) Documents (requires: schemaless tables, \"schema-per-row\", arbitrary joins) Analytics (requires: columnar storage and access) At the top of this five-dimensional structure is SQL, the lingua franca of database queries. We believe it is the right time to integrate these ideas. But first let's go back a few decades to see how we got here.","breadcrumbs":"Appendix » Why? » What is Endatabas, anyway?","id":"232","title":"What is Endatabas, anyway?"},"233":{"body":"None of the ideas in Endatabas are new. George Copeland's What if mass storage were free? asked, back in 1980, what an immutable database might look like. His prescient vision for a database with full history enjoys the clarity of a researcher at the beginning of the database era. People have occasionally asked of Endatabas, \"why bother retaining all history?\" But this is the wrong question. The real question is: \"why bother destroying data?\" Copeland's answers, \"The deletion concept was invented to reuse expensive computer storage.\" The software industry has grown so accustomed to the arbitrary deletion of historical data that we now take destroying data for granted. Mass storage is not free yet — but it is cheap. Copeland himself addresses \"a more realistic argument: if the cost of mass storage were low enough, then deletion would become undesirable.\" Any system that exploits the separation of storage and compute can enjoy these low costs. An immutable dataset and a timeline of changing states are two sides of the same coin. Previous states carry the innate property of time (whether defined by familiar wall clocks or versions or logical clocks). Jensen and Snodgrass have thoroughly researched time-related database queries. Much of their work was published in the 1990s and early 2000s. Storing time, querying across time, time as a value ... these challenging subjects eventually grew to form SQL:2011 . Most SQL databases have struggled to implement SQL:2011. Incorporating time as a core concept in mutable databases (those which support destructive updates and deletes) amplifies existing complexity. Time should simplify the database, not complicate it. Document databases have a more convoluted story. Attempts at \"schemaless\", semi-structured, document, and object databases stretch from Smalltalk in the 1980s to C++ in the 1990s to Java and graphs in the 2000s to JSON in the 2010s . Despite all this, the most successful semi-structured document store, as of 2023, is a Postgres database with JSON columns. Database users desire flexible storage and querying — but yesterday's weather says they desire SQL more. Can't we have both? SQL has four identities, four histories. There is an SQL of academia, born of Codd's relational algebra (1970) and Chamberlin/Boyce SEQUEL (1974) , grown over decades with research like Snodgrass/Jensen's TSQL2. Then there is the SQL of industry, the many-tentacled leviathan of IBM, Oracle, and Microsoft: the SQL sold to businesses and governments, ceaselessly bifurcated into new dialects with each version and implementation. Between these two rests the SQL of the ISO specification — unified across 11 published standards, from SQL-86 to SQL:2023, spanning thousands of pages, adhered to by no single database. [1] Last, there is colloquial SQL, the language one refers to by the question, \"do you know SQL?\" These four threads are intertwined across four decades, making it very difficult to clearly define what is meant by \"SQL\", even in very narrow contexts. Colloquial SQL is of greatest interest to us. This is the ubiquitous query language any new database must implement to succeed. Khoshafian and Copeland introduced the Decomposition Storage Model (DSM) in 1985. The four decades that followed saw any number of approaches to data analytics. Most of the time, however, these demanded expensive data acrobatics: data was piped, streamed, dumped, and copied into denormalized cubes and time-series databases. As humanity grew out of the batch processing of the 1980s into the always-online society of the 2020s, analytics data became another form of operational data and this pipeline was looped back to users and customers. Hybrid Transactional/Analytical Processing (HTAP) promises a simpler, natural successor to OLTP and OLAP systems. For many businesses, the transactional/analytical divide is as arbitrary as destroying data with every state change. Humanity will arbitrarily destroy data in 2026 because hard disks were expensive in 1986. Similarly, we will wastefully query data with multiple systems in 2026 because CPUs were slow in 1986.","breadcrumbs":"Appendix » Why? » History","id":"233","title":"History"},"234":{"body":"When you approach Endb from a distance, you won't see the pillars at first. You'll see the structure they support. This structure also binds the pillars together. The query language of a database is its glue. It is the user interface. It defines the user experience. It is at once a programming language, a dialogue, an envelope, a protocol. But a query engine is not divorced from its query language, and so the language choice also informs system design and behaviour. There are mundane reasons for choosing SQL. If asked \"do you know SQL?\" there's a high probability the answer is \"yes.\" SQL is the language of data science and third-party tools. If any sufficiently successful database has to provide SQL access anyway, one may as well start there. But this is not why we chose SQL. We believe SQL can be beautiful. As mentioned in History , we are primarily concerned with colloquial SQL. The other threads of SQL are relevant but Endb will never implement the entire SQL specification. Instead, the Endb SQL dialect unifies the pillars under one strongly-dynamically-typed umbrella, a variation of the SQLite dialect. SQLite's applications are quite different from those of Endatabas, so Endb SQL is not weakly-typed and Endb types are not a free-for-all. Instead, Endb internally adopts types from Apache Arrow , which it uses as a storage medium. When considering alternatives, there are no direct contenders. Cypher, Datalog, MongoDB query documents, and other schemaless query languages work well for one database implementation but lack both mindshare and standards. PartiQL, SQL++, and other NewSQL languages that depart from SQL suffer precisely because they are almost SQL. One can fantasize about designing a query language from scratch but it's very easy to get wrong and takes decades to build mindshare. SQL has been through this decades-long gauntlet. Just as PL/SQL and T-SQL differ, so will Endb SQL from other dialects. However, colloquial SQL is comparable to colloquial Hindi — at higher levels, it bifurcates into Urdu and Sanskrit but speakers of both lineages understand one another. Endb SQL will be familiar to users of other SQL dialects. With its long, rich history SQL not only has the necessary theoretical underpinnings but the battle scars of technology that lasts. It sits alongside POSIX, TCP/IP, LISP, C, and the QWERTY keyboard layout. It will see its centenary.","breadcrumbs":"Appendix » Why? » Why SQL?","id":"234","title":"Why SQL?"},"235":{"body":"Even if we ignore Copeland's dream of mass storage from 1980, it is easy to see why destroying data is harmful. To destroy data is to destroy facts — to lie about the truth of what happened. Few modern systems permit the total destruction of data for this obvious reason. Some choose to create audit tables: users_audits, sales_audits, and so on. Some choose to log anything and everything. \"It's on disk somewhere.\" It's not uncommon for companies to extract metrics from logs to create invoices and reports, turning a log file into a bespoke immutable database. Industries which take their data very seriously (banking, healthcare) already store immutable records. They just do so in a mutable database. Append-only tables are not new, but they're an order of magnitude easier to work with — for both users and operators — if the database is append-only from the ground up. These same industries will resist the destruction of data unless absolutely necessary, but they will bend to necessity. Erasure is concomitant with immutability — we cannot have one without the other. The existing designs of databases create serious problems for privacy. DELETE, when overloaded to mean both \"save disk space\" and \"explicitly remove this data\", becomes opaque. It does not leave any queryable record of the deletion. Removing data should keep tombstones so it's at least known that some data was removed.","breadcrumbs":"Appendix » Why? » Why Full History?","id":"235","title":"Why Full History?"},"236":{"body":"Keeping your data's entire history is the write-side of the equation. If you didn't care about getting this data back, you could just dump it into an unintelligible pile. But you not only want your data back, you want to query it in the easiest way possible. One very sensible way to see and query immutable data is along a timeline. Endb makes no assumptions about your desire to participate in this timeline. By default, everything is visible as-of-now but querying the past should feel effortless. -- without time travel:\nSELECT * FROM products;\n-- time travel to 2020:\nSELECT * FROM products FOR SYSTEM_TIME AS OF 2020-08-25T00:00:00;","breadcrumbs":"Appendix » Why? » Why a timeline?","id":"236","title":"Why a timeline?"},"237":{"body":"Separating storage from compute is an implementation detail. AWS customers don't choose Amazon Aurora because they're craving this separation. Decoupling storage from compute makes scale (both up and down) trivial. It also introduces the possibility of \"reducing network traffic, ... fast crash recovery, failovers to replicas without loss of data, and fault-tolerant, self-healing storage.\" This decoupling is concomitant with Light and Adaptive Indexing . It is undesirable to manually construct expensive indexes for unknown future schemas over (effectively) infinite data. Instead, we should let machine learning handle this job.","breadcrumbs":"Appendix » Why? » Why Separation of Storage and Compute?","id":"237","title":"Why Separation of Storage and Compute?"},"238":{"body":"It can be argued that \"why documents?\" is really multiple questions: why schemaless? why nested data? why dynamic SQL? First, the challenges. It is extremely difficult to force global schema onto every row in a table in an immutable world. Even if there were a simple mechanism in SQL to alter table schema only for certain durations (there isn't), the database user would still be burdened with querying based on a particular schema at a particular time in the history of the table. This complexity is compounded by the fact that static schemas have less and less meaning in a temporal world. Endb introduces SQL:2011 time-travel and period predicates . The difficulty, mentioned earlier, that other databases encounter when introducing SQL:2011 is twofold: dealing with \"time\" in a world where history can be violently rewritten and managing an unbending schema across time. Nested data is equally unnatural in incumbent databases. SQL:99, SQL:2016, SQL:2023 all offer some way of shoehorning nested data into flat tables. DynamoDB, Couchbase, and MongoDB are the most common document databases but they don't speak SQL. [2] Not only will no one ever decompose relational data into 6NF, it is unlikely we'll ever see a return to the classic BCNF of business entity-relationship diagrams. Nested data is here to stay. Foreign, embedded JSON (or XML) is little more than a band-aid. Nested data should be native to SQL queries. Second, the joys. Schema-per-row can be incredibly liberating. Not only does this feel more natural, it embraces the messy truth of the real world. Schema-on-write can be added later, when the business is ready to lock down what it knows about a domain. But many use cases demand flexible schemas. What if this week's project requires downloading huge amounts of semi-structured JSON pricing data from the APIs of competing online stores to compare them? Endb can handle this case out of the box. Most databases would require a great deal of manipulation first. Dynamic SQL is required to support schemaless, nested data — but it also brings its own joys. When dynamic SQL rests on top of a flexible data model which can ingest any data, it is capable of exploring nested data and easily constructing arbitrary joins users could normally only construct in a graph database.","breadcrumbs":"Appendix » Why? » Why documents?","id":"238","title":"Why documents?"},"239":{"body":"It is often the job of analytics databases to record and query all the data of a business, denormalized for speed. There will always be analytical jobs which require data to be transformed. But many businesses already allow data scientists, analysts, and even CEOs read-only access to an OLTP replica. HTAP is right on the horizon . Endb hopes to participate in that evolution by making all business data accessible to easy-to-produce, cheap, ephemeral read replicas.","breadcrumbs":"Appendix » Why? » Why \"One Database\"?","id":"239","title":"Why \"One Database\"?"},"24":{"body":"To update an existing row, you can use the standard SQL UPDATE command: UPDATE products SET price = 4.99 WHERE name = 'Coffee'; Set multiple columns by separating them with commads; UPDATE products SET price = 4.99, name = 'Kaapi' WHERE name = 'Coffee'; Because Endb is schemaless, each document (or row) has its own schema. As a result, you may want to remove a column from an individual row. You can do this with the UNSET operator: UPDATE products UNSET product_no WHERE name = 'Coffee';\nUPDATE products REMOVE product_no WHERE name = 'Coffee'; REMOVE is an alias for UNSET. It is possible to set and unset values in a single update. Unsetting a column which doesn't exist is not an error: UPDATE products SET price = 5.98 UNSET product_no WHERE name = 'Coffee';","breadcrumbs":"SQL Reference » Data Manipulation » UPDATE","id":"24","title":"UPDATE"},"240":{"body":"We cannot reconcile building and selling a product we would never buy ourselves.","breadcrumbs":"Appendix » Why? » Why Commercial Open Source?","id":"240","title":"Why Commercial Open Source?"},"241":{"body":"All of the pillars outlined above have their own strike-when-the-iron-is-hot moment. The SQLite we know today began to materialize in 2001. Amazon S3 was launched in 2006. MongoDB was first released in 2007. Immutable data and functional programming reached the mainstream in the 2010s. Datomic (arguably the first immutable OLTP database) was release in 2012. Amazon Aurora was released in 2015 and Google's AlloyDB in 2022. Apache Arrow saw its first release in 2016. Over the past decade, many financial firms built their own in-house temporal databases. SQL:2011, SQL:2016, and SQL:2023 were ratified in their respective eponymous years. HTAP hasn't quite happened yet. AI-driven indexes haven't quite happened yet. The moment for something like Endatabas is now... but it is a very long moment. Endatabas cannot be built in a Postgres-compatible fashion. Technically, it would be prohibitively expensive to build Endatabas from existing components. It's time for something new. The complete SQL specification is very difficult to implement in full, though Mimer likely comes closest to this goal . There is XQuery, of course. But most businesses today do not build their nested data storage on XQuery.","breadcrumbs":"Appendix » Why? » Why Now?","id":"241","title":"Why Now?"},"242":{"body":"","breadcrumbs":"Appendix » Architecture » Architecture","id":"242","title":"Architecture"},"243":{"body":"All records in Endatabas are immutable. Historical data is not lost when an UPDATE or DELETE statement is executed. You can think of endb as one giant log of transactions with fast queries made possible by adaptive indexing .","breadcrumbs":"Appendix » Architecture » Immutable","id":"243","title":"Immutable"},"244":{"body":"The only time data in Endatabas is truly deleted is with the ERASE statement. This is used for user safety and compliance with laws like GDPR.","breadcrumbs":"Appendix » Architecture » Erasure","id":"244","title":"Erasure"},"245":{"body":"Both the heart and \"UI\" of Endatabas is a dynamic SQL engine which natively understands strongly-typed, semi-structured rows (documents). Here is an example to illustrate what that means: INSERT INTO stores {brand: \"Alonzo's Analog Synthesizers\", addresses: [{city: \"New Jersey\", country: \"United States\", opened: 1929-09-01}, {city: \"Göttingen\", country: \"Germany\", opened: 1928-09-01}]}; -- recursive query of ISO dates from the nested document:\nSELECT addresses..opened FROM stores; Endb SQL bases its core SQL dialect on SQLite. It also draws inspiration from SQL:99, SQL:2011, SQL:2016, and SQL:2023. Read more in our bibliography .","breadcrumbs":"Appendix » Architecture » Dynamic SQL","id":"245","title":"Dynamic SQL"},"246":{"body":"Endatabas stores and processes data as columns. Endb's columnar storage is built on Apache Arrow . Endb SQL allows users to retrieve data as documents. The ultimate goal is for Endatabas to serve many (hybrid) purposes: day-to-day transactions and analytical jobs.","breadcrumbs":"Appendix » Architecture » Columnar: Hybrid Transactional Analytic Processing (HTAP)","id":"246","title":"Columnar: Hybrid Transactional Analytic Processing (HTAP)"},"247":{"body":"Queries are compiled to Common Lisp and use hash joins. Join ordering is done heuristically, by base table size. Correlated queries are memoized by building indexes in-memory during query execution.","breadcrumbs":"Appendix » Architecture » Query Execution","id":"247","title":"Query Execution"},"248":{"body":"More detailed information about the future of Endb can be found in the roadmap .","breadcrumbs":"Appendix » Architecture » Future","id":"248","title":"Future"},"249":{"body":"Endb does not yet support columnar data returned directly to the user.","breadcrumbs":"Appendix » Architecture » Columnar (OLAP) result sets","id":"249","title":"Columnar (OLAP) result sets"},"25":{"body":"Endb provides a PATCH operator, similar to the PATCH function . The PATCH operator is used in conjunction with UPDATE to set fields on a document (columns on a row) in a declarative fashion. UPDATE products PATCH {price: 1.98, product_no: products.product_no + 1000} WHERE price = 2.00; PATCH is based on RFC 7386: JSON Merge Patch .","breadcrumbs":"SQL Reference » Data Manipulation » UPDATE PATCH","id":"25","title":"UPDATE PATCH"},"250":{"body":"If you're not sure what this is, think Amazon Aurora, Google AlloyDB, and Neon. Compute nodes are the classic database (Postgres, MongoDB, etc.) — in an immutable world, these are just caches. Storage is elastic object or blob storage (S3, Azure Blobs, etc.). Endatabas is built to live in the clouds, alongside infinite disk. Although the groundwork for separating storage from compute exists in Endb today, elastic storage backends are not yet implemented.","breadcrumbs":"Appendix » Architecture » Cloud: Separation of Storage from Compute","id":"250","title":"Cloud: Separation of Storage from Compute"},"251":{"body":"For more information on light and adaptive indexing, you can watch Håkan's talk from 2022: \"Light and Adaptive Indexing for Immutable Databases\" Endb does not yet support adaptive indexing.","breadcrumbs":"Appendix » Architecture » Adaptive Indexing","id":"251","title":"Adaptive Indexing"},"252":{"body":"In the near-term (Q3 2023), we expect to solidify the Endatabas SQL dialect so early users can get a taste of what it feels like to use it. You can read our high-level roadmap on GitHub .","breadcrumbs":"Appendix » Roadmap » Roadmap","id":"252","title":"Roadmap"},"253":{"body":"All Endatabas code is Copyright Håkan Råberg and licensed GNU Affero General Public License v3.0 , unless otherwise specified. To contribute to Endatabas, please refer to CONTRIBUTING .","breadcrumbs":"Appendix » License » License","id":"253","title":"License"},"26":{"body":"The SET operator permits paths on its left-hand side. The behaviour of the form UPDATE
SET = is identical to that of the path_set function. UPDATE users SET $.addresses[0].city = 'Chicago' WHERE name = 'Steven';","breadcrumbs":"SQL Reference » Data Manipulation » UPDATE SET $path","id":"26","title":"UPDATE SET $path"},"27":{"body":"The UNSET (synonym: REMOVE) operator permits paths on its left-hand side. The behaviour of the form UPDATE
UNSET = is identical to that of the path_remove function. UPDATE users UNSET $.addresses[0].city WHERE name = 'Steven';","breadcrumbs":"SQL Reference » Data Manipulation » UPDATE UNSET $path","id":"27","title":"UPDATE UNSET $path"},"28":{"body":"To delete an existing row, use the standard SQL DELETE command. DELETE FROM products WHERE price = 5.98; You may delete all rows from a table by eliding the WHERE clause: DELETE FROM products; Note: In Endb, DELETE does not remove any data. It is always possible to view data prior to the DELETE with time queries . If you need to remove data for compliance (with laws such as GDPR or PIPEDA), use ERASE .","breadcrumbs":"SQL Reference » Data Manipulation » DELETE","id":"28","title":"DELETE"},"29":{"body":"Endb provides flexible upserts with the common ON CONFLICT clause. When the INSERT command detects a conflict, it will perform the instructions in the DO clause. The following command needs to be executed twice to see the upsert effect. INSERT INTO products {name: 'Pepper', price: 9.99} ON CONFLICT (name, price) DO UPDATE SET v = 2; To specify no operation on conflict, use DO NOTHING: INSERT INTO products {name: 'Pepper', price: 9.99} ON CONFLICT (name, price) DO NOTHING; To reference the document currently being inserted, the DO clause provides a statement-local relation named excluded. INSERT INTO products {name: 'Salt', price: 6};\nINSERT INTO products {name: 'Salt', price: 7} ON CONFLICT (name) DO UPDATE SET price = excluded.price; Similarly, the existing table is still available in the DO clause to provide further filtering: INSERT INTO products {product_no: 99, name: 'Cumin', price: 3.00, v: 5};\nINSERT INTO products {product_no: 99, name: 'Cumin', price: 5.00, v: 6} ON CONFLICT (product_no, name) DO UPDATE SET price = excluded.price, v = excluded.v WHERE products.v < 6;","breadcrumbs":"SQL Reference » Data Manipulation » ON CONFLICT (Upsert)","id":"29","title":"ON CONFLICT (Upsert)"},"3":{"body":"","breadcrumbs":"Tutorial » Quickstart » Quickstart","id":"3","title":"Quickstart"},"30":{"body":"ERASE completely removes documents (rows) from visibility to any queries. Once a document has been erased, it is no longer possible to query for it at all. ERASE FROM products WHERE name = 'Salt'; NOTE: ERASE currently does not remove data from disk. This feature will be added when Endb handles compaction, as per our roadmap .","breadcrumbs":"SQL Reference » Data Manipulation » ERASE","id":"30","title":"ERASE"},"31":{"body":"Parameters to DML are documented under the HTTP API .","breadcrumbs":"SQL Reference » Data Manipulation » Parameters","id":"31","title":"Parameters"},"32":{"body":"Transactions in Endb are implicit. Run multiple DML statements in a single transaction by providing multiple statements (delimited by semicolons) to a single POST to the HTTP API .","breadcrumbs":"SQL Reference » Data Manipulation » Transactions","id":"32","title":"Transactions"},"33":{"body":"Endb SQL strives to empower the query author. Basic SQL queries should be familiar. Advanced SQL queries should be simple.","breadcrumbs":"SQL Reference » Queries » Queries","id":"33","title":"Queries"},"34":{"body":"The most common hand-written SQL query tends to be the easiest: SELECT * FROM products; Without a WHERE clause (discussed below) the entire table is returned. Because Endb is schemaless, * has a special meaning. Each document (row) in Endb carries with it its own schema. As a result, * refers to the widest possible set of columns, across all the rows returned. In many SQL dialects, columns are strictly ordered. Because Endb columns cannot have a strict order, * returns them in alphabetical order. You can select the widest set of columns for a specific table with
.*: SELECT p.* FROM products p JOIN coupons c ON p.price = c.price;","breadcrumbs":"SQL Reference » Queries » SELECT *","id":"34","title":"SELECT *"},"35":{"body":"In programmatic environments, it is almost always preferable to query for specific columns by name: SELECT product_no, price FROM products; Select a list of columns by delimiting them with commas. SELECT product_no, v, price, name FROM products; Select a column with spaces by delimiting it with backticks or square braces: SELECT products['product no'] FROM products;\nSELECT `product no` FROM products; NOTE: Whether or not your Endb client respects column ordering is dependent on the content type it uses in Accept Headers. It is worth reading over the Accept Header documentation, in this regard. Limit query results to distinct rows or expand to all rows with DISTINCT and ALL. SELECT DISTINCT name FROM products;\nSELECT ALL product_no FROM products p JOIN sales s ON p.name = s.name;","breadcrumbs":"SQL Reference » Queries » SELECT","id":"35","title":"SELECT"},"36":{"body":"","breadcrumbs":"SQL Reference » Queries » FROM","id":"36","title":"FROM"},"37":{"body":"For convenience, tables can be given aliases immediately following their name in the FROM clause. SELECT p.name FROM products p; The AS operator can also (optionally) be used to provide an alias for a table. SELECT p.name FROM products AS p; More usefully, it can give a temporary table name to an expression. The temporary table name can either have anonymous columns or named columns. (The VALUES keyword is explained in the following VALUES Lists section.) SELECT p.column1 FROM (VALUES ('Paprika', 4.77)) AS p;\nSELECT p.price FROM (VALUES ('Paprika', 4.77)) AS p(name, price);","breadcrumbs":"SQL Reference » Queries » Alias Tables","id":"37","title":"Alias Tables"},"38":{"body":"The AS keyword is also used to alias columns. This is useful when column names conflict in a join. (Joins are explained below.) If the same column is specified more than once, the last reference to that column name is the one which will be returned: SELECT c.price, p.price FROM products p JOIN coupons c ON p.name = c.name; If both columns are required, AS can be used to rename one or both of the columns: SELECT p.price AS regular_price, c.price FROM products p JOIN coupons c ON p.name = c.name;","breadcrumbs":"SQL Reference » Queries » Alias Columns","id":"38","title":"Alias Columns"},"39":{"body":"Because Endb is schemaless, documents (rows) can be joined on any fields (columns) which have equivalent values. INSERT INTO coupons {name: 'Salt', price: 3.0};\nSELECT * FROM products p JOIN coupons c ON p.name = c.name; LEFT JOIN, LEFT OUTER JOIN, INNER JOIN, and CROSS JOIN are all supported.","breadcrumbs":"SQL Reference » Queries » JOIN","id":"39","title":"JOIN"},"4":{"body":"mkdir -p endb_data\ndocker pull endatabas/endb\ndocker run --rm -p 3803:3803 -v endb_data:/app/endb_data docker.io/endatabas/endb See Installation for more ways to install and build endb.","breadcrumbs":"Tutorial » Quickstart » Install Endb","id":"4","title":"Install Endb"},"40":{"body":"The UNNEST function can be thought of as the inverse of ARRAY_AGG , although it offers more power than just unlinking elements. It takes an array or object and pulls its elements into separate rows. SELECT * FROM UNNEST([1.99, 2.99, 3.99]) AS products(price); It is possible to unnest multiple arrays. If the arrays do not have the same number of elements, the shorter array(s) will have those values filled with NULL: SELECT names.* FROM (VALUES (['Leslie', 'Edgar', 'fiver2'], ['Lamport', 'Codd'])) AS x(first, last), UNNEST(x.first, x.last) AS names(first, last); When unnesting an object, keys-value pairs will be returned as per object_entries . This behaviour is useful for manipulating collections: SELECT * FROM UNNEST({original_price: 1.99, sale_price: 1.50, coupon_price: 1.40}) AS prices(price);\n-- [{'price': ['sale_price', 1.5]},\n-- {'price': ['coupon_price', 1.4]},\n-- {'price': ['original_price', 1.99]}]","breadcrumbs":"SQL Reference » Queries » UNNEST","id":"40","title":"UNNEST"},"41":{"body":"UNNEST can be suffixed with WITH ORDINALITY to append an ordinal column to the results. SELECT * FROM UNNEST([1.99, 2.99, 3.99]) WITH ORDINALITY AS products(price, n);\n-- [{'n': 0, 'price': 1.99}, {'n': 1, 'price': 2.99}, {'n': 2, 'price': 3.99}] NOTE: Endb ordinals are zero-indexed.","breadcrumbs":"SQL Reference » Queries » WITH ORDINALITY","id":"41","title":"WITH ORDINALITY"},"42":{"body":"Rather than returning the entire table, documents (rows) can be filtered with a WHERE clause. SELECT * FROM products WHERE price > 4;","breadcrumbs":"SQL Reference » Queries » WHERE (Filtering)","id":"42","title":"WHERE (Filtering)"},"43":{"body":"More advanced filters are documented in Operators and Functions .","breadcrumbs":"SQL Reference » Queries » Advanced Filtering","id":"43","title":"Advanced Filtering"},"44":{"body":"Results from queries can be ordered with standard SQL ORDER BY. SELECT * FROM products ORDER BY price; By default, ordering is ascending. For descending order, suffix the ORDER BY clause with DESC: SELECT * FROM products ORDER BY price DESC; To force ascending order, use ASC: SELECT * FROM products ORDER BY price ASC; It is also possible to order by an expression: SELECT * FROM products ORDER BY LENGTH(name);\nSELECT * FROM products ORDER BY -price; In the example above, LENGTH is an example of a function. A complete list of functions can be found in the Functions documentation.","breadcrumbs":"SQL Reference » Queries » ORDER BY (Sorting Results)","id":"44","title":"ORDER BY (Sorting Results)"},"45":{"body":"GROUP BY accepts a list of columns and creates aggregated rows based on each of those columns, in order. Each aggregate is returned as a single row. Each column returned must either be a column specified in the GROUP BY clause or a column created with an aggregate function , such as SUM. SELECT name, price FROM products GROUP BY name, price;\nSELECT name, SUM(price) FROM products GROUP BY name;","breadcrumbs":"SQL Reference » Queries » GROUP BY","id":"45","title":"GROUP BY"},"46":{"body":"HAVING adds a search condition to an aggregate query. SELECT name, SUM(price) FROM products GROUP BY name HAVING LENGTH(name) > 4; It is most often used with GROUP BY (seen above), but it is also legal with other aggregates: SELECT SUM(products.price) FROM products HAVING SUM(products.price) = 13;","breadcrumbs":"SQL Reference » Queries » HAVING","id":"46","title":"HAVING"},"47":{"body":"LIMIT specifies the maximum number of rows to be returned by the query. SELECT * FROM products LIMIT 2; It always makes sense to control the order of returned rows so LIMIT always returns the same rows for the same query -- unless you don't care which rows are returned. SELECT * FROM products ORDER BY price ASC LIMIT 2; OFFSET allows queries to skip rows before returning a limited set. SELECT * FROM products ORDER BY price ASC LIMIT 2 OFFSET 2;","breadcrumbs":"SQL Reference » Queries » LIMIT","id":"47","title":"LIMIT"},"48":{"body":"The VALUES keyword is used to create a static table of documents (rows). Each row is denoted by a pair of parentheses. All rows must have Union Compatibility which, for Endb, means they have the same number of columns. VALUES (1, 'Salt'), (2, 'Pepper'), (3, 'Vinegar'); Endb assigns anonymous columns the names column1, column2, etc. Columns can instead be given names with a table alias : SELECT * FROM (VALUES (1, 'Salt'), (2, 'Pepper'), (3, 'Vinegar')) AS t (product_no, name);","breadcrumbs":"SQL Reference » Queries » VALUES Lists","id":"48","title":"VALUES Lists"},"49":{"body":"The OBJECTS keyword is used to create a static table comprised of object literals, each representing a document (row). Each row is directly denoted by an object literal. OBJECTS lists do not require Union Compatibility , so jagged lists are permitted. OBJECTS {product_no: 1, name: 'Salt'}, {product_no: 2, name: 'Pepper', price: 3.99};\nSELECT * FROM (OBJECTS {product_no: 1, name: 'Salt'}, {product_no: 2, name: 'Pepper'}) as t;","breadcrumbs":"SQL Reference » Queries » OBJECTS Lists","id":"49","title":"OBJECTS Lists"},"5":{"body":"curl -d \"SELECT 'Hello World';\" -H \"Content-Type: application/sql\" -X POST http://localhost:3803/sql","breadcrumbs":"Tutorial » Quickstart » Run your first query","id":"5","title":"Run your first query"},"50":{"body":"The set operations union, intersection, and difference are available to the results of two queries.","breadcrumbs":"SQL Reference » Queries » Set Operations: UNION, INTERSECT, EXCEPT","id":"50","title":"Set Operations: UNION, INTERSECT, EXCEPT"},"51":{"body":"Append the results of one query to another. Duplicate rows are removed. SELECT * FROM products UNION SELECT * FROM new_products; To keep duplicate rows, use UNION ALL: SELECT * FROM products UNION ALL SELECT * FROM new_products;","breadcrumbs":"SQL Reference » Queries » UNION","id":"51","title":"UNION"},"52":{"body":"The intersection of two queries returns results which are found in both. SELECT * FROM products INTERSECT SELECT * FROM new_products;","breadcrumbs":"SQL Reference » Queries » INTERSECT","id":"52","title":"INTERSECT"},"53":{"body":"The difference of two queries returns only results from the first query which are not found in the second. Another way of thinking about this is that results of the second query are removed from the first. SELECT * FROM products EXCEPT SELECT * FROM ignored_products;","breadcrumbs":"SQL Reference » Queries » EXCEPT","id":"53","title":"EXCEPT"},"54":{"body":"\"Union Compatibility\" refers to the ability of two queries to be used in a union, intersection, or difference. Because Endb is dynamically-typed, the only constraint on union compatibility is the number of columns returned. In general, it only makes sense to use set operations on two queries which return either: (1) explicit columns, so order and naming are respected or (2) columns with the same names, so they are guaranteed to return in order, in the case of * queries. When applying set operations to * queries, keep in mind that the widest column set (across the entire history of the table) will be returned. If the queries return a different number of columns, set operations will result in an error: -> SELECT * FROM products UNION SELECT * FROM new_products;\n400 Bad Request\nNumber of UNION left columns: 3 does not match right columns: 2","breadcrumbs":"SQL Reference » Queries » Union-Compatibility","id":"54","title":"Union-Compatibility"},"55":{"body":"The WITH keyword is used to create Common Table Expressions , or CTEs. CTEs act like temporary tables or views within the context of a query. CTEs are used in place of a sub-select to simplify the appearance of a query. WITH clauses take the form WITH AS (). WITH top_margin_products AS (SELECT product_no FROM products WHERE (price - cost) > 5.00)\nSELECT name FROM products\nWHERE product_no IN (SELECT product_no FROM top_margin_products);","breadcrumbs":"SQL Reference » Queries » WITH Queries (Common Table Expressions)","id":"55","title":"WITH Queries (Common Table Expressions)"},"56":{"body":"The RECURSIVE keyword can be added to WITH to create recursive CTEs which can refer to themselves. Recursive CTEs will always have the form UNION or UNION ALL . Here is a naive example, demonstrating the recursive construction of a Fibonacci Sequence: WITH RECURSIVE fib(previous, current) AS ( VALUES (0, 1) UNION ALL SELECT fib.current, fib.previous + fib.current FROM fib WHERE fib.previous + fib.current < 5000\n)\nSELECT * FROM fib; The most beneficial uses for WITH RECURSIVE are walking hierarchical and graph-shaped data sets -- capabilities ordinary SQL lacks. However, Endb recursive queries are also capable of solving Sudoku puzzles and constructing fractals, as seen in the test suite . (Credit goes to SQLite's delightful Outlandish Recursive Query Examples .)","breadcrumbs":"SQL Reference » Queries » WITH RECURSIVE","id":"56","title":"WITH RECURSIVE"},"57":{"body":"Repeatable reads are achieved in Endb by creating savepoints , which queries can return to later. When returning to a savepoint in the future, queries will return results according to the state of the database when the savepoint was captured. By default, savepoints have a 60-second lifespan, after which they expire. Use of a savepoint during its lifespan will renew its lease, allowing it to be used for another 60 seconds. Savepoints can be forcibly expired with RELEASE. Attempting to use a savepoint that has been expired or released will return No active savepoint: .","breadcrumbs":"SQL Reference » Queries » Repeatable Reads: SAVEPOINT, ROLLBACK, RELEASE","id":"57","title":"Repeatable Reads: SAVEPOINT, ROLLBACK, RELEASE"},"58":{"body":"Other SQL dialects have more transaction-specific semantics for SAVEPOINT, ROLLBACK, and RELEASE. Because this difference in behaviour may be confusing to users familiar with other databases, we provide the example below. The result of the final query returns the first two dungeons, which were inserted prior to the savepoint, but not \"Tower of Hera\". INSERT INTO dungeons {name: 'Eastern Palace'};\nINSERT INTO dungeons {name: 'Desert Palace'};\nSAVEPOINT desert_palace;\nINSERT INTO dungeons {name: 'Tower of Hera'};\nROLLBACK TO desert_palace; SELECT * FROM dungeons; NOTE: The ROLLBACK and SELECT above must be executed together, in the same transaction. (Normally this will mean executing both statements in a single HTTP request.)","breadcrumbs":"SQL Reference » Queries » Minimal Example","id":"58","title":"Minimal Example"},"59":{"body":"The SAVEPOINT operator captures a new savepoint at the time it executes. Savepoints can be named or anonymous. Anonymous savepoints are named with a UUID. The name of the savepoint is returned as an attribute named result. SAVEPOINT desert_palace;\n-- [{'result': 'desert_palace'}]\nSAVEPOINT;\n-- [{'result': '0b12de43-1c92-4d92-ab7c-51c5a5129074'}]","breadcrumbs":"SQL Reference » Queries » SAVEPOINT","id":"59","title":"SAVEPOINT"},"6":{"body":"Endb is still in early alpha. While in alpha, new versions are not guaranteed to have binary-compatible storage with previous versions. We encourage you to experiment with Endb but please do not use it in production until a General Availability release.","breadcrumbs":"Tutorial » Quickstart » Warning: Early Alpha","id":"6","title":"Warning: Early Alpha"},"60":{"body":"Inside the scope of a transaction (normally a single HTTP request), ROLLBACK is used to return to a savepoint. ROLLBACK TO returns to a named savepoint (by name) or an anonymous savepoint (by string UUID). When used without a savepoint name, ROLLBACK returns to the last anonymous savepoint. Queries executed inside such a transaction return results according to the state of the database when the savepoint was created. The use of ROLLBACK renews the lease of the associated savepoint. ROLLBACK TO desert_palace; SELECT * FROM dungeons;\nROLLBACK TO 'eab07765-de6f-4f74-8052-838dd29ee8e7'; SELECT * FROM dungeons;\nROLLBACK; SELECT * FROM dungeons;","breadcrumbs":"SQL Reference » Queries » ROLLBACK","id":"60","title":"ROLLBACK"},"61":{"body":"The RELEASE keyword expires a savepoint so it can no longer be used. Anonymous savepoints can be released by string UUID. RELEASE desert_palace;\nRELEASE 'f7c314dd-47b9-4c85-9502-b8e35c82b935';","breadcrumbs":"SQL Reference » Queries » RELEASE","id":"61","title":"RELEASE"},"62":{"body":"","breadcrumbs":"SQL Reference » SQL Data Types » SQL Data Types","id":"62","title":"SQL Data Types"},"63":{"body":"Null serves a variety of purposes in Endb. Explicit: You can provide an explicit NULL value \"Unknown\": As with any SQL, you will receive a null when 3-Valued Logic cannot determine if a statement is true or false \"Missing\": Jagged rows will return NULL for columns projected for a document which does not contain them","breadcrumbs":"SQL Reference » SQL Data Types » NULL","id":"63","title":"NULL"},"64":{"body":"Endb accepts unbounded, variable-length strings with either single or double quotes. CHAR and VARCHAR are synonyms for TEXT. INSERT INTO users (name, title) VALUES ('River', \"Prodigy\"); When casting using the CHAR synonym, an optional integer argument indicates the desired length of the resulting string, padded with spaces: SELECT CAST(123 AS CHAR(10));\n-- [{'column1': '123 '}]","breadcrumbs":"SQL Reference » SQL Data Types » TEXT (CHAR, VARCHAR)","id":"64","title":"TEXT (CHAR, VARCHAR)"},"65":{"body":"Boolean values can be TRUE, FALSE, or NULL.","breadcrumbs":"SQL Reference » SQL Data Types » BOOLEAN","id":"65","title":"BOOLEAN"},"66":{"body":"64-bit integer capable of auto-promotion to 128-bit integer.","breadcrumbs":"SQL Reference » SQL Data Types » INTEGER (BIGINT)","id":"66","title":"INTEGER (BIGINT)"},"67":{"body":"A 64-bit IEEE 754 floating point number, or double.","breadcrumbs":"SQL Reference » SQL Data Types » REAL (DOUBLE)","id":"67","title":"REAL (DOUBLE)"},"68":{"body":"Timestamps can be represented as either SQL timestamps, according to the SQL Specification, or ISO timestamps. The following are legal timestamp literals: 2007-01-01T00:00:00 2007-01-01T00:00:00.123Z 2007-01-01T00:00:00.000000Z TIMESTAMP '2007-01-01 00:00:00' TIMESTAMP '2007-01-01 00:00:00.000000Z'","breadcrumbs":"SQL Reference » SQL Data Types » TIMESTAMP","id":"68","title":"TIMESTAMP"},"69":{"body":"Dates can be represented as either SQL dates, according to the SQL Specification, or ISO dates. The following are legal date literals: 2007-01-01 DATE '2007-01-01'","breadcrumbs":"SQL Reference » SQL Data Types » DATE","id":"69","title":"DATE"},"7":{"body":"You can send SQL statements to endb over HTTP. Any HTTP client will do.","breadcrumbs":"Tutorial » Try It! » Try It!","id":"7","title":"Try It!"},"70":{"body":"Times can be represented as either SQL times, according to the SQL Specification, or ISO times. The following are legal time literals: 23:59:12 23:59:12.12345 TIME '23:59:12' TIME '23:59:12.12345'","breadcrumbs":"SQL Reference » SQL Data Types » TIME","id":"70","title":"TIME"},"71":{"body":"An interval (or duration ) is created whenever two times are subtracted. SELECT 2001-01-02 - 2001-01-01; Interval literals can be constructed with ISO 8601 syntax : PT12H30M5S P1Y2M10DT2H30M This is equivalent to the same ISO 8601 syntax provided as a string to the DURATION constructor: DURATION('PT12H30M5S') DURATION('P1Y2M10DT2H30M') Interval literals can also be constructed with the classic SQL intervals DSL: INTERVAL '1-2' YEAR TO MONTH INTERVAL '0 12:34:56.789' DAY TO SECOND","breadcrumbs":"SQL Reference » SQL Data Types » INTERVAL (DURATION)","id":"71","title":"INTERVAL (DURATION)"},"72":{"body":"Binary Large Objects can be encoded as hexidecimal literals or cast from strings. x'DEADBEEF' CAST(\"hello\" AS BLOB)","breadcrumbs":"SQL Reference » SQL Data Types » BLOB (VARBINARY)","id":"72","title":"BLOB (VARBINARY)"},"73":{"body":"Arrays can be created with array literals similar to JSON. [\"one\", \"two\", \"three\"] Alternatively, arrays can also be created using a literal syntax similar to that in the SQL Specification or a constructor function. ARRAY [\"one\", \"two\", \"three\"] ARRAY(\"one\", \"two\", \"three\") Array literals can contain the spread operator SELECT [1, 2, ...[3, 4], 5];\n-- [{'column1': [1, 2, 3, 4, 5]}] Array equality is tested lexicographically .","breadcrumbs":"SQL Reference » SQL Data Types » ARRAY","id":"73","title":"ARRAY"},"74":{"body":"Objects (which can also be thought of as documents, or rows) can be created with object literals enclosed in curly braces, similar to JSON. Keys in object literals can be quoted or unquoted. {name: \"Hanna\", birthday: 1982-12-31} {'name': \"Hanna\", 'birthday': 1982-12-31} Alternatively, objects can be created using either an OBJECT constructor keyword, similar to that in the SQL Specification. OBJECT(name: 'Hanna', birthday: 1982-12-31) Object literals can contain spreads , computed fields , shorthands , and row literals . SELECT { a: 1, ...[2, 3] };\n-- [{'column1': {'0': 2, '1': 3, 'a': 1}}]\nSELECT { foo: 2, ['foo' || 2]: 5 };\n-- [{'column1': {'foo': 2, 'foo2': 5}}]\nSELECT {p.name, c.discounted} FROM products p JOIN coupons c ON p.name = c.name;\n-- [{'column1': {'discounted': 2.99, 'name': 'Salt'}}]\nSELECT {product: {p.*}, discounted: c.discounted} FROM products p JOIN coupons c ON p.name = c.name;\n-- [{'column1': {'discounted': 2.99, 'product': {'name': 'Salt', 'price': 5.99}}}] Object equality is tested by comparing each key-value pair as an array.","breadcrumbs":"SQL Reference » SQL Data Types » OBJECT","id":"74","title":"OBJECT"},"75":{"body":"","breadcrumbs":"SQL Reference » SQL Data Types » Dynamic Literals","id":"75","title":"Dynamic Literals"},"76":{"body":"It is possible return an entire document (row) as a single literal value. The syntax is akin to Postgres ROW literals . Unlike table.*, which pads non-existent columns with NULL, a row literal returns exactly the schema specified for each individual row. { table.* } Example usage: SELECT { products.* } FROM products; As a shorthand, a table's name may be used in the SELECT clause to return entire rows as documents: -> SELECT users FROM users;\n-- [{'users': {'email': 'patrick@oracle.com', 'name': 'Patrick'}},\n-- {'users': {'email': 'preethi@shopify.ca', 'name': 'Preethi'}}] NOTE: When a table contains a column of the same name, the column takes precedence and a single column is returned, as usual: -> SELECT status FROM status;\n-- [{'status': 'error'}, {'status': 'ok'}]","breadcrumbs":"SQL Reference » SQL Data Types » Row Literals","id":"76","title":"Row Literals"},"77":{"body":"The Spread Operator (..., sometimes known as \"splat\") can be used to directly flatten/unnest one collection (an array, object, or row literal) into another. Strings are treated as character collections. SELECT [1, 2, ...[3, 4], 5];\n-- [{'column1': [1, 2, 3, 4, 5]}] SELECT [1, 2, ...\"foo\", 5];\n-- [{'column1': [1, 2, 'f', 'o', 'o', 5]}] If an array is spread into an object, its ordinals will be used as properties: SELECT { a: 1, ...{b: 2} };\n-- [{'column1': {'a': 1, 'b': 2}}] SELECT { a: 1, ...[2, 3] };\n-- [{'column1': {'0': 2, '1': 3, 'a': 1}}]","breadcrumbs":"SQL Reference » SQL Data Types » Spread","id":"77","title":"Spread"},"78":{"body":"In the key/property position, square brackets are used to construct computed fields in object literals . Computed fields are implicitly cast to string. SELECT { foo: 2, [2 + 2]: 5 };\n-- [{'column1': {'4': 5, 'foo': 2}}]\nSELECT { foo: 2, ['foo' || 2]: 5 };\n-- [{'column1': {'foo': 2, 'foo2': 5}}]","breadcrumbs":"SQL Reference » SQL Data Types » Computed Fields","id":"78","title":"Computed Fields"},"79":{"body":"Column names can be referred to in place of key-value pairs in object literals . SELECT {p.name, c.discounted} FROM products p JOIN coupons c ON p.name = c.name;\n-- [{'column1': {'discounted': 2.99, 'name': 'Salt'}}]","breadcrumbs":"SQL Reference » SQL Data Types » Shorthands","id":"79","title":"Shorthands"},"8":{"body":"Our first couple examples will use curl , which you probably already have installed. curl -d \"INSERT INTO users (name) VALUES ('Tianyu')\" -H \"Content-Type: application/sql\" -X POST http://localhost:3803/sql\ncurl -d \"SELECT * FROM users\" -H \"Content-Type: application/sql\" -X POST http://localhost:3803/sql Read more in the full HTTP API docs .","breadcrumbs":"Tutorial » Try It! » curl","id":"8","title":"curl"},"80":{"body":"Endb date/time data types currently only support times encoded as UTC.","breadcrumbs":"SQL Reference » SQL Data Types » Note on timezones","id":"80","title":"Note on timezones"},"81":{"body":"Operations performed on scalars will attempt to widen those scalars for the purpose of the operation, if reasonable. -> select 2.0 = 2;\n[{'column1': True}] This widening includes joins on scalars, but not collections (ARRAY or OBJECT): -> INSERT INTO zig {at: 2023-12-21, val: 2}\n[{'result': 1}]\n-> INSERT INTO zag {at: 2023-12-21T00:00:00, val: 2.0}\n[{'result': 1}]\n-> SELECT * FROM zig i JOIN zag a ON i.at = a.at;\n[{'at': datetime.datetime(2023, 12, 21, 0, 0, tzinfo=datetime.timezone.utc), 'val': 2.0}]\n-> SELECT * FROM zig i JOIN zag a ON i.val = a.val;\n[{'at': datetime.datetime(2023, 12, 21, 0, 0, tzinfo=datetime.timezone.utc), 'val': 2.0}]","breadcrumbs":"SQL Reference » SQL Data Types » Note on type widening","id":"81","title":"Note on type widening"},"82":{"body":"","breadcrumbs":"SQL Reference » Operators » Operators","id":"82","title":"Operators"},"83":{"body":"Two values can be compared using standard SQL comparison operators: =, == (equals) > (greater than) < (less than) >= (greater than or equal to) <= (less than or equal to) <>, != (not equal to) SELECT * FROM products WHERE NOT name = 'Coffee';\nSELECT * FROM products WHERE name = 'Coffee' AND name <> 'Kaapi';\nSELECT * FROM products WHERE name > 'Cake' AND price >= 5.00;","breadcrumbs":"SQL Reference » Operators » Comparison","id":"83","title":"Comparison"},"84":{"body":"BETWEEN returns TRUE when a value is greater-than-or-equal-to the first limit and less-than-or-equal-to the second. It has the form BETWEEN x AND y. It can be negated with the form NOT BETWEEN x AND y. SELECT * FROM products WHERE price BETWEEN 2.00 AND 4.00;\nSELECT * FROM products WHERE price NOT BETWEEN 2.00 AND 4.00; NOTE: BETWEEN can also be used with System Time .","breadcrumbs":"SQL Reference » Operators » BETWEEN","id":"84","title":"BETWEEN"},"85":{"body":"WHERE clauses can be modified and combined with standard SQL boolean operators: IS and IS NOT behave like = (==) and <> (!=) , respectively. They are usually used to augment equality checks to test for NULL, which is the third boolean value, representing \"unknown\". When both sides of IS evaluate to NULL it returns TRUE. When only one side of IS NOT evaluates to NULL it returns TRUE, When only one side of IS evaluates to NUll it returns FALSE. When both sides of IS NOT evaluates to NULL it returns FALSE. SELECT * FROM products WHERE product_no IS NULL;\nSELECT * FROM products WHERE product_no IS NOT NULL;\nSELECT * FROM products WHERE product_no IS 379; NOT can be prefixed to any clause to negate it: SELECT * FROM products WHERE NOT (name = 'Coffee'); AND returns true if two clauses both return true: SELECT * FROM products WHERE name = 'Coffee' AND price > 2.99; OR returns true if either of two clauses return true: SELECT * FROM products WHERE name = 'Coffee' OR name = 'Kaapi';","breadcrumbs":"SQL Reference » Operators » Boolean Operators","id":"85","title":"Boolean Operators"},"86":{"body":"Standard SQL mathemetical operators are available to any two numeric values: + (addition) - (subtraction) * (multiplication) / (division) % (modulo; integer remainder of division) << (left bit shift) >> (right bit shift) +NUMBER (unary plus) -NUMBER (unary minus) SELECT 1 + 3.555;\nSELECT 1 - 3.555;\nSELECT 2 * 3.555;\nSELECT 2 / 3.555;\nSELECT 2 % 3.555;\nSELECT 62 << 2;\nSELECT 62 >> 2;\nSELECT +128.5;\nSELECT -128.5; NOTE: Mathematical functions are documented under Functions .","breadcrumbs":"SQL Reference » Operators » Math","id":"86","title":"Math"},"87":{"body":"Standard SQL bitwise manipulation operators are available to any two values. & (bitwise and) | (bitwise or) The bitwise not operator is also available to a single value: ~ (bitwise not) SELECT 1 & 2;\nSELECT 1 | 2;\nSELECT ~1;","breadcrumbs":"SQL Reference » Operators » Bitwise Operators","id":"87","title":"Bitwise Operators"},"88":{"body":"LIKE is the operator equivalent of the LIKE function . LIKE returns TRUE if a string matches the supplied LIKE pattern, as defined below: A pattern can be a string literal. It can also contain underscores (_) and/or percentage symbols (%). An underscore matches exactly one character. A percentage symbol matches zero or more characters. Backslash escapes the following character to make it a literal. Use ESCAPE to override the default backslash escape character. SELECT * FROM products WHERE name LIKE 'Tofu';\nSELECT * FROM products WHERE name LIKE 'Tof_';\nSELECT * FROM products WHERE name LIKE '%of%';\nSELECT * FROM products WHERE name LIKE '\\%of\\%';\nSELECT * FROM products WHERE name LIKE 'X%ofX%' ESCAPE 'X'; NOT LIKE is used to invert the results of the match. SELECT * FROM products WHERE name NOT LIKE '%of%'; NOTE: Endb LIKE is case-sensitive.","breadcrumbs":"SQL Reference » Operators » LIKE","id":"88","title":"LIKE"},"89":{"body":"REGEXP returns TRUE if a string matches the supplied regular expression. REGEXP may be prefixed with NOT. SELECT * FROM products WHERE name REGEXP '.*ee|.*ea';\nSELECT * FROM products WHERE name NOT REGEXP '.*[fst]+.*';","breadcrumbs":"SQL Reference » Operators » REGEXP","id":"89","title":"REGEXP"},"9":{"body":"Ultimately, Endb will ship with permissively-licensed client libraries for all major languages. For now, we have provided some example code you can try: https://github.com/endatabas/endb/tree/main/examples","breadcrumbs":"Tutorial » Try It! » Example Libraries","id":"9","title":"Example Libraries"},"90":{"body":"GLOB returns TRUE if a string matches the supplied UNIX glob. GLOB may be prefixed with NOT. SELECT * FROM products WHERE name GLOB '*of*';\nSELECT * FROM avatars WHERE filename NOT GLOB '/opt/local/avatars/*/*.png'; NOTE: GLOB is case-sensitive.","breadcrumbs":"SQL Reference » Operators » GLOB","id":"90","title":"GLOB"},"91":{"body":"MATCH returns TRUE if the value on the left contains the value on the right, at the top level. Note that a top-level array to the right of the MATCH refers to a set of values that all need to match, not a literal array. The following expressions return TRUE: SELECT 'foo' MATCH 'foo';\nSELECT [1, 2, 3] MATCH [3, 1];\nSELECT {user: 'foo', age: 42} MATCH {age: 42};\nSELECT {a: [1, 2, {c: 3, x: 4}], c: 'b'} MATCH {a: [{x: 4}, 1]}; The following expressions return FALSE: SELECT [1, 2, [1, 3]] MATCH [1, 3];\nSELECT {foo: {bar: 'baz'}} MATCH {bar: 'baz'};\nSELECT {a: [1, 2, {c: 3, x: 4}], c: 'b'} MATCH {a: [{x: 4}, 3]}; NOTE: The @> operator is a synonym for MATCH. It is provided as a convenience for users accustomed to the equivalent JSON Containment Operator in Postgres .","breadcrumbs":"SQL Reference » Operators » MATCH (Containment)","id":"91","title":"MATCH (Containment)"},"92":{"body":"SOME is a synonym for ANY. ANY qualifies a subquery by comparing a single column or literal value with the result of that subquery. ANY is used in the form ANY (). It returns true if the subquery returns a one or more values for which the operator is true. The operator must return a boolean and the subquery must return a single column. SELECT 1500 < SOME (SELECT price FROM products);","breadcrumbs":"SQL Reference » Operators » ANY, SOME","id":"92","title":"ANY, SOME"},"93":{"body":"ALL qualifies a subquery by comparing a single column or literal value with the result of that subquery. ALL is used in the form ALL (). It returns true only if all values returned by the subquery are true for the operator provided. The operator must return a boolean and the subquery must return a single column. SELECT \"ok\" = ALL (SELECT status_code FROM statuses);","breadcrumbs":"SQL Reference » Operators » ALL","id":"93","title":"ALL"},"94":{"body":"EXISTS returns TRUE if the subquery which follows it returns at least one row. SELECT name FROM products WHERE EXISTS (SELECT 1 FROM coupons WHERE name = products.name);","breadcrumbs":"SQL Reference » Operators » EXISTS","id":"94","title":"EXISTS"},"95":{"body":"The standard SQL IN clause can be used to test lists and subqueries for containment of a value. SELECT * FROM products WHERE price IN (5.00, 5.99);\nSELECT * FROM products WHERE price IN (SELECT price FROM coupons); NOTE: Use MATCH to test for containment of a value in an array.","breadcrumbs":"SQL Reference » Operators » IN","id":"95","title":"IN"},"96":{"body":"The standard SQL NOT IN clause can be used to test lists and subqueries for absence of a value. SELECT * FROM products WHERE price NOT IN (5.00, 5.99);\nSELECT * FROM products WHERE price NOT IN (SELECT price FROM coupons); NOTE: Use MATCH to test for absence of a value in an array.","breadcrumbs":"SQL Reference » Operators » NOT IN","id":"96","title":"NOT IN"},"97":{"body":"The || operator concatenates two strings or arrays supplied as arguments. When concatenating to an array element: other elements, arrays, and blobs are accepted as the second argument. When concatenating to an array: arrays, blobs, and array elements are accepted as the second argument. Elements other than strings are cast to strings when concatenated with each other. Multiple operators can be chained together. SELECT \"Hello\" || \"World\";\nSELECT [1, 2, 3] || [4, 5, 6];\nSELECT 1 || 2;\nSELECT \"Hello\" || [\"World\"];\nSELECT [\"Hello\"] || \"World\";\nSELECT \"Hello\" || \"World\" || \"And\" || \"Friends\"; The Concatenation Operator is equivalent to the CONCAT function .","breadcrumbs":"SQL Reference » Operators » || (Concatenation)","id":"97","title":"|| (Concatenation)"},"98":{"body":"","breadcrumbs":"SQL Reference » Functions » Functions","id":"98","title":"Functions"},"99":{"body":"","breadcrumbs":"SQL Reference » Functions » String Functions","id":"99","title":"String Functions"}},"length":254,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"0":{":":{"0":{"0":{":":{"0":{"0":{".":{"0":{"0":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"z":{"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":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":16,"docs":{"122":{"tf":2.0},"123":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"137":{"tf":1.0},"161":{"tf":2.23606797749979},"162":{"tf":2.23606797749979},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"225":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"68":{"tf":2.6457513110645907},"69":{"tf":2.0},"71":{"tf":1.7320508075688772}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{".":{"0":{"0":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"3":{"df":0,"docs":{},"z":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"137":{"tf":1.0},"224":{"tf":1.0},"68":{"tf":1.0}},"z":{"df":5,"docs":{"123":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":3,"docs":{"161":{"tf":1.0},"162":{"tf":1.0},"71":{"tf":1.0}}},"3":{":":{"0":{"4":{":":{"0":{"5":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"162":{"tf":1.0},"163":{"tf":1.0}}},"4":{"df":9,"docs":{"161":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}}},"5":{"df":4,"docs":{"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"164":{"tf":1.0}}},"7":{"df":5,"docs":{"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0}}},"8":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"156":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"236":{"tf":1.0}}},"9":{"df":1,"docs":{"245":{"tf":1.4142135623730951}},"t":{"2":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":3,"docs":{"204":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}}}},"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":{"1":{"2":{"d":{"df":0,"docs":{},"e":{"4":{"3":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"105":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"41":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":2.0}}},"1":{",":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":6,"docs":{"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0}}}}}}}},"2":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"4":{"0":{"df":3,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"40":{"tf":1.0}}},"df":1,"docs":{"40":{"tf":1.0}}},"5":{"0":{"df":3,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"40":{"tf":1.0}}},"df":1,"docs":{"40":{"tf":1.0}}},"9":{"8":{"df":1,"docs":{"25":{"tf":1.0}}},"9":{"df":4,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"25":{"tf":1.0}}},"df":1,"docs":{"117":{"tf":1.0}}},"df":1,"docs":{"101":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"229":{"tf":1.0}}}}},"1":{"df":1,"docs":{"233":{"tf":1.0}}},"2":{"3":{"df":5,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"190":{"tf":1.0},"64":{"tf":1.0}}},"8":{".":{"5":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"66":{"tf":1.0}}},":":{"3":{"4":{":":{"5":{"6":{".":{"7":{"8":{"9":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"74":{"tf":1.7320508075688772},"81":{"tf":2.0}}},"3":{"df":1,"docs":{"46":{"tf":1.0}}},"5":{"0":{"0":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":0,"docs":{},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"9":{"2":{"8":{"df":1,"docs":{"245":{"tf":1.0}}},"9":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":1,"docs":{"233":{"tf":1.0}}},"4":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"df":2,"docs":{"233":{"tf":1.7320508075688772},"235":{"tf":1.0}}},"2":{"df":1,"docs":{"74":{"tf":1.7320508075688772}}},"5":{"df":1,"docs":{"233":{"tf":1.0}}},"6":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"0":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"9":{"2":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":29,"docs":{"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"132":{"tf":1.0},"140":{"tf":1.0},"145":{"tf":1.0},"168":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":2.23606797749979},"179":{"tf":1.4142135623730951},"201":{"tf":1.0},"205":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"77":{"tf":3.0},"81":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"91":{"tf":2.8284271247461903},"94":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"2":{",":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}},"'":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"'":{"2":{"0":{"2":{"3":{"df":5,"docs":{"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"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":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"0":{"df":2,"docs":{"25":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":1,"docs":{"81":{"tf":2.0}}},"9":{"9":{"df":7,"docs":{"217":{"tf":1.0},"23":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"1":{"df":8,"docs":{"161":{"tf":2.0},"162":{"tf":2.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"241":{"tf":1.0},"71":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"230":{"tf":1.0}}},"6":{"df":1,"docs":{"241":{"tf":1.0}}},"7":{"df":4,"docs":{"224":{"tf":1.4142135623730951},"241":{"tf":1.0},"68":{"tf":2.23606797749979},"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"1":{"0":{"df":3,"docs":{"229":{"tf":1.0},"233":{"tf":1.0},"241":{"tf":1.0}}},"1":{"df":3,"docs":{"204":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}}},"2":{"df":1,"docs":{"241":{"tf":1.0}}},"5":{"df":1,"docs":{"241":{"tf":1.0}}},"6":{"df":1,"docs":{"241":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":3,"docs":{"229":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"241":{"tf":1.0},"251":{"tf":1.0}}},"3":{"df":8,"docs":{"13":{"tf":1.4142135623730951},"156":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"225":{"tf":1.0},"233":{"tf":1.0},"252":{"tf":1.0},"81":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"134":{"tf":1.0}}},"1":{"df":1,"docs":{"81":{"tf":1.7320508075688772}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"\"":{",":{"\"":{"@":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"\"":{":":{"\"":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"d":{":":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"\"":{"df":0,"docs":{},"}":{"df":0,"docs":{},"}":{",":{"df":0,"docs":{},"{":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"1":{"\"":{":":{"1":{",":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"2":{"\"":{":":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"]":{",":{"[":{"1":{",":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"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":5,"docs":{"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0}}},"3":{":":{"3":{"0":{":":{"0":{"0":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"9":{":":{"1":{"2":{".":{"1":{"2":{"3":{"4":{"5":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"124":{"tf":1.0}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":2,"docs":{"158":{"tf":1.0},"159":{"tf":1.0}}},"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":{"179":{"tf":1.4142135623730951}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":3,"docs":{"156":{"tf":1.0},"158":{"tf":1.0},"236":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":37,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"127":{"tf":1.0},"132":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":2.23606797749979},"176":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.7320508075688772},"226":{"tf":1.0},"23":{"tf":1.0},"238":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":2.23606797749979},"77":{"tf":2.8284271247461903},"78":{"tf":2.6457513110645907},"81":{"tf":1.4142135623730951},"86":{"tf":2.23606797749979},"87":{"tf":1.4142135623730951},"91":{"tf":2.0},"97":{"tf":1.4142135623730951}}},"3":{",":{"4":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},".":{"0":{"0":{"df":1,"docs":{"29":{"tf":1.0}}},"df":1,"docs":{"39":{"tf":1.0}}},"5":{"5":{"5":{"df":1,"docs":{"86":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{"df":5,"docs":{"218":{"tf":1.0},"23":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":0,"docs":{},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"159":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"3":{"5":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"74":{"tf":1.7320508075688772}}},"7":{"9":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"3":{":":{"3":{"8":{"0":{"3":{"df":2,"docs":{"195":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"198":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":1,"docs":{"232":{"tf":1.0}}},"df":21,"docs":{"100":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"132":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.7320508075688772},"179":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.0},"48":{"tf":1.4142135623730951},"54":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"77":{"tf":2.0},"91":{"tf":2.6457513110645907},"97":{"tf":1.0}}},"4":{".":{"0":{"0":{"df":2,"docs":{"23":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"7":{"7":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"9":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"54":{"tf":1.0}}},"1":{"df":1,"docs":{"215":{"tf":1.7320508075688772}}},"9":{"a":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":3,"docs":{"179":{"tf":1.0},"224":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"5":{"6":{"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"7":{"1":{"4":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"b":{"9":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":0,"docs":{},"e":{"1":{"2":{"0":{"0":{"b":{"df":0,"docs":{},"f":{"a":{"4":{"7":{"df":1,"docs":{"144":{"tf":1.0}}},"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":{"8":{"5":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"9":{"2":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"100":{"tf":1.0},"106":{"tf":1.4142135623730951},"132":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":2.0},"178":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"42":{"tf":1.0},"46":{"tf":1.0},"73":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"91":{"tf":2.0},"97":{"tf":1.0}},"f":{"7":{"4":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"}":{"]":{".":{"a":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{".":{"0":{"0":{"df":5,"docs":{"29":{"tf":1.0},"55":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"9":{"8":{"df":2,"docs":{"24":{"tf":1.0},"28":{"tf":1.0}}},"9":{"df":5,"docs":{"139":{"tf":1.0},"23":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"c":{"5":{"a":{"5":{"1":{"2":{"9":{"0":{"7":{"4":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"101":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.4142135623730951},"29":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"77":{"tf":2.0},"78":{"tf":2.0},"97":{"tf":1.0}}},"6":{"0":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}},"4":{"/":{"1":{"2":{"8":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"224":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}},"6":{"df":1,"docs":{"108":{"tf":1.0}}},"7":{"df":1,"docs":{"108":{"tf":1.0}}},"df":2,"docs":{"29":{"tf":1.7320508075688772},"97":{"tf":1.0}},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"238":{"tf":1.0}}}}},"7":{".":{"9":{"9":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"5":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{"6":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"4":{"df":2,"docs":{"224":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":1,"docs":{"112":{"tf":1.0}}},"8":{"9":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"180":{"tf":1.7320508075688772},"29":{"tf":1.0}}},"8":{".":{"9":{"9":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"5":{"2":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{"d":{"d":{"2":{"9":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"8":{"df":0,"docs":{},"e":{"7":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"1":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"233":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"147":{"tf":1.0},"224":{"tf":1.4142135623730951}}},"9":{".":{"9":{"9":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"7":{"1":{"9":{"9":{"2":{"5":{"4":{"7":{"4":{"0":{"9":{"9":{"2":{".":{"1":{"2":{"3":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"2":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"176":{"tf":1.0}}},"7":{",":{"9":{"6":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"176":{"tf":1.0},"228":{"tf":1.0}}},"9":{"df":3,"docs":{"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"_":{"df":1,"docs":{"88":{"tf":1.0}}},"a":{".":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"b":{"7":{"c":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"120":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":10,"docs":{"10":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.0},"241":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"58":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}}}}},"c":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":17,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"208":{"tf":1.7320508075688772},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.0},"35":{"tf":1.4142135623730951},"45":{"tf":1.0},"64":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"125":{"tf":1.0},"151":{"tf":1.0},"155":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"155":{"tf":1.0},"175":{"tf":1.0}}}}}}}},"r":{"d":{"df":6,"docs":{"13":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"233":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"120":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"120":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"55":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"20":{"tf":1.0},"57":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"228":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"243":{"tf":1.0},"251":{"tf":2.0}}}}},"d":{"df":5,"docs":{"15":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.0},"46":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"183":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"245":{"tf":1.0}}}}}}},"df":0,"docs":{}},"[":{"0":{"]":{".":{"c":{"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":6,"docs":{"14":{"tf":1.0},"168":{"tf":1.0},"229":{"tf":1.4142135623730951},"238":{"tf":1.0},"30":{"tf":1.0},"56":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"33":{"tf":1.0},"43":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"253":{"tf":1.0}}}}}}},"g":{"df":1,"docs":{"91":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":5,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"134":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"16":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":2,"docs":{"228":{"tf":1.0},"241":{"tf":1.0}},"m":{"df":1,"docs":{"198":{"tf":1.0}}}},"k":{"a":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"a":{"df":3,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"a":{"df":4,"docs":{"24":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"48":{"tf":1.0}},"s":{"df":2,"docs":{"120":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":8,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"181":{"tf":1.0},"201":{"tf":1.4142135623730951},"239":{"tf":1.0},"246":{"tf":1.0},"47":{"tf":1.0},"57":{"tf":1.0}}},"y":{"d":{"b":{"df":2,"docs":{"241":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"236":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"234":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}}}},"z":{"df":0,"docs":{},"o":{"'":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":2,"docs":{"194":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":5,"docs":{"176":{"tf":1.0},"193":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}},"n":{"df":5,"docs":{"110":{"tf":1.0},"187":{"tf":1.0},"234":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":6,"docs":{"13":{"tf":1.0},"190":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"250":{"tf":1.0},"40":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":10,"docs":{"16":{"tf":1.0},"19":{"tf":1.0},"216":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0},"28":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"237":{"tf":1.0},"241":{"tf":1.4142135623730951},"250":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"245":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"239":{"tf":1.0}}}},"t":{"df":5,"docs":{"228":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"216":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":5,"docs":{"37":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"15":{"tf":1.0},"21":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"77":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"0":{"tf":1.0},"235":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"232":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"220":{"tf":2.0},"228":{"tf":1.0},"234":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":6,"docs":{"192":{"tf":1.0},"199":{"tf":1.0},"238":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"8":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"218":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"235":{"tf":1.4142135623730951},"41":{"tf":1.0},"51":{"tf":1.0}},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"203":{"tf":2.23606797749979},"204":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.7320508075688772},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0}}}}}},"l":{"d":{"+":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"204":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":14,"docs":{"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"205":{"tf":1.7320508075688772},"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},"216":{"tf":1.0},"220":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"n":{"d":{".":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"213":{"tf":1.7320508075688772},"220":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"214":{"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":{}}},"x":{"df":3,"docs":{"207":{"tf":1.7320508075688772},"211":{"tf":1.7320508075688772},"216":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"109":{"tf":1.0},"234":{"tf":1.0}}},"df":2,"docs":{"134":{"tf":1.0},"54":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"168":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"238":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"227":{"tf":1.0},"242":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"238":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"110":{"tf":1.7320508075688772},"141":{"tf":1.0},"147":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"206":{"tf":1.0},"215":{"tf":1.0},"233":{"tf":1.0},"64":{"tf":1.0},"97":{"tf":1.7320508075688772}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"109":{"tf":1.0},"127":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"16":{"tf":1.0},"230":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"(":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":1,"docs":{"40":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"132":{"tf":1.7320508075688772},"40":{"tf":1.0}}}}},"df":0,"docs":{}},"df":22,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"132":{"tf":2.23606797749979},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"180":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772},"73":{"tf":2.6457513110645907},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.0},"91":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":2.449489742783178}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"220":{"tf":3.0},"228":{"tf":1.0},"234":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.0}}}}}},"s":{"c":{"df":2,"docs":{"44":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"120":{"tf":1.0}},"h":{"df":1,"docs":{"120":{"tf":1.0}}}}},"k":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"234":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"185":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":2.449489742783178},"191":{"tf":1.7320508075688772},"20":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"10":{"tf":1.0},"206":{"tf":1.0},"220":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"2":{"df":1,"docs":{"120":{"tf":1.0}}},"df":1,"docs":{"120":{"tf":1.0}},"h":{"df":1,"docs":{"120":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"229":{"tf":1.0},"233":{"tf":1.0},"57":{"tf":1.0},"81":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"131":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":4,"docs":{"229":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.0},"215":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"215":{"tf":1.4142135623730951},"33":{"tf":1.0}}}}},"o":{"df":1,"docs":{"66":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":11,"docs":{"160":{"tf":1.0},"175":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"29":{"tf":1.0},"50":{"tf":1.0},"6":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"130":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"11":{"tf":1.0},"158":{"tf":1.0},"215":{"tf":1.0}}}},"df":1,"docs":{"237":{"tf":1.0}}},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"250":{"tf":1.0}}}}}},"b":{"'":{"1":{"5":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"]":{"[":{"'":{"a":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{".":{"[":{"'":{"a":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"169":{"tf":1.0}}},"c":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"1":{"df":0,"docs":{},"e":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}},"8":{"df":0,"docs":{},"e":{"3":{"5":{"c":{"8":{"2":{"b":{"9":{"3":{"5":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"[":{"'":{"a":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":2.6457513110645907}}}}}}},"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"13":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"229":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"235":{"tf":1.0}}}},"r":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"6":{"4":{"(":{"'":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"'":{"0":{"1":{"0":{"2":{"0":{"3":{"df":1,"docs":{"143":{"tf":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":{"143":{"tf":2.0}}},"df":0,"docs":{}},"df":11,"docs":{"120":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"225":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"25":{"tf":1.0},"45":{"tf":1.0}}},"i":{"c":{"df":6,"docs":{"11":{"tf":1.0},"186":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"215":{"tf":1.7320508075688772},"33":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"y":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":8,"docs":{"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"225":{"tf":1.0},"77":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"233":{"tf":1.0},"235":{"tf":1.0}}}}},"df":1,"docs":{"29":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"20":{"tf":1.0},"47":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"12":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"175":{"tf":1.0},"192":{"tf":1.0},"233":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"85":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"131":{"tf":1.0},"203":{"tf":1.0},"234":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"58":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"232":{"tf":1.0},"234":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":8,"docs":{"167":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"220":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"58":{"tf":1.0},"88":{"tf":1.0}}}}},"n":{"d":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"235":{"tf":1.0}}}}},"t":{"df":3,"docs":{"0":{"tf":1.0},"148":{"tf":1.0},"19":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"158":{"tf":2.23606797749979},"159":{"tf":1.4142135623730951},"233":{"tf":1.0},"84":{"tf":2.6457513110645907}}}}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":2,"docs":{"21":{"tf":1.0},"245":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"226":{"tf":1.0},"66":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"146":{"tf":1.4142135623730951},"194":{"tf":1.0},"197":{"tf":1.7320508075688772},"198":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"6":{"tf":1.0},"72":{"tf":1.0}}}}},"d":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"74":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":4,"docs":{"224":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"86":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":2.449489742783178}}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"df":9,"docs":{"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":2.0},"224":{"tf":1.0},"226":{"tf":1.0},"250":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"215":{"tf":1.0},"216":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"224":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":12,"docs":{"159":{"tf":1.0},"219":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"237":{"tf":1.0},"245":{"tf":1.0},"38":{"tf":1.4142135623730951},"52":{"tf":1.0},"58":{"tf":1.0},"85":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}}}},"x":{"df":1,"docs":{"238":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"35":{"tf":1.0},"74":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"78":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"196":{"tf":1.0}}}},"d":{"df":2,"docs":{"183":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"238":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"229":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":10,"docs":{"193":{"tf":1.0},"196":{"tf":1.0},"21":{"tf":1.0},"229":{"tf":1.4142135623730951},"231":{"tf":1.0},"234":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"247":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":3,"docs":{"241":{"tf":1.4142135623730951},"246":{"tf":1.0},"250":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":3,"docs":{"200":{"tf":1.4142135623730951},"219":{"tf":2.0},"221":{"tf":1.4142135623730951}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":5,"docs":{"230":{"tf":1.0},"233":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.7320508075688772},"241":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"221":{"tf":1.0},"23":{"tf":1.0}}}}}},"y":{"df":2,"docs":{"229":{"tf":1.0},"240":{"tf":1.0}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"101":{"tf":1.0},"146":{"tf":1.4142135623730951}}}}}},"c":{"'":{"]":{"[":{"1":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"74":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":4,"docs":{"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"74":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"34":{"tf":1.0},"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"[":{"1":{"df":1,"docs":{"173":{"tf":1.0}}},"2":{"]":{".":{"df":0,"docs":{},"f":{"df":1,"docs":{"180":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"83":{"tf":1.0}}}},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"220":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}},"a":{"d":{"a":{"'":{"df":0,"docs":{},"}":{",":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"238":{"tf":1.0},"56":{"tf":1.4142135623730951},"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"57":{"tf":1.0},"59":{"tf":1.0}}}}}},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"236":{"tf":1.0},"47":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.0},"34":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":10,"docs":{"129":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"181":{"tf":1.0},"20":{"tf":1.0},"231":{"tf":1.0},"238":{"tf":1.4142135623730951},"54":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0}}},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}},"1":{"2":{"3":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":5,"docs":{"136":{"tf":1.7320508075688772},"64":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.0},"97":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}},"d":{"c":{"df":1,"docs":{"230":{"tf":1.0}}},"df":1,"docs":{"10":{"tf":1.0}}},"df":16,"docs":{"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"168":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.7320508075688772},"177":{"tf":2.0},"178":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"91":{"tf":2.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"230":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":1,"docs":{"239":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"109":{"tf":1.0},"97":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"233":{"tf":1.0},"238":{"tf":1.0}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"c":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"20":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.4142135623730951}}}},"r":{"(":{"1":{"0":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"6":{"5":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"147":{"tf":1.7320508075688772},"77":{"tf":1.0},"88":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"_":{"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":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"100":{"tf":1.7320508075688772},"112":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":4,"docs":{"139":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"185":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"185":{"tf":1.0},"190":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"120":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":4,"docs":{"21":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"238":{"tf":1.0},"250":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":17,"docs":{"167":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":2.0},"34":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":2.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"16":{"tf":1.0},"195":{"tf":1.0},"230":{"tf":1.0}}},"r":{"df":3,"docs":{"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"10":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"215":{"tf":1.7320508075688772},"222":{"tf":1.4142135623730951},"35":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"151":{"tf":1.0},"233":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"10":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"149":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"u":{"d":{"df":1,"docs":{"250":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"141":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"d":{"'":{"df":1,"docs":{"233":{"tf":1.0}}},"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":6,"docs":{"10":{"tf":1.0},"108":{"tf":1.0},"181":{"tf":1.0},"215":{"tf":1.7320508075688772},"253":{"tf":1.0},"9":{"tf":1.0}}}},"df":1,"docs":{"120":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":4,"docs":{"23":{"tf":1.0},"24":{"tf":2.23606797749979},"83":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":2,"docs":{"230":{"tf":1.0},"232":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"120":{"tf":1.0},"179":{"tf":1.0},"225":{"tf":1.0},"40":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"234":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"205":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"222":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"1":{"\"":{",":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"2":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"1":{",":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"2":{"\"":{":":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"211":{"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":{",":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"2":{"\"":{":":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"132":{"tf":1.0},"173":{"tf":2.0},"174":{"tf":1.4142135623730951},"48":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":2.0},"77":{"tf":2.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0}}},"2":{"df":1,"docs":{"48":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"183":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"213":{"tf":1.0},"214":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"246":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951}}}},"df":35,"docs":{"128":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"155":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":2.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"220":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.7320508075688772},"246":{"tf":1.0},"25":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":2.0},"37":{"tf":1.4142135623730951},"38":{"tf":2.6457513110645907},"39":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"54":{"tf":2.6457513110645907},"63":{"tf":1.0},"76":{"tf":2.0},"79":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"205":{"tf":1.0},"215":{"tf":1.0},"221":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"230":{"tf":1.0},"241":{"tf":1.0}}},"m":{"a":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":4,"docs":{"133":{"tf":1.0},"209":{"tf":1.0},"23":{"tf":1.4142135623730951},"35":{"tf":1.0}},"n":{"d":{"df":7,"docs":{"195":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"240":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"190":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"238":{"tf":1.0},"247":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.0},"55":{"tf":1.4142135623730951}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"235":{"tf":1.0}}}},"r":{"df":6,"docs":{"234":{"tf":1.0},"238":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}}}},"t":{"df":9,"docs":{"136":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"194":{"tf":1.0},"241":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.7320508075688772},"6":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"196":{"tf":1.0},"197":{"tf":1.0},"247":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"t":{"df":5,"docs":{"0":{"tf":1.0},"207":{"tf":1.0},"241":{"tf":1.0},"30":{"tf":1.0},"44":{"tf":1.0}}},"x":{"df":4,"docs":{"229":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"13":{"tf":1.0},"228":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}},"s":{"df":1,"docs":{"21":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"49":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"228":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"250":{"tf":1.7320508075688772},"74":{"tf":1.0},"78":{"tf":1.7320508075688772}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.7320508075688772},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"109":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"97":{"tf":2.449489742783178}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"234":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"235":{"tf":1.0},"237":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"138":{"tf":1.0},"139":{"tf":1.7320508075688772},"46":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"151":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":2.8284271247461903},"38":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"232":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"185":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":2,"docs":{"185":{"tf":1.0},"54":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"78":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":17,"docs":{"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"161":{"tf":1.7320508075688772},"20":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":24,"docs":{"132":{"tf":1.0},"199":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":2.0},"204":{"tf":1.7320508075688772},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"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},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"233":{"tf":1.0},"55":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"253":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"22":{"tf":1.0},"37":{"tf":1.0},"91":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"'":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"235":{"tf":1.0}}},"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":2,"docs":{"197":{"tf":1.0},"233":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"253":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":4,"docs":{"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"233":{"tf":1.0},"245":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"247":{"tf":1.0}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"108":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"120":{"tf":1.0}}},"t":{"df":3,"docs":{"229":{"tf":1.0},"233":{"tf":1.4142135623730951},"55":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"h":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":3,"docs":{"112":{"tf":1.0},"131":{"tf":2.0},"173":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"8":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"40":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":8,"docs":{"34":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"241":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"148":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"233":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"237":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":18,"docs":{"12":{"tf":1.4142135623730951},"170":{"tf":1.0},"187":{"tf":2.449489742783178},"190":{"tf":2.23606797749979},"22":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"235":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"55":{"tf":2.23606797749979},"56":{"tf":1.4142135623730951}}}},"u":{"b":{"df":0,"docs":{},"e":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"l":{"df":23,"docs":{"10":{"tf":1.0},"199":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":2.0},"207":{"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},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"5":{"tf":1.0},"8":{"tf":2.0}},"i":{"df":1,"docs":{"74":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":2,"docs":{"125":{"tf":1.4142135623730951},"154":{"tf":1.7320508075688772}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"125":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"125":{"tf":1.4142135623730951},"13":{"tf":1.0},"152":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}},"df":10,"docs":{"13":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"56":{"tf":1.0},"80":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"125":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"d":{"2":{"6":{"8":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"15":{"tf":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":{"15":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"a":{"'":{"df":1,"docs":{"236":{"tf":1.0}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":27,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":1.4142135623730951},"155":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"181":{"tf":1.4142135623730951},"191":{"tf":1.0},"21":{"tf":1.4142135623730951},"228":{"tf":2.23606797749979},"229":{"tf":2.6457513110645907},"230":{"tf":2.0},"231":{"tf":1.7320508075688772},"232":{"tf":1.7320508075688772},"233":{"tf":3.7416573867739413},"234":{"tf":1.7320508075688772},"235":{"tf":2.0},"238":{"tf":2.449489742783178},"239":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}},"df":51,"docs":{"117":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"143":{"tf":1.0},"148":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"16":{"tf":1.7320508075688772},"167":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"192":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"208":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":2.23606797749979},"22":{"tf":2.0},"220":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"230":{"tf":1.7320508075688772},"232":{"tf":1.4142135623730951},"233":{"tf":3.3166247903554},"234":{"tf":1.0},"235":{"tf":2.8284271247461903},"236":{"tf":1.7320508075688772},"237":{"tf":1.4142135623730951},"238":{"tf":3.3166247903554},"239":{"tf":2.0},"241":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.0},"246":{"tf":1.4142135623730951},"249":{"tf":1.0},"28":{"tf":1.7320508075688772},"30":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"234":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"(":{"'":{"2":{"0":{"0":{"1":{"df":1,"docs":{"122":{"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":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"121":{"tf":1.0},"151":{"tf":1.0},"80":{"tf":1.0}}}}}},"df":11,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":2.0},"148":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.4142135623730951},"156":{"tf":1.0},"224":{"tf":1.4142135623730951},"245":{"tf":1.0},"69":{"tf":2.449489742783178}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"'":{"2":{"0":{"0":{"1":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"2":{"0":{"2":{"3":{"df":1,"docs":{"81":{"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":{}}}}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}}}},"y":{"df":4,"docs":{"124":{"tf":1.4142135623730951},"154":{"tf":1.0},"246":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"b":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":21,"docs":{"122":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"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},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.4142135623730951}},"e":{"6":{"df":0,"docs":{},"f":{"df":1,"docs":{"60":{"tf":1.0}}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}}},"c":{"a":{"d":{"df":5,"docs":{"230":{"tf":1.7320508075688772},"232":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951},"241":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"238":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"171":{"tf":1.0}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":12,"docs":{"13":{"tf":1.0},"133":{"tf":1.0},"16":{"tf":1.0},"172":{"tf":1.0},"195":{"tf":1.4142135623730951},"198":{"tf":1.7320508075688772},"208":{"tf":1.0},"228":{"tf":1.0},"236":{"tf":1.0},"44":{"tf":1.0},"57":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"190":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"215":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"88":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"120":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"13":{"tf":1.4142135623730951},"188":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":2.0},"235":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":2.8284271247461903}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"133":{"tf":1.4142135623730951},"211":{"tf":1.0},"222":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"32":{"tf":1.0},"35":{"tf":1.4142135623730951}}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"238":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"233":{"tf":1.0},"239":{"tf":1.0}}}},"t":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"131":{"tf":1.0},"154":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"167":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0}}}}},"s":{"c":{"df":2,"docs":{"132":{"tf":1.0},"44":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"a":{"c":{"df":4,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"58":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"234":{"tf":1.4142135623730951},"235":{"tf":1.0}}}},"r":{"df":4,"docs":{"187":{"tf":1.0},"233":{"tf":1.4142135623730951},"236":{"tf":1.0},"64":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"233":{"tf":2.0},"235":{"tf":1.7320508075688772}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"17":{"tf":1.0},"192":{"tf":1.0},"20":{"tf":1.0},"224":{"tf":1.0},"237":{"tf":1.0},"248":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"20":{"tf":1.0},"229":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"131":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":2.0},"245":{"tf":1.0},"252":{"tf":1.0},"34":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"225":{"tf":1.0}}}},"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"131":{"tf":1.0},"154":{"tf":1.0},"16":{"tf":1.0},"234":{"tf":1.4142135623730951},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"58":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"233":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0}},"i":{"df":2,"docs":{"15":{"tf":1.0},"238":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"132":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"232":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"198":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.4142135623730951},"249":{"tf":1.0},"49":{"tf":1.0},"77":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"197":{"tf":1.0},"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"74":{"tf":1.7320508075688772},"79":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":5,"docs":{"228":{"tf":1.4142135623730951},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"250":{"tf":1.0},"30":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"l":{"df":4,"docs":{"201":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"8":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"df":2,"docs":{"195":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":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":{"195":{"tf":1.0}}}}},"df":5,"docs":{"193":{"tf":1.7320508075688772},"195":{"tf":2.23606797749979},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"4":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":43,"docs":{"0":{"tf":1.4142135623730951},"117":{"tf":2.449489742783178},"12":{"tf":1.0},"120":{"tf":1.0},"131":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.7320508075688772},"17":{"tf":1.0},"171":{"tf":1.0},"18":{"tf":2.0},"181":{"tf":1.4142135623730951},"192":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"22":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.4142135623730951},"23":{"tf":2.23606797749979},"230":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.7320508075688772},"234":{"tf":1.0},"238":{"tf":1.7320508075688772},"24":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"15":{"tf":1.0},"16":{"tf":1.0},"176":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"197":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"22":{"tf":1.0},"247":{"tf":1.0}}}},"t":{"df":2,"docs":{"169":{"tf":1.0},"171":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"171":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"195":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"21":{"tf":1.4142135623730951},"245":{"tf":1.0}},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"228":{"tf":1.0},"235":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}},"r":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"187":{"tf":1.0},"188":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"230":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"71":{"tf":1.0}}},"m":{"df":1,"docs":{"233":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"230":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"233":{"tf":1.0},"236":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":2.23606797749979},"60":{"tf":1.7320508075688772}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"238":{"tf":1.0},"71":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"p":{"1":{"df":0,"docs":{},"y":{"2":{"df":0,"docs":{},"m":{"1":{"0":{"d":{"df":0,"docs":{},"t":{"2":{"df":0,"docs":{},"h":{"3":{"0":{"df":0,"docs":{},"m":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"1":{"2":{"df":0,"docs":{},"h":{"3":{"0":{"df":0,"docs":{},"m":{"5":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"247":{"tf":1.0},"57":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":9,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.7320508075688772},"245":{"tf":1.4142135623730951},"54":{"tf":1.0},"75":{"tf":1.0}},"o":{"d":{"b":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"b":{"0":{"7":{"7":{"6":{"5":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":20,"docs":{"127":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"187":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"221":{"tf":1.4142135623730951},"232":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"34":{"tf":1.0},"45":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"194":{"tf":1.4142135623730951},"233":{"tf":1.0},"252":{"tf":1.0},"6":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"234":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"170":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"236":{"tf":1.0},"34":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"238":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"187":{"tf":1.0},"188":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"40":{"tf":1.0}}}},"df":1,"docs":{"20":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":2.23606797749979}}}}},"df":2,"docs":{"177":{"tf":1.0},"178":{"tf":1.4142135623730951}},"e":{"df":1,"docs":{"105":{"tf":1.0}},"|":{".":{"*":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"89":{"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":3,"docs":{"110":{"tf":1.0},"237":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"228":{"tf":1.0},"250":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"179":{"tf":1.0},"40":{"tf":1.7320508075688772},"97":{"tf":2.0}}}}}}},"i":{"d":{"df":2,"docs":{"206":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"190":{"tf":1.0},"226":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}},"b":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"11":{"tf":1.0},"238":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"33":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"74":{"tf":1.0}}}}},"o":{"d":{"df":7,"docs":{"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"150":{"tf":1.0},"155":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"194":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":17,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"193":{"tf":1.0},"228":{"tf":2.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"232":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"241":{"tf":1.7320508075688772},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.4142135623730951},"250":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"df":2,"docs":{"195":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"'":{"df":8,"docs":{"148":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":1.4142135623730951},"18":{"tf":1.0},"200":{"tf":1.0},"21":{"tf":1.4142135623730951},"246":{"tf":1.0}}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{":":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"195":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"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":{"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"195":{"tf":1.4142135623730951},"198":{"tf":1.0},"4":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"198":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":73,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"13":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"16":{"tf":1.7320508075688772},"167":{"tf":1.0},"17":{"tf":1.0},"181":{"tf":2.0},"185":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.7320508075688772},"198":{"tf":2.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"20":{"tf":2.0},"202":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":2.0},"215":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"220":{"tf":1.4142135623730951},"222":{"tf":1.0},"224":{"tf":1.4142135623730951},"228":{"tf":2.23606797749979},"229":{"tf":1.0},"231":{"tf":1.4142135623730951},"234":{"tf":2.8284271247461903},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"48":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0}}},"df":11,"docs":{"106":{"tf":1.0},"149":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"192":{"tf":1.0},"2":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"228":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"231":{"tf":1.0},"233":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"215":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":8,"docs":{"157":{"tf":1.0},"21":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.0},"76":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"238":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}}},"v":{"df":1,"docs":{"198":{"tf":2.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"186":{"tf":1.0},"35":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"140":{"tf":1.0},"238":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}},"t":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"109":{"tf":1.0},"117":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"229":{"tf":1.0},"39":{"tf":1.0},"71":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":1,"docs":{"233":{"tf":1.0}},"s":{"df":5,"docs":{"13":{"tf":1.0},"228":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":2.23606797749979}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"232":{"tf":1.0},"235":{"tf":1.0},"244":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"19":{"tf":1.4142135623730951},"220":{"tf":1.0},"24":{"tf":1.0},"54":{"tf":1.0},"76":{"tf":1.0}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"110":{"tf":1.0},"88":{"tf":2.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"t":{"c":{"df":3,"docs":{"20":{"tf":1.0},"250":{"tf":1.4142135623730951},"48":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":2,"docs":{"229":{"tf":1.0},"230":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"85":{"tf":2.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"15":{"tf":1.0},"195":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0}},"t":{"df":4,"docs":{"204":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.0}},"u":{"df":1,"docs":{"233":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"232":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"165":{"tf":1.0},"166":{"tf":1.0},"76":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"213":{"tf":1.0},"214":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":18,"docs":{"10":{"tf":2.0},"13":{"tf":1.4142135623730951},"141":{"tf":1.0},"167":{"tf":1.4142135623730951},"199":{"tf":1.0},"206":{"tf":1.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"245":{"tf":1.0},"44":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"76":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.0},"129":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"149":{"tf":1.0},"29":{"tf":1.0}},"e":{"d":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"v":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":1,"docs":{"159":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"190":{"tf":1.0},"198":{"tf":1.0},"215":{"tf":1.0},"228":{"tf":1.0},"243":{"tf":1.0},"247":{"tf":1.4142135623730951},"29":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":19,"docs":{"13":{"tf":1.4142135623730951},"131":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.4142135623730951},"192":{"tf":1.0},"220":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.4142135623730951},"241":{"tf":1.0},"250":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.7320508075688772}}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"120":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"252":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":5,"docs":{"139":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.7320508075688772},"237":{"tf":1.0},"241":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"194":{"tf":1.0},"20":{"tf":1.0},"234":{"tf":1.0},"6":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"193":{"tf":1.0},"199":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"57":{"tf":1.7320508075688772},"61":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"37":{"tf":1.0},"38":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"0":{"tf":1.0},"198":{"tf":1.0}}}}}}},"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"201":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"195":{"tf":1.0},"204":{"tf":1.0},"235":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"r":{"df":1,"docs":{"238":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"195":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"127":{"tf":1.0},"132":{"tf":1.0},"140":{"tf":1.0},"17":{"tf":1.4142135623730951},"37":{"tf":1.0},"44":{"tf":1.0},"55":{"tf":1.4142135623730951},"89":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"125":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":2,"docs":{"125":{"tf":2.23606797749979},"235":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"238":{"tf":1.0}}}}}}}},"f":{"7":{"c":{"3":{"1":{"4":{"d":{"d":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"235":{"tf":1.0},"238":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"237":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"159":{"tf":1.0}}},"s":{"df":6,"docs":{"139":{"tf":1.0},"224":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"11":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"33":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"241":{"tf":1.0},"25":{"tf":1.0}}}}}},"t":{"df":3,"docs":{"228":{"tf":1.0},"237":{"tf":1.0},"243":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"237":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"17":{"tf":1.0},"230":{"tf":1.0}}}}}}},"df":10,"docs":{"180":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":2.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"220":{"tf":1.7320508075688772},"221":{"tf":2.449489742783178},"222":{"tf":1.0},"77":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"192":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"220":{"tf":1.0},"30":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":5,"docs":{"11":{"tf":1.4142135623730951},"226":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"252":{"tf":1.0}}},"t":{"df":1,"docs":{"232":{"tf":1.0}}}},"w":{"df":2,"docs":{"232":{"tf":1.0},"235":{"tf":1.0}}}},"i":{"b":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"56":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":10,"docs":{"117":{"tf":2.23606797749979},"169":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"206":{"tf":1.0},"25":{"tf":1.0},"39":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"213":{"tf":2.0},"214":{"tf":1.4142135623730951},"220":{"tf":2.6457513110645907},"235":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"40":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"134":{"tf":1.0}}}}}}},"df":4,"docs":{"134":{"tf":1.4142135623730951},"29":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":2,"docs":{"173":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"'":{"df":0,"docs":{},"}":{",":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":23,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"117":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"232":{"tf":1.4142135623730951},"234":{"tf":1.0},"238":{"tf":1.4142135623730951},"241":{"tf":1.7320508075688772},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"58":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"232":{"tf":1.0}},"r":{"2":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"219":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}},"t":{"df":1,"docs":{"238":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"233":{"tf":1.0},"238":{"tf":1.4142135623730951},"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"224":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":18,"docs":{"12":{"tf":1.0},"120":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.0},"187":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"222":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"29":{"tf":1.0},"37":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.4142135623730951},"94":{"tf":1.0}}}}}},"o":{"2":{"df":2,"docs":{"74":{"tf":1.0},"78":{"tf":1.0}}},"df":4,"docs":{"74":{"tf":1.7320508075688772},"77":{"tf":1.0},"78":{"tf":2.23606797749979},"91":{"tf":2.0}}},"r":{"c":{"df":4,"docs":{"136":{"tf":1.0},"215":{"tf":1.0},"238":{"tf":1.0},"44":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"238":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"v":{"df":2,"docs":{"0":{"tf":1.0},"232":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"122":{"tf":1.0},"144":{"tf":1.4142135623730951},"170":{"tf":1.0},"202":{"tf":1.0},"213":{"tf":1.0},"220":{"tf":1.0},"228":{"tf":1.0}}}},"df":17,"docs":{"125":{"tf":1.0},"158":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"216":{"tf":2.0},"217":{"tf":1.0},"218":{"tf":1.0},"222":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"84":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"117":{"tf":1.0},"147":{"tf":1.0},"162":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"21":{"tf":1.0},"248":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"233":{"tf":2.23606797749979}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"c":{"a":{"df":2,"docs":{"230":{"tf":1.0},"232":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"234":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"228":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.0},"8":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":64,"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},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"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.4142135623730951},"144":{"tf":1.7320508075688772},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"175":{"tf":2.6457513110645907},"186":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"73":{"tf":1.0},"86":{"tf":1.4142135623730951},"88":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"169":{"tf":1.0},"206":{"tf":1.0},"29":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"237":{"tf":1.0},"248":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":4,"docs":{"13":{"tf":1.0},"228":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"194":{"tf":1.0},"253":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"233":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"245":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":4,"docs":{"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"236":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"221":{"tf":1.0}}}}},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"243":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"213":{"tf":1.0},"214":{"tf":1.0}}}},"t":{"@":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"10":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":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":{"252":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"230":{"tf":1.0},"37":{"tf":1.0}},"n":{"df":10,"docs":{"107":{"tf":1.0},"115":{"tf":1.0},"128":{"tf":1.4142135623730951},"130":{"tf":1.0},"133":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.4142135623730951},"171":{"tf":1.0},"37":{"tf":1.0},"48":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":1,"docs":{"90":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"234":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"253":{"tf":1.0}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"21":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.0}}}},"df":1,"docs":{"232":{"tf":1.0}},"e":{"df":2,"docs":{"230":{"tf":1.0},"56":{"tf":1.0}}},"o":{"d":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"250":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"241":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":4,"docs":{"230":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"83":{"tf":1.4142135623730951},"84":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"w":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"232":{"tf":1.0},"235":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"250":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"133":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"133":{"tf":1.0},"45":{"tf":2.23606797749979},"46":{"tf":1.4142135623730951}}}},"w":{"df":1,"docs":{"231":{"tf":1.0}},"n":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"230":{"tf":1.0}}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"194":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"ö":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"245":{"tf":1.0}}}}}}}}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"229":{"tf":1.0},"230":{"tf":1.0}}}},"n":{"d":{"df":3,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"34":{"tf":1.0}},"l":{"df":3,"docs":{"237":{"tf":1.0},"238":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"74":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"235":{"tf":1.0},"241":{"tf":1.4142135623730951}}}}}},"r":{"d":{"df":2,"docs":{"181":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":1,"docs":{"235":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"247":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"46":{"tf":2.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"241":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":22,"docs":{"122":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"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.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"5":{"tf":1.0},"8":{"tf":1.4142135623730951}},"e":{"a":{"d":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"0":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"199":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"208":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"237":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"c":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"235":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"245":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"175":{"tf":1.0},"21":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"230":{"tf":1.0}}}}}}}}},"o":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"213":{"tf":1.0}}}}}}},"df":0,"docs":{}},"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"102":{"tf":2.449489742783178},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"224":{"tf":1.0},"5":{"tf":1.0},"97":{"tf":2.0}}}},"p":{"df":3,"docs":{"148":{"tf":1.0},"170":{"tf":1.0},"198":{"tf":2.0}}}},"r":{"a":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":4,"docs":{"232":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0},"56":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"247":{"tf":1.0}}}}}}},"x":{"(":{"1":{"5":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"147":{"tf":1.4142135623730951}},"i":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"181":{"tf":1.0},"234":{"tf":1.0},"252":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"132":{"tf":1.0},"234":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"233":{"tf":1.0},"243":{"tf":1.0}},"i":{"df":11,"docs":{"0":{"tf":1.0},"157":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":2.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}}}},"o":{"c":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"228":{"tf":1.0},"239":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"241":{"tf":1.0}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"241":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"228":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"1":{".":{"1":{"df":1,"docs":{"215":{"tf":1.0}}},"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":{":":{"3":{"8":{"0":{"3":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"?":{"df":0,"docs":{},"p":{"=":{"%":{"5":{"b":{"%":{"2":{"2":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"%":{"2":{"2":{"%":{"2":{"c":{"%":{"2":{"2":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"%":{"2":{"2":{"%":{"5":{"d":{"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":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"q":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"%":{"2":{"0":{"1":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":22,"docs":{"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"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},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"5":{"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":{}},"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":1,"docs":{"198":{"tf":1.0}}}}}}},"df":16,"docs":{"10":{"tf":1.0},"192":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.449489742783178},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"215":{"tf":2.23606797749979},"31":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.0}},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"/":{"#":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"196":{"tf":1.0},"197":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"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":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"df":2,"docs":{"193":{"tf":1.4142135623730951},"195":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"238":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"220":{"tf":1.0},"233":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"233":{"tf":1.0},"246":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"å":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"251":{"tf":1.0}}},"df":1,"docs":{"253":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{".":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"m":{"df":1,"docs":{"233":{"tf":1.0}}}},"d":{"df":6,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0}},"e":{"a":{"df":4,"docs":{"148":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"233":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"224":{"tf":1.0},"67":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"131":{"tf":1.0},"147":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"235":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"f":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"139":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"245":{"tf":1.0}}}}}}}},"m":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"193":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":5,"docs":{"149":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"187":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"13":{"tf":1.7320508075688772},"155":{"tf":1.0},"22":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"235":{"tf":1.7320508075688772},"236":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.0}}}}},"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":{"21":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"241":{"tf":1.0},"250":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"232":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"224":{"tf":1.0},"32":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"15":{"tf":1.0},"78":{"tf":1.0}}}}}}},"df":1,"docs":{"232":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"149":{"tf":1.0},"206":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"231":{"tf":1.0},"238":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":11,"docs":{"106":{"tf":1.0},"173":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.4142135623730951},"241":{"tf":1.0},"243":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":2.0},"41":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":2,"docs":{"24":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"230":{"tf":1.0},"233":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"237":{"tf":1.0},"250":{"tf":1.0}}}}}},"l":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"184":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"181":{"tf":2.0},"21":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"248":{"tf":1.0},"251":{"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":{"228":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"117":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}}}},"df":25,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"168":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"199":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.7320508075688772},"222":{"tf":1.0},"23":{"tf":3.1622776601683795},"245":{"tf":1.0},"29":{"tf":2.8284271247461903},"39":{"tf":1.0},"58":{"tf":2.0},"64":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":2,"docs":{"228":{"tf":1.0},"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"158":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"167":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":1.0},"21":{"tf":2.0},"245":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.0},"4":{"tf":1.7320508075688772},"8":{"tf":1.0}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":7,"docs":{"220":{"tf":1.0},"222":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"105":{"tf":1.4142135623730951}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":8,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"119":{"tf":1.0},"136":{"tf":1.0},"224":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.7320508075688772},"86":{"tf":1.0}},"r":{"df":1,"docs":{"232":{"tf":1.0}}}},"n":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1":{"tf":1.0},"233":{"tf":1.0}}}}},"f":{"a":{"c":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":2,"docs":{"125":{"tf":1.0},"234":{"tf":1.0}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"50":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"54":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"v":{"df":3,"docs":{"148":{"tf":1.0},"224":{"tf":1.4142135623730951},"71":{"tf":2.6457513110645907}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":4,"docs":{"231":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"155":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"c":{"df":2,"docs":{"213":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.4142135623730951},"231":{"tf":1.0},"238":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":7,"docs":{"224":{"tf":2.0},"233":{"tf":1.0},"245":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"t":{"'":{"df":5,"docs":{"16":{"tf":1.0},"230":{"tf":1.4142135623730951},"234":{"tf":1.0},"235":{"tf":1.7320508075688772},"241":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"21":{"tf":1.0},"220":{"tf":1.0}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":4,"docs":{"15":{"tf":1.0},"16":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0}}},"m":{"df":1,"docs":{"221":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"18":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"a":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"18":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"245":{"tf":1.0}}}}}}},"o":{"b":{"df":3,"docs":{"237":{"tf":1.0},"239":{"tf":1.4142135623730951},"246":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"225":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"14":{"tf":2.0},"184":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":1.0},"247":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":2.6457513110645907},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.7320508075688772}}}},"y":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":21,"docs":{"17":{"tf":1.0},"175":{"tf":1.0},"203":{"tf":2.0},"204":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.7320508075688772},"216":{"tf":2.0},"217":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":3.3166247903554},"225":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"25":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"91":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"167":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"y":{"(":{"1":{"9":{"7":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"124":{"tf":1.4142135623730951},"148":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}}}}},"k":{"a":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"24":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":4,"docs":{"235":{"tf":1.0},"236":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"219":{"tf":1.0},"222":{"tf":1.0}}}}}},"df":0,"docs":{}},"y":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}}}}},"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":8,"docs":{"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"40":{"tf":1.0},"74":{"tf":1.4142135623730951},"79":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":9,"docs":{"221":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"230":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"11":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0}},"n":{"df":2,"docs":{"235":{"tf":1.0},"77":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"117":{"tf":1.0}}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"187":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"15":{"tf":1.0},"234":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"11":{"tf":1.0},"22":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"234":{"tf":2.8284271247461903},"9":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"146":{"tf":1.4142135623730951},"224":{"tf":1.0},"72":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"179":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"60":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"238":{"tf":1.0},"57":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}},"w":{"df":4,"docs":{"13":{"tf":1.0},"228":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":1.0}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"d":{"df":7,"docs":{"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"212":{"tf":1.0},"216":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"167":{"tf":1.0},"2":{"tf":1.0},"237":{"tf":1.0}}}},"s":{"df":2,"docs":{"57":{"tf":1.0},"60":{"tf":1.0}}},"v":{"df":2,"docs":{"16":{"tf":1.0},"235":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":8,"docs":{"102":{"tf":1.0},"117":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"39":{"tf":1.4142135623730951},"54":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"167":{"tf":1.0},"17":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"46":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"df":1,"docs":{"232":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"'":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":1,"docs":{"112":{"tf":1.0}}}}},"[":{"3":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"44":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":5,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.7320508075688772},"44":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}},"s":{"df":5,"docs":{"106":{"tf":1.0},"230":{"tf":1.0},"238":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.0}}}},"t":{"'":{"df":5,"docs":{"13":{"tf":1.0},"15":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"181":{"tf":1.0},"234":{"tf":1.0},"252":{"tf":1.0},"91":{"tf":1.4142135623730951}}}},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{".":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":1,"docs":{"238":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"227":{"tf":1.0},"253":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"235":{"tf":1.0}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"251":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":2.6457513110645907},"84":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"u":{"a":{"df":2,"docs":{"230":{"tf":1.0},"232":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"df":1,"docs":{"212":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"197":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":2,"docs":{"234":{"tf":1.0},"247":{"tf":1.0}}},"t":{"df":15,"docs":{"133":{"tf":1.0},"169":{"tf":1.0},"187":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":23,"docs":{"170":{"tf":2.0},"216":{"tf":1.4142135623730951},"221":{"tf":1.0},"224":{"tf":2.0},"225":{"tf":1.0},"23":{"tf":1.0},"49":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":2.0},"75":{"tf":1.0},"76":{"tf":2.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"238":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"230":{"tf":1.0},"250":{"tf":1.0}}}}},"n":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"154":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{},"g":{"1":{"0":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"120":{"tf":1.0}}},"df":4,"docs":{"120":{"tf":1.7320508075688772},"198":{"tf":1.0},"235":{"tf":1.7320508075688772},"243":{"tf":1.0}},"i":{"c":{"df":2,"docs":{"233":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"232":{"tf":1.0},"234":{"tf":1.4142135623730951},"241":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"30":{"tf":1.0},"61":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"169":{"tf":1.0},"233":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}}}}},"p":{"df":1,"docs":{"233":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"237":{"tf":1.0}}},"t":{"df":2,"docs":{"13":{"tf":1.0},"243":{"tf":1.0}}}},"t":{"df":2,"docs":{"231":{"tf":1.0},"232":{"tf":1.0}}},"w":{"df":1,"docs":{"233":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"103":{"tf":1.4142135623730951},"181":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.7320508075688772}}}}}},"y":{"df":1,"docs":{"16":{"tf":1.0}}}},"m":{")":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":3,"docs":{"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951}}}}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"237":{"tf":1.0}}}}},"o":{"df":1,"docs":{"197":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"243":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"196":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"229":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"9":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":11,"docs":{"13":{"tf":1.0},"148":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"220":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":12,"docs":{"17":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.0},"231":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.0},"34":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":6,"docs":{"117":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.4142135623730951},"238":{"tf":1.0},"40":{"tf":1.0},"87":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"237":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":1,"docs":{"225":{"tf":1.0}}},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"231":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"233":{"tf":1.7320508075688772},"235":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":13,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"20":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":2.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":3.4641016151377544},"95":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"187":{"tf":1.0},"241":{"tf":1.0}}}}},"h":{"df":2,"docs":{"120":{"tf":1.7320508075688772},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}}}}}},"x":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"127":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}}}}},"df":4,"docs":{"122":{"tf":1.4142135623730951},"147":{"tf":1.0},"200":{"tf":1.0},"219":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":10,"docs":{"149":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}}},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"247":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"247":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"221":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"25":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"220":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"238":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"241":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"54":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":1,"docs":{"127":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"127":{"tf":1.4142135623730951}}}}}},"u":{"df":1,"docs":{"86":{"tf":1.0}},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"224":{"tf":1.0},"63":{"tf":1.0}}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"195":{"tf":1.4142135623730951},"4":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"149":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"235":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"187":{"tf":1.0},"85":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"86":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.7320508075688772}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"d":{"b":{"df":4,"docs":{"234":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"71":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":20,"docs":{"15":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"221":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.7320508075688772},"238":{"tf":1.4142135623730951},"245":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"58":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"197":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"206":{"tf":1.7320508075688772},"216":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":12,"docs":{"151":{"tf":1.0},"180":{"tf":1.0},"222":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"231":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":1.4142135623730951},"40":{"tf":1.0},"86":{"tf":1.0},"97":{"tf":1.0}}}}}}},"n":{"d":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"233":{"tf":1.0},"235":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"56":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":60,"docs":{"110":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.0},"155":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":2.0},"18":{"tf":1.4142135623730951},"181":{"tf":1.0},"187":{"tf":2.23606797749979},"188":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":2.0},"205":{"tf":1.0},"206":{"tf":1.0},"217":{"tf":2.8284271247461903},"218":{"tf":1.4142135623730951},"219":{"tf":2.449489742783178},"220":{"tf":2.23606797749979},"221":{"tf":2.23606797749979},"222":{"tf":1.0},"23":{"tf":2.23606797749979},"24":{"tf":2.449489742783178},"26":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":3.3166247903554},"30":{"tf":1.0},"35":{"tf":1.7320508075688772},"37":{"tf":2.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":2.0},"46":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":2.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":2.0},"60":{"tf":1.7320508075688772},"64":{"tf":1.0},"74":{"tf":2.0},"76":{"tf":2.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.0},"83":{"tf":2.0},"85":{"tf":2.0},"88":{"tf":2.449489742783178},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"94":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"220":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"222":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":7,"docs":{"167":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"120":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":5,"docs":{"167":{"tf":1.4142135623730951},"169":{"tf":2.0},"170":{"tf":1.0},"175":{"tf":1.0},"20":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"211":{"tf":1.7320508075688772}}}}}}},"df":2,"docs":{"225":{"tf":1.0},"41":{"tf":2.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"252":{"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":{"234":{"tf":1.0},"235":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"205":{"tf":1.0}}}}}}},"df":1,"docs":{"235":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":9,"docs":{"12":{"tf":1.0},"190":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"226":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}},"g":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"84":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"250":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.4142135623730951},"21":{"tf":1.0},"219":{"tf":1.0},"238":{"tf":2.6457513110645907},"241":{"tf":1.0},"245":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"237":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"234":{"tf":1.0},"240":{"tf":1.0}}}}},"w":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":13,"docs":{"176":{"tf":1.7320508075688772},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"194":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.7320508075688772},"235":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"211":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"224":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":8,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.7320508075688772},"133":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.4142135623730951},"187":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":5,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"233":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"155":{"tf":1.0},"158":{"tf":1.0},"175":{"tf":1.0},"190":{"tf":1.0},"238":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"169":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":36,"docs":{"112":{"tf":1.0},"120":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.7320508075688772},"131":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"154":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"58":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0}}},"h":{"df":2,"docs":{"179":{"tf":1.0},"29":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"df":11,"docs":{"13":{"tf":1.0},"151":{"tf":1.4142135623730951},"156":{"tf":1.0},"16":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"241":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"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":14,"docs":{"117":{"tf":1.4142135623730951},"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"133":{"tf":1.0},"141":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"40":{"tf":1.0},"63":{"tf":2.23606797749979},"65":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"f":{"(":{"1":{"df":1,"docs":{"140":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"140":{"tf":1.4142135623730951}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"100":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"145":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.7320508075688772},"179":{"tf":1.0},"180":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"233":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.7320508075688772},"67":{"tf":1.0},"86":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"118":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"86":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.4142135623730951}}}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"115":{"tf":1.0},"40":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"[":{"[":{"'":{"a":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"113":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"113":{"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":{"114":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":27,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"146":{"tf":1.4142135623730951},"167":{"tf":1.0},"168":{"tf":1.7320508075688772},"17":{"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},"217":{"tf":1.0},"221":{"tf":2.449489742783178},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"23":{"tf":1.0},"233":{"tf":1.0},"250":{"tf":1.0},"40":{"tf":1.4142135623730951},"49":{"tf":2.6457513110645907},"72":{"tf":1.0},"74":{"tf":2.8284271247461903},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"207":{"tf":1.0},"235":{"tf":1.0}}}}}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"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":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"101":{"tf":1.7320508075688772}}}}}}}}},"df":1,"docs":{"101":{"tf":1.0}}}}}},"df":1,"docs":{"77":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"167":{"tf":1.0},"207":{"tf":1.0},"238":{"tf":1.0},"40":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}}}}},"k":{"df":2,"docs":{"76":{"tf":1.0},"93":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"228":{"tf":1.0},"233":{"tf":1.0},"249":{"tf":1.0}}}},"d":{"df":2,"docs":{"13":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":4,"docs":{"228":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"157":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":5,"docs":{"23":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":1.0}}},"df":27,"docs":{"125":{"tf":1.0},"132":{"tf":1.0},"17":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"230":{"tf":1.7320508075688772},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":2.23606797749979},"235":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"243":{"tf":1.0},"38":{"tf":1.4142135623730951},"51":{"tf":1.0},"73":{"tf":1.4142135623730951},"77":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"233":{"tf":1.0},"238":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"238":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"235":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"149":{"tf":1.4142135623730951},"228":{"tf":1.0},"240":{"tf":1.0},"245":{"tf":1.4142135623730951}}},"r":{"df":40,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"132":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"187":{"tf":1.0},"192":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"219":{"tf":1.4142135623730951},"231":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"50":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"59":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772},"97":{"tf":1.7320508075688772}}}},"t":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"*":{"/":{"*":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"106":{"tf":1.0},"110":{"tf":1.0},"133":{"tf":1.0},"147":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.4142135623730951},"200":{"tf":1.0},"37":{"tf":1.0},"64":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"110":{"tf":1.0},"132":{"tf":1.4142135623730951},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"218":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.0},"247":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.0},"44":{"tf":3.605551275463989},"45":{"tf":1.0},"47":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":2,"docs":{"41":{"tf":2.23606797749979},"77":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"13":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"180":{"tf":1.0},"253":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"229":{"tf":1.0},"240":{"tf":1.0}}}}}}},"t":{"df":4,"docs":{"0":{"tf":1.0},"146":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"199":{"tf":1.0},"241":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"213":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"228":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"0":{"tf":1.0},"199":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"35":{"tf":1.0},"7":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"149":{"tf":1.0},"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"133":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"176":{"tf":1.0}}}}}}}}}},"p":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}}},")":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":6,"docs":{"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"74":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"34":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"1":{"df":0,"docs":{},"y":{"2":{"df":0,"docs":{},"m":{"1":{"0":{"d":{"df":0,"docs":{},"t":{"2":{"df":0,"docs":{},"h":{"3":{"0":{"df":0,"docs":{},"m":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"\"":{"[":{"[":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"221":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"'":{"[":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"df":2,"docs":{"206":{"tf":1.0},"218":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"[":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"@":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{";":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"=":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"d":{".":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"220":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"d":{"df":2,"docs":{"64":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"21":{"tf":1.0},"233":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":8,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"147":{"tf":1.0},"224":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0}}}},"l":{"a":{"c":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"a":{"df":3,"docs":{"203":{"tf":1.0},"217":{"tf":1.0},"37":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"217":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":22,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"144":{"tf":1.0},"147":{"tf":2.0},"199":{"tf":1.0},"200":{"tf":2.0},"205":{"tf":1.7320508075688772},"216":{"tf":2.23606797749979},"217":{"tf":2.23606797749979},"218":{"tf":2.23606797749979},"219":{"tf":1.7320508075688772},"220":{"tf":2.0},"221":{"tf":2.0},"222":{"tf":1.0},"31":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"187":{"tf":1.0},"224":{"tf":1.0},"48":{"tf":1.0}}}}}}}},"t":{"df":3,"docs":{"162":{"tf":1.0},"216":{"tf":1.0},"232":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"236":{"tf":1.0},"239":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"136":{"tf":1.0},"21":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":1,"docs":{"234":{"tf":1.0}},"q":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"234":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"215":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"198":{"tf":1.4142135623730951},"215":{"tf":2.0}}},"df":0,"docs":{}}}}},"t":{"df":3,"docs":{"13":{"tf":1.0},"236":{"tf":1.0},"241":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"117":{"tf":2.449489742783178},"25":{"tf":2.6457513110645907}}}},"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"180":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":1,"docs":{"180":{"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":{},"{":{"a":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"178":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"179":{"tf":1.0},"27":{"tf":1.0}},"e":{"(":{"[":{"0":{",":{"1":{",":{"2":{",":{"3":{",":{"4":{"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":{}},"df":0,"docs":{},"{":{"df":0,"docs":{},"x":{"df":1,"docs":{"179":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"177":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"177":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"176":{"tf":1.0},"26":{"tf":1.0}}}}}},"df":18,"docs":{"167":{"tf":2.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"17":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":2.0},"172":{"tf":3.1622776601683795},"173":{"tf":2.8284271247461903},"174":{"tf":2.0},"175":{"tf":3.0},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":2.0},"20":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"27":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"@":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"110":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":18,"docs":{"14":{"tf":1.0},"184":{"tf":1.0},"195":{"tf":2.23606797749979},"198":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"79":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"29":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951}}}}}},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":4,"docs":{"232":{"tf":1.0},"238":{"tf":1.0},"30":{"tf":1.0},"40":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"29":{"tf":1.0},"81":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"d":{"df":9,"docs":{"149":{"tf":1.7320508075688772},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"238":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"9":{"tf":1.0}}}},"t":{"df":8,"docs":{"13":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"201":{"tf":1.0},"235":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"49":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"i":{"df":1,"docs":{"120":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"236":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"232":{"tf":1.7320508075688772},"234":{"tf":1.7320508075688772},"241":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"d":{"a":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"233":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}}}}}},"l":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"231":{"tf":1.0},"55":{"tf":1.0},"79":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"217":{"tf":1.0},"218":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":4,"docs":{"194":{"tf":1.0},"21":{"tf":1.0},"253":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"u":{"df":1,"docs":{"86":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"224":{"tf":1.0},"67":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"198":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"125":{"tf":2.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"200":{"tf":1.0},"218":{"tf":1.7320508075688772},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"78":{"tf":1.0}}},"x":{"df":1,"docs":{"234":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":19,"docs":{"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":27,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"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},"216":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"32":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"df":6,"docs":{"229":{"tf":1.0},"233":{"tf":1.0},"241":{"tf":1.0},"250":{"tf":1.0},"76":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}}}}}}}}}},"w":{"df":1,"docs":{"120":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"120":{"tf":1.0},"167":{"tf":1.0},"21":{"tf":1.4142135623730951},"231":{"tf":1.0},"40":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"149":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"76":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"224":{"tf":1.0},"226":{"tf":1.0},"234":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":3,"docs":{"149":{"tf":1.0},"160":{"tf":1.4142135623730951},"238":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{".":{"c":{"a":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"76":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"10":{"tf":1.0},"207":{"tf":1.0},"220":{"tf":1.4142135623730951},"35":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":3,"docs":{"85":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":6,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"194":{"tf":1.0},"233":{"tf":1.0},"6":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":32,"docs":{"112":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"23":{"tf":2.449489742783178},"238":{"tf":1.0},"24":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":3.1622776601683795},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"44":{"tf":2.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"55":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772}},"s":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"155":{"tf":1.0},"28":{"tf":1.0},"58":{"tf":1.0}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"235":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"234":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"229":{"tf":1.0},"235":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"64":{"tf":1.0}}}}},"u":{"c":{"df":1,"docs":{"239":{"tf":1.0}},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":10,"docs":{"112":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"25":{"tf":1.0},"29":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":2.0},"55":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772}}}}},"df":60,"docs":{"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.4142135623730951},"194":{"tf":1.0},"203":{"tf":1.7320508075688772},"206":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"221":{"tf":2.0},"229":{"tf":1.0},"23":{"tf":2.23606797749979},"236":{"tf":1.4142135623730951},"24":{"tf":2.23606797749979},"240":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":2.449489742783178},"30":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":2.6457513110645907},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":2.23606797749979},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"6":{"tf":1.0},"74":{"tf":2.0},"76":{"tf":1.4142135623730951},"79":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"85":{"tf":2.449489742783178},"88":{"tf":2.449489742783178},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"40":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}}}}},".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"25":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":1,"docs":{"29":{"tf":1.0}}}},"[":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"234":{"tf":1.0},"241":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"220":{"tf":1.0},"238":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"233":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.0},"77":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":32,"docs":{"10":{"tf":1.0},"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"17":{"tf":1.0},"180":{"tf":1.4142135623730951},"186":{"tf":1.0},"19":{"tf":1.0},"198":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"215":{"tf":1.0},"220":{"tf":1.0},"228":{"tf":2.0},"231":{"tf":1.0},"234":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.7320508075688772},"32":{"tf":1.0},"37":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"t":{"1":{"2":{"df":0,"docs":{},"h":{"3":{"0":{"df":0,"docs":{},"m":{"5":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}}},"4":{"df":0,"docs":{},"m":{"5":{"6":{".":{"7":{"8":{"9":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"230":{"tf":1.0},"233":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"195":{"tf":1.4142135623730951},"231":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":5,"docs":{"110":{"tf":1.0},"224":{"tf":1.0},"246":{"tf":1.0},"63":{"tf":1.0},"81":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"193":{"tf":1.0}}}},"z":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"c":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"213":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"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":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}},"q":{")":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"200":{"tf":1.0}}}}}}},"3":{"df":1,"docs":{"252":{"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":8,"docs":{"205":{"tf":1.0},"206":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"%":{"2":{"0":{"*":{"%":{"2":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"%":{"2":{"0":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"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":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"200":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"92":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":49,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"148":{"tf":1.4142135623730951},"15":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"16":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"220":{"tf":1.0},"228":{"tf":1.7320508075688772},"229":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":2.23606797749979},"234":{"tf":2.449489742783178},"236":{"tf":1.7320508075688772},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":2.0},"28":{"tf":1.0},"30":{"tf":1.4142135623730951},"33":{"tf":2.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.7320508075688772},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":2.23606797749979},"55":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"60":{"tf":1.0}}},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"235":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"233":{"tf":1.7320508075688772},"238":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"2":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"234":{"tf":1.0},"241":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"64":{"tf":1.0},"74":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"r":{"a":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"3":{"2":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"146":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":2,"docs":{"119":{"tf":2.0},"146":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"w":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"106":{"tf":1.0},"241":{"tf":1.0}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"192":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"239":{"tf":1.4142135623730951},"245":{"tf":1.0},"252":{"tf":1.0},"35":{"tf":1.0},"57":{"tf":1.4142135623730951},"8":{"tf":1.0}},"i":{"df":2,"docs":{"0":{"tf":1.0},"238":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"224":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"67":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"238":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"207":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"81":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"215":{"tf":1.0},"220":{"tf":1.0},"63":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"193":{"tf":1.0},"205":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"240":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"d":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"13":{"tf":1.4142135623730951},"155":{"tf":1.0},"16":{"tf":1.0},"212":{"tf":1.0},"228":{"tf":1.0},"235":{"tf":1.4142135623730951},"239":{"tf":1.0},"243":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"237":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":7,"docs":{"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"245":{"tf":1.0},"56":{"tf":3.3166247903554}}}}}},"d":{"df":2,"docs":{"219":{"tf":1.0},"222":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"u":{"c":{"df":2,"docs":{"231":{"tf":1.0},"237":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"187":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"17":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"233":{"tf":1.0},"253":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"79":{"tf":1.0},"91":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":2.23606797749979}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"203":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"df":1,"docs":{"104":{"tf":1.0}},"t":{"df":9,"docs":{"103":{"tf":1.0},"148":{"tf":1.4142135623730951},"167":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"230":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"238":{"tf":1.0},"29":{"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":2,"docs":{"14":{"tf":1.0},"238":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"194":{"tf":1.0},"20":{"tf":1.0},"241":{"tf":2.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":2.23606797749979}}}},"df":0,"docs":{},"v":{"df":2,"docs":{"157":{"tf":1.0},"234":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":11,"docs":{"117":{"tf":1.0},"13":{"tf":1.0},"179":{"tf":1.4142135623730951},"191":{"tf":1.0},"235":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"57":{"tf":1.0},"60":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":1,"docs":{"104":{"tf":1.7320508075688772}},"e":{"(":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"a":{"df":2,"docs":{"237":{"tf":1.0},"239":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"195":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":10,"docs":{"115":{"tf":1.0},"149":{"tf":1.0},"170":{"tf":1.0},"179":{"tf":1.0},"217":{"tf":1.0},"49":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"54":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":13,"docs":{"186":{"tf":1.0},"197":{"tf":1.0},"215":{"tf":1.4142135623730951},"22":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":2.23606797749979},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"203":{"tf":1.0},"204":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"127":{"tf":1.0},"241":{"tf":1.0},"35":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"181":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"t":{"df":3,"docs":{"10":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":25,"docs":{"132":{"tf":1.4142135623730951},"16":{"tf":1.0},"215":{"tf":1.0},"222":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"249":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"64":{"tf":1.0},"81":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"246":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":73,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":2.0},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"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},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.7320508075688772},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"220":{"tf":1.0},"222":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"238":{"tf":1.0},"249":{"tf":1.0},"34":{"tf":1.7320508075688772},"38":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":2.23606797749979},"57":{"tf":2.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":2.0},"63":{"tf":1.0},"76":{"tf":2.0},"84":{"tf":1.0},"85":{"tf":2.8284271247461903},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.7320508075688772},"92":{"tf":2.0},"93":{"tf":2.0},"94":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"233":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"110":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}}}}}}},"f":{"c":{"df":2,"docs":{"215":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"234":{"tf":1.0}}}},"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":7,"docs":{"102":{"tf":1.0},"230":{"tf":1.4142135623730951},"232":{"tf":1.0},"239":{"tf":1.0},"54":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"m":{"df":2,"docs":{"195":{"tf":1.7320508075688772},"4":{"tf":1.0}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":4,"docs":{"227":{"tf":1.0},"248":{"tf":1.0},"252":{"tf":1.4142135623730951},"30":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"57":{"tf":1.0},"58":{"tf":1.7320508075688772},"60":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"230":{"tf":1.0}}},"t":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"187":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":1,"docs":{"120":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"w":{"df":30,"docs":{"159":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":2.23606797749979},"18":{"tf":1.0},"181":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"228":{"tf":1.4142135623730951},"232":{"tf":1.0},"238":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"245":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"63":{"tf":1.0},"74":{"tf":1.4142135623730951},"76":{"tf":2.449489742783178},"77":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"229":{"tf":1.0}}}},"n":{"df":9,"docs":{"0":{"tf":1.0},"13":{"tf":1.0},"154":{"tf":1.0},"195":{"tf":2.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"32":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0}}}},"å":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"253":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"3":{"df":2,"docs":{"241":{"tf":1.0},"250":{"tf":1.0}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.0},"244":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"13":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"40":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":4,"docs":{"131":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"35":{"tf":1.0}},"s":{"_":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":10,"docs":{"117":{"tf":1.7320508075688772},"203":{"tf":1.0},"218":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"39":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"79":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":14,"docs":{"110":{"tf":1.0},"158":{"tf":1.0},"197":{"tf":1.0},"220":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"220":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"u":{"c":{"df":4,"docs":{"205":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"235":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"57":{"tf":3.1622776601683795},"58":{"tf":1.7320508075688772},"59":{"tf":2.8284271247461903},"60":{"tf":2.8284271247461903},"61":{"tf":1.4142135623730951}}}}}}}}},"w":{"df":2,"docs":{"233":{"tf":1.0},"241":{"tf":1.0}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"180":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"216":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"81":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"237":{"tf":1.0}}}},"n":{"df":1,"docs":{"171":{"tf":1.0}}},"r":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":10,"docs":{"181":{"tf":2.449489742783178},"186":{"tf":1.0},"20":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":2.8284271247461903},"24":{"tf":1.0},"34":{"tf":1.0},"76":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"12":{"tf":1.0},"167":{"tf":1.0},"181":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.4142135623730951},"24":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"230":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"60":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"21":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":3,"docs":{"122":{"tf":1.0},"184":{"tf":1.0},"35":{"tf":1.0}},"e":{"a":{"df":2,"docs":{"117":{"tf":1.0},"230":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"tf":1.0}}}}},"df":20,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"117":{"tf":1.7320508075688772},"123":{"tf":1.0},"133":{"tf":1.4142135623730951},"139":{"tf":1.0},"147":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"238":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"71":{"tf":1.0},"84":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"148":{"tf":1.0},"37":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":14,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"170":{"tf":1.0},"204":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0}},"m":{"df":1,"docs":{"16":{"tf":1.0}}},"n":{"df":5,"docs":{"155":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"46":{"tf":1.0},"56":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":143,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"102":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":2.449489742783178},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"13":{"tf":2.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":2.23606797749979},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":2.0},"15":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"16":{"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},"169":{"tf":1.7320508075688772},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":2.23606797749979},"173":{"tf":2.0},"174":{"tf":1.7320508075688772},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"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.4142135623730951},"185":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"19":{"tf":1.0},"190":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"205":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"218":{"tf":1.0},"220":{"tf":1.0},"222":{"tf":1.4142135623730951},"23":{"tf":1.0},"236":{"tf":1.4142135623730951},"245":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":3.0},"37":{"tf":2.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":2.23606797749979},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":2.23606797749979},"56":{"tf":2.449489742783178},"58":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"64":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":2.0},"76":{"tf":2.0},"77":{"tf":2.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"85":{"tf":2.449489742783178},"86":{"tf":3.0},"87":{"tf":1.7320508075688772},"88":{"tf":2.449489742783178},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":2.6457513110645907},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"97":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"f":{"df":2,"docs":{"198":{"tf":1.0},"237":{"tf":1.0}}},"l":{"df":1,"docs":{"240":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"58":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"222":{"tf":1.4142135623730951},"32":{"tf":1.0}}}}}}},"df":5,"docs":{"15":{"tf":1.0},"167":{"tf":1.0},"233":{"tf":1.4142135623730951},"238":{"tf":1.0},"245":{"tf":1.0}}}},"n":{"d":{"df":4,"docs":{"199":{"tf":1.4142135623730951},"202":{"tf":1.0},"222":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"13":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"88":{"tf":1.0},"90":{"tf":1.0}}}}},"t":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"209":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.7320508075688772},"24":{"tf":1.0},"250":{"tf":1.4142135623730951},"40":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"233":{"tf":1.0}}},"n":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"235":{"tf":1.0}},"s":{"df":1,"docs":{"235":{"tf":1.0}}}}}},"v":{"df":4,"docs":{"110":{"tf":1.0},"231":{"tf":1.0},"246":{"tf":1.0},"63":{"tf":1.0}}}},"t":{"df":15,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"175":{"tf":1.0},"219":{"tf":1.0},"24":{"tf":2.23606797749979},"249":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":2.0},"29":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"54":{"tf":2.0},"56":{"tf":1.0},"91":{"tf":1.0}}}},"h":{"a":{"1":{"(":{"'":{"2":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"145":{"tf":1.4142135623730951}}},"df":1,"docs":{"145":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}},"p":{"df":1,"docs":{"9":{"tf":1.0}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"40":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"139":{"tf":1.0},"22":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"w":{"df":1,"docs":{"13":{"tf":1.0}},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"233":{"tf":1.0},"236":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"85":{"tf":2.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":1,"docs":{"120":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"159":{"tf":1.0},"25":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"169":{"tf":1.0},"221":{"tf":1.0},"233":{"tf":1.0},"29":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"201":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"238":{"tf":1.0},"33":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"187":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"230":{"tf":1.0},"233":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.0},"55":{"tf":1.0}}}}}}}},"n":{"df":1,"docs":{"120":{"tf":1.0}},"g":{"df":0,"docs":{},"l":{"df":16,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"180":{"tf":1.0},"201":{"tf":1.0},"213":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":1.4142135623730951},"45":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"76":{"tf":1.4142135623730951},"87":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}},"h":{"df":1,"docs":{"120":{"tf":1.0}}}},"t":{"df":1,"docs":{"234":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"247":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"d":{"a":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"184":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"252":{"tf":1.0}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"19":{"tf":1.0},"230":{"tf":1.0}}}},"v":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"241":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"229":{"tf":1.0},"77":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"235":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":4,"docs":{"106":{"tf":1.0},"21":{"tf":1.0},"228":{"tf":1.0},"240":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"228":{"tf":1.0},"235":{"tf":1.0},"35":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"238":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"155":{"tf":1.0},"34":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":12,"docs":{"21":{"tf":1.7320508075688772},"233":{"tf":1.0},"234":{"tf":1.0},"241":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"58":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}},"i":{"df":15,"docs":{"117":{"tf":1.4142135623730951},"120":{"tf":1.0},"131":{"tf":1.0},"179":{"tf":1.0},"195":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"229":{"tf":1.0},"253":{"tf":1.0},"29":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"76":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"l":{"'":{"df":1,"docs":{"21":{"tf":1.0}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"167":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0}}}}}}},":":{"2":{"0":{"1":{"1":{"df":8,"docs":{"149":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"233":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"241":{"tf":1.0},"245":{"tf":1.0}}},"6":{"df":3,"docs":{"238":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}},"2":{"3":{"df":4,"docs":{"233":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{"df":2,"docs":{"238":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":54,"docs":{"0":{"tf":1.0},"10":{"tf":1.4142135623730951},"11":{"tf":2.449489742783178},"12":{"tf":1.0},"120":{"tf":1.7320508075688772},"131":{"tf":1.0},"148":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":2.449489742783178},"200":{"tf":1.0},"21":{"tf":3.0},"216":{"tf":1.4142135623730951},"22":{"tf":1.0},"220":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":3.4641016151377544},"234":{"tf":4.69041575982343},"238":{"tf":2.449489742783178},"24":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":2.0},"246":{"tf":1.0},"252":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"44":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"'":{"df":4,"docs":{"120":{"tf":1.0},"175":{"tf":1.0},"234":{"tf":1.0},"56":{"tf":1.0}}},"df":5,"docs":{"110":{"tf":1.0},"21":{"tf":1.4142135623730951},"234":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"35":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"229":{"tf":1.0}}},"i":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"193":{"tf":1.0},"199":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"'":{"df":1,"docs":{"149":{"tf":1.0}}},"df":18,"docs":{"120":{"tf":1.4142135623730951},"160":{"tf":1.0},"169":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"44":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":10,"docs":{"106":{"tf":1.0},"12":{"tf":1.0},"149":{"tf":1.4142135623730951},"159":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"204":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"234":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":7,"docs":{"13":{"tf":1.0},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"233":{"tf":1.7320508075688772},"245":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"18":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"220":{"tf":1.4142135623730951},"222":{"tf":2.23606797749979},"228":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"58":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.0}}}}}}},"i":{"c":{"df":5,"docs":{"186":{"tf":1.0},"220":{"tf":1.0},"238":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"215":{"tf":1.4142135623730951},"76":{"tf":2.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"93":{"tf":1.0}}}}},"y":{"df":1,"docs":{"238":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"190":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"16":{"tf":1.0},"194":{"tf":1.0},"230":{"tf":1.4142135623730951},"238":{"tf":1.0},"29":{"tf":1.0},"6":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":1,"docs":{"229":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":11,"docs":{"194":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":2.6457513110645907},"234":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":2.0},"241":{"tf":1.0},"246":{"tf":1.0},"250":{"tf":2.23606797749979},"6":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":11,"docs":{"0":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"235":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0}}},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"214":{"tf":1.4142135623730951},"220":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0}},"e":{"d":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"214":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"'":{"%":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":1.0}}},"y":{"/":{"%":{"df":0,"docs":{},"m":{"/":{"%":{"d":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"122":{"tf":1.4142135623730951},"148":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"241":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"185":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":30,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"145":{"tf":1.0},"147":{"tf":2.23606797749979},"222":{"tf":1.4142135623730951},"224":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.7320508075688772},"99":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"33":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"21":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"15":{"tf":1.0},"167":{"tf":1.0},"181":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"238":{"tf":1.0},"245":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"u":{"b":{"df":2,"docs":{"169":{"tf":1.0},"55":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"205":{"tf":1.0},"220":{"tf":1.7320508075688772}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"92":{"tf":2.23606797749979},"93":{"tf":2.23606797749979},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"175":{"tf":1.0},"203":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"217":{"tf":1.0},"218":{"tf":1.0}}}}}},"r":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"105":{"tf":1.0},"106":{"tf":2.449489742783178}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"71":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"149":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"233":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"222":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":7,"docs":{"148":{"tf":1.0},"181":{"tf":1.4142135623730951},"22":{"tf":1.0},"220":{"tf":1.0},"28":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"13":{"tf":1.0}},"i":{"df":2,"docs":{"229":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":3,"docs":{"157":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"m":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"128":{"tf":1.0},"134":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"128":{"tf":2.0},"129":{"tf":1.0},"45":{"tf":1.0}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":10,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"140":{"tf":1.0},"156":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":15,"docs":{"150":{"tf":1.0},"175":{"tf":1.0},"186":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.0},"39":{"tf":1.0},"80":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"197":{"tf":1.0},"230":{"tf":1.0},"250":{"tf":1.0}}},"f":{"a":{"c":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":7,"docs":{"106":{"tf":1.0},"112":{"tf":1.4142135623730951},"172":{"tf":1.0},"27":{"tf":1.0},"64":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"x":{"df":7,"docs":{"125":{"tf":1.0},"158":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"245":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":7,"docs":{"13":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"236":{"tf":1.0}}}}}},"df":7,"docs":{"155":{"tf":1.7320508075688772},"158":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.0},"235":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"t":{"1":{"df":6,"docs":{"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0}}},"a":{"b":{"df":0,"docs":{},"l":{"df":29,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"157":{"tf":1.0},"168":{"tf":1.4142135623730951},"170":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"185":{"tf":1.0},"190":{"tf":1.4142135623730951},"216":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.4142135623730951},"238":{"tf":2.0},"247":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.7320508075688772},"37":{"tf":2.23606797749979},"42":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772}},"e":{"'":{"df":1,"docs":{"76":{"tf":1.0}}},"_":{"c":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":3,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"182":{"tf":1.7320508075688772},"183":{"tf":1.0},"184":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":3,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":19,"docs":{"117":{"tf":1.0},"130":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.7320508075688772},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"40":{"tf":1.0},"55":{"tf":1.0},"76":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"231":{"tf":1.0},"251":{"tf":1.0}}}},"n":{"df":1,"docs":{"120":{"tf":1.0}},"h":{"df":1,"docs":{"120":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"df":2,"docs":{"197":{"tf":1.0},"215":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"21":{"tf":1.0}}},"t":{"df":1,"docs":{"252":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"234":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"23":{"tf":1.0}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"230":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"241":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"231":{"tf":1.0},"234":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"37":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}},"df":4,"docs":{"149":{"tf":1.0},"230":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0}}}}}},"n":{"d":{"df":1,"docs":{"34":{"tf":1.0}}},"df":1,"docs":{"230":{"tf":1.0}},"t":{"a":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"231":{"tf":1.0},"252":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"56":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":2,"docs":{"201":{"tf":1.0},"209":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":6,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.0},"224":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"13":{"tf":1.0},"232":{"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":2,"docs":{"132":{"tf":1.0},"56":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"0":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":3,"docs":{"229":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"228":{"tf":1.0},"229":{"tf":1.0}}},"k":{"df":3,"docs":{"243":{"tf":1.0},"250":{"tf":1.0},"53":{"tf":1.0}}}},"r":{"d":{"df":6,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"139":{"tf":1.0},"234":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"117":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"81":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"15":{"tf":1.0},"172":{"tf":1.0},"205":{"tf":1.0},"241":{"tf":1.0}},"t":{"df":2,"docs":{"40":{"tf":1.0},"74":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"21":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":2,"docs":{"232":{"tf":1.0},"73":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"2":{"tf":1.0},"234":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"df":2,"docs":{"199":{"tf":1.0},"8":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":31,"docs":{"11":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.7320508075688772},"13":{"tf":2.0},"148":{"tf":2.23606797749979},"149":{"tf":1.7320508075688772},"150":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"20":{"tf":1.0},"224":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"230":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":3.0},"236":{"tf":1.4142135623730951},"238":{"tf":2.0},"241":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":2.6457513110645907},"71":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"232":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":7,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"148":{"tf":1.0},"156":{"tf":1.0},"224":{"tf":1.4142135623730951},"68":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"150":{"tf":1.0},"80":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"64":{"tf":1.0}}}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"241":{"tf":1.4142135623730951},"250":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"_":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":2,"docs":{"23":{"tf":1.0},"88":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"230":{"tf":1.0},"234":{"tf":1.0},"58":{"tf":1.0},"97":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"237":{"tf":1.0}}}}},"m":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"235":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":4,"docs":{"10":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0}}}},"p":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"21":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"235":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"r":{"a":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"229":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"243":{"tf":1.0},"246":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"/":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"13":{"tf":1.0},"156":{"tf":1.4142135623730951},"228":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.4142135623730951},"238":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"156":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"169":{"tf":1.0}}}},"i":{"df":9,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"168":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"7":{"tf":1.0},"9":{"tf":1.0}},"m":{"df":1,"docs":{"102":{"tf":2.0}}},"p":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"232":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"237":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"df":24,"docs":{"139":{"tf":1.0},"140":{"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},"206":{"tf":1.0},"219":{"tf":1.4142135623730951},"229":{"tf":1.0},"230":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.449489742783178},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"244":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"235":{"tf":1.0},"238":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"2":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"210":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"147":{"tf":1.7320508075688772},"235":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"10":{"tf":1.0},"2":{"tf":1.4142135623730951}}}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"'":{"df":1,"docs":{"224":{"tf":1.0}}},"df":18,"docs":{"117":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.4142135623730951},"140":{"tf":1.0},"159":{"tf":1.0},"233":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"58":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.7320508075688772},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"97":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"228":{"tf":1.0},"238":{"tf":1.0}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":46,"docs":{"11":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.4142135623730951},"167":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.7320508075688772},"20":{"tf":1.0},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":2.23606797749979},"204":{"tf":2.0},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":2.23606797749979},"226":{"tf":1.4142135623730951},"228":{"tf":1.0},"234":{"tf":2.0},"245":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"2":{"df":0,"docs":{},"u":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}}},"1":{".":{"1":{"2":{"3":{"4":{"5":{"6":{"7":{"8":{"9":{"0":{"1":{"2":{"3":{"4":{"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":{}},"df":0,"docs":{}},"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":{"0":{"1":{"8":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"185":{"tf":1.0},"190":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"137":{"tf":1.4142135623730951}}}}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"=":{"d":{"a":{"df":0,"docs":{},"t":{"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":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"df":1,"docs":{"14":{"tf":1.0}},"i":{"df":1,"docs":{"245":{"tf":1.0}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"246":{"tf":1.0},"9":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"235":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"224":{"tf":1.0}}}}},"r":{"df":11,"docs":{"120":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"20":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.0},"31":{"tf":1.0},"86":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"234":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"0":{"tf":1.0},"228":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"233":{"tf":1.0},"237":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"(":{"'":{"3":{"1":{"3":{"5":{"df":1,"docs":{"147":{"tf":1.0}},"z":{"df":0,"docs":{},"z":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"147":{"tf":2.0}}}}},"i":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"100":{"tf":1.0},"107":{"tf":1.7320508075688772}},"e":{"(":{"'":{"a":{"d":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":2.0},"54":{"tf":2.449489742783178},"56":{"tf":1.7320508075688772}}}},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}},"t":{"df":1,"docs":{"245":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"144":{"tf":1.0},"229":{"tf":1.0}}}}}},"x":{"df":2,"docs":{"123":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{"'":{"2":{"0":{"2":{"3":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"9":{"7":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"123":{"tf":1.4142135623730951},"148":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"237":{"tf":1.0},"63":{"tf":1.0},"85":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"235":{"tf":1.0},"253":{"tf":1.0},"47":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":3,"docs":{"220":{"tf":1.0},"238":{"tf":1.0},"76":{"tf":1.0}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"[":{"1":{".":{"9":{"9":{"df":2,"docs":{"40":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"40":{"tf":2.0},"41":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}},"df":2,"docs":{"24":{"tf":2.449489742783178},"27":{"tf":2.0}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.7320508075688772}}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"194":{"tf":1.0},"6":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"230":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":13,"docs":{"117":{"tf":1.0},"13":{"tf":2.23606797749979},"16":{"tf":1.0},"175":{"tf":1.4142135623730951},"190":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":3.0},"243":{"tf":1.0},"25":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"27":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":5,"docs":{"149":{"tf":1.0},"16":{"tf":1.0},"195":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"103":{"tf":1.4142135623730951},"147":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.7320508075688772}}}}}}},"r":{"d":{"df":0,"docs":{},"u":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"226":{"tf":1.0}}},"l":{"df":2,"docs":{"201":{"tf":1.0},"216":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"207":{"tf":1.7320508075688772},"216":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"198":{"tf":1.4142135623730951},"76":{"tf":1.0}}}},"df":69,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"148":{"tf":1.0},"18":{"tf":1.0},"181":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":2.23606797749979},"221":{"tf":1.0},"226":{"tf":1.7320508075688772},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"231":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"25":{"tf":1.0},"252":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"40":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}},"df":30,"docs":{"10":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"15":{"tf":2.0},"16":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"220":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"244":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.0},"252":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0},"76":{"tf":2.0},"8":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"198":{"tf":1.4142135623730951},"215":{"tf":2.0}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"[":{"1":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"_":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"76":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":6,"docs":{"124":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":2,"docs":{"147":{"tf":1.0},"224":{"tf":1.0}}}},"u":{"df":0,"docs":{},"i":{"d":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"'":{"d":{"2":{"c":{"df":0,"docs":{},"e":{"2":{"1":{"c":{"9":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"'":{"d":{"2":{"c":{"df":0,"docs":{},"e":{"2":{"1":{"c":{"9":{"d":{"2":{"6":{"8":{"4":{"0":{"9":{"a":{"b":{"1":{"df":0,"docs":{},"e":{"0":{"4":{"9":{"df":0,"docs":{},"e":{"1":{"2":{"0":{"0":{"b":{"df":0,"docs":{},"f":{"a":{"4":{"7":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{"'":{"d":{"2":{"c":{"df":0,"docs":{},"e":{"2":{"1":{"c":{"9":{"d":{"2":{"6":{"8":{"4":{"0":{"9":{"a":{"b":{"1":{"df":0,"docs":{},"e":{"0":{"4":{"9":{"df":0,"docs":{},"e":{"1":{"2":{"0":{"0":{"b":{"df":0,"docs":{},"f":{"a":{"4":{"7":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"'":{"d":{"2":{"c":{"df":0,"docs":{},"e":{"2":{"1":{"c":{"9":{"d":{"2":{"6":{"8":{"4":{"0":{"9":{"a":{"b":{"1":{"df":0,"docs":{},"e":{"0":{"4":{"9":{"df":0,"docs":{},"e":{"1":{"2":{"0":{"0":{"b":{"df":0,"docs":{},"f":{"a":{"4":{"7":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"144":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"144":{"tf":2.449489742783178},"226":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"3":{".":{"0":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"81":{"tf":2.0}},"i":{"d":{"df":2,"docs":{"12":{"tf":1.0},"167":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":67,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.0},"127":{"tf":1.7320508075688772},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"145":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"180":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"224":{"tf":1.0},"23":{"tf":1.7320508075688772},"233":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"37":{"tf":2.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"48":{"tf":2.0},"56":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"/":{"@":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"226":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}},"t":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}},"df":5,"docs":{"195":{"tf":1.7320508075688772},"198":{"tf":1.0},"29":{"tf":2.0},"35":{"tf":1.0},"4":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"df":2,"docs":{"199":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":5,"docs":{"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"241":{"tf":1.4142135623730951}}},"s":{"a":{"df":2,"docs":{"143":{"tf":1.0},"18":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"110":{"tf":1.0},"13":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"230":{"tf":1.0}},"i":{"df":1,"docs":{"230":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"143":{"tf":1.0},"18":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"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":{"184":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"184":{"tf":1.0},"186":{"tf":1.4142135623730951},"187":{"tf":3.0},"188":{"tf":2.0},"20":{"tf":1.0},"28":{"tf":1.0},"55":{"tf":1.0}}}},"k":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"16":{"tf":1.0}}},"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"13":{"tf":1.4142135623730951},"157":{"tf":1.0},"236":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":3,"docs":{"171":{"tf":1.0},"2":{"tf":1.0},"56":{"tf":1.0}}},"l":{"df":1,"docs":{"233":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"167":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"236":{"tf":1.4142135623730951},"24":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"194":{"tf":1.0},"6":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"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":{"233":{"tf":1.0}}}}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":8,"docs":{"0":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"220":{"tf":1.0},"236":{"tf":1.4142135623730951},"238":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"13":{"tf":1.0},"199":{"tf":1.0},"238":{"tf":1.0}}}},"r":{"df":1,"docs":{"230":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"238":{"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":2,"docs":{"231":{"tf":1.0},"234":{"tf":1.4142135623730951}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"71":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"131":{"tf":1.4142135623730951},"233":{"tf":1.0},"35":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"102":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"174":{"tf":1.7320508075688772},"175":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"132":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"55":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"16":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"34":{"tf":1.0},"60":{"tf":1.0}}}}}}}},"o":{"b":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":5,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0}}},"l":{"d":{"df":7,"docs":{"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"238":{"tf":2.0},"250":{"tf":1.0},"5":{"tf":1.0},"97":{"tf":2.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"10":{"tf":1.0},"221":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"215":{"tf":1.0},"228":{"tf":1.0},"34":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"207":{"tf":1.7320508075688772},"216":{"tf":1.0}}}}},"x":{"%":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"'":{"d":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"224":{"tf":1.0},"72":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":30,"docs":{"110":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"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},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"88":{"tf":1.0},"91":{"tf":2.0}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"238":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"21":{"tf":1.0},"241":{"tf":1.4142135623730951}}}}}}},"s":{"d":{":":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"224":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"224":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"204":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"224":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"224":{"tf":1.0}}}}},"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":2,"docs":{"224":{"tf":1.0},"226":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"224":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"216":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":3,"docs":{"158":{"tf":1.0},"179":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"229":{"tf":1.0},"230":{"tf":1.4142135623730951},"241":{"tf":1.0},"71":{"tf":1.0}}}},"df":1,"docs":{"234":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"219":{"tf":1.0},"222":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"13":{"tf":1.0},"195":{"tf":1.0},"234":{"tf":1.0}}}},"r":{"df":2,"docs":{"0":{"tf":1.0},"250":{"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":{"167":{"tf":1.0}}}}}}}}}},"z":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"141":{"tf":1.0},"215":{"tf":1.0},"81":{"tf":1.7320508075688772}}}},"df":1,"docs":{"147":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"3":{"2":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"146":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":4,"docs":{"146":{"tf":1.0},"225":{"tf":1.0},"41":{"tf":1.0},"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"z":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"140":{"tf":1.0},"141":{"tf":1.4142135623730951},"215":{"tf":1.0},"81":{"tf":1.7320508075688772}}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"0":{":":{"0":{"0":{":":{"0":{"0":{".":{"0":{"0":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"z":{"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":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":16,"docs":{"122":{"tf":2.0},"123":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"137":{"tf":1.0},"161":{"tf":2.23606797749979},"162":{"tf":2.23606797749979},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"225":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"68":{"tf":2.6457513110645907},"69":{"tf":2.0},"71":{"tf":1.7320508075688772}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{".":{"0":{"0":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"3":{"df":0,"docs":{},"z":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"137":{"tf":1.0},"224":{"tf":1.0},"68":{"tf":1.0}},"z":{"df":5,"docs":{"123":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":3,"docs":{"161":{"tf":1.0},"162":{"tf":1.0},"71":{"tf":1.0}}},"3":{":":{"0":{"4":{":":{"0":{"5":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"162":{"tf":1.0},"163":{"tf":1.0}}},"4":{"df":9,"docs":{"161":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}}},"5":{"df":4,"docs":{"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"164":{"tf":1.0}}},"7":{"df":5,"docs":{"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0}}},"8":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"156":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"236":{"tf":1.0}}},"9":{"df":1,"docs":{"245":{"tf":1.4142135623730951}},"t":{"2":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":3,"docs":{"204":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}}}},"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":{"1":{"2":{"d":{"df":0,"docs":{},"e":{"4":{"3":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"105":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"41":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":2.0}}},"1":{",":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":6,"docs":{"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0}}}}}}}},"2":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"4":{"0":{"df":3,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"40":{"tf":1.0}}},"df":1,"docs":{"40":{"tf":1.0}}},"5":{"0":{"df":3,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"40":{"tf":1.0}}},"df":1,"docs":{"40":{"tf":1.0}}},"9":{"8":{"df":1,"docs":{"25":{"tf":1.0}}},"9":{"df":4,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"25":{"tf":1.0}}},"df":1,"docs":{"117":{"tf":1.0}}},"df":1,"docs":{"101":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"229":{"tf":1.0}}}}},"1":{"df":1,"docs":{"233":{"tf":1.0}}},"2":{"3":{"df":5,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"190":{"tf":1.0},"64":{"tf":1.0}}},"8":{".":{"5":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"66":{"tf":1.0}}},":":{"3":{"4":{":":{"5":{"6":{".":{"7":{"8":{"9":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"74":{"tf":1.7320508075688772},"81":{"tf":2.0}}},"3":{"df":1,"docs":{"46":{"tf":1.0}}},"5":{"0":{"0":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":0,"docs":{},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"9":{"2":{"8":{"df":1,"docs":{"245":{"tf":1.0}}},"9":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":1,"docs":{"233":{"tf":1.0}}},"4":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"df":2,"docs":{"233":{"tf":1.7320508075688772},"235":{"tf":1.0}}},"2":{"df":1,"docs":{"74":{"tf":1.7320508075688772}}},"5":{"df":1,"docs":{"233":{"tf":1.0}}},"6":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"0":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"9":{"2":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":29,"docs":{"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"132":{"tf":1.0},"140":{"tf":1.0},"145":{"tf":1.0},"168":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":2.23606797749979},"179":{"tf":1.4142135623730951},"201":{"tf":1.0},"205":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"77":{"tf":3.0},"81":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"91":{"tf":2.8284271247461903},"94":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"2":{",":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}},"'":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"'":{"2":{"0":{"2":{"3":{"df":5,"docs":{"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"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":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"0":{"df":2,"docs":{"25":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":1,"docs":{"81":{"tf":2.0}}},"9":{"9":{"df":7,"docs":{"217":{"tf":1.0},"23":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"1":{"df":8,"docs":{"161":{"tf":2.0},"162":{"tf":2.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"241":{"tf":1.0},"71":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"230":{"tf":1.0}}},"6":{"df":1,"docs":{"241":{"tf":1.0}}},"7":{"df":4,"docs":{"224":{"tf":1.4142135623730951},"241":{"tf":1.0},"68":{"tf":2.23606797749979},"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"1":{"0":{"df":3,"docs":{"229":{"tf":1.0},"233":{"tf":1.0},"241":{"tf":1.0}}},"1":{"df":3,"docs":{"204":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}}},"2":{"df":1,"docs":{"241":{"tf":1.0}}},"5":{"df":1,"docs":{"241":{"tf":1.0}}},"6":{"df":1,"docs":{"241":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":3,"docs":{"229":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"241":{"tf":1.0},"251":{"tf":1.0}}},"3":{"df":8,"docs":{"13":{"tf":1.4142135623730951},"156":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"225":{"tf":1.0},"233":{"tf":1.0},"252":{"tf":1.0},"81":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"134":{"tf":1.0}}},"1":{"df":1,"docs":{"81":{"tf":1.7320508075688772}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"\"":{",":{"\"":{"@":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"\"":{":":{"\"":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"d":{":":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"\"":{"df":0,"docs":{},"}":{"df":0,"docs":{},"}":{",":{"df":0,"docs":{},"{":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"1":{"\"":{":":{"1":{",":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"2":{"\"":{":":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"]":{",":{"[":{"1":{",":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"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":5,"docs":{"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0}}},"3":{":":{"3":{"0":{":":{"0":{"0":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"9":{":":{"1":{"2":{".":{"1":{"2":{"3":{"4":{"5":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"124":{"tf":1.0}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":2,"docs":{"158":{"tf":1.0},"159":{"tf":1.0}}},"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":{"179":{"tf":1.4142135623730951}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":3,"docs":{"156":{"tf":1.0},"158":{"tf":1.0},"236":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":37,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"127":{"tf":1.0},"132":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":2.23606797749979},"176":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.7320508075688772},"226":{"tf":1.0},"23":{"tf":1.0},"238":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":2.23606797749979},"77":{"tf":2.8284271247461903},"78":{"tf":2.6457513110645907},"81":{"tf":1.4142135623730951},"86":{"tf":2.23606797749979},"87":{"tf":1.4142135623730951},"91":{"tf":2.0},"97":{"tf":1.4142135623730951}}},"3":{",":{"4":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},".":{"0":{"0":{"df":1,"docs":{"29":{"tf":1.0}}},"df":1,"docs":{"39":{"tf":1.0}}},"5":{"5":{"5":{"df":1,"docs":{"86":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{"df":5,"docs":{"218":{"tf":1.0},"23":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":0,"docs":{},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"159":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"3":{"5":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"74":{"tf":1.7320508075688772}}},"7":{"9":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"3":{":":{"3":{"8":{"0":{"3":{"df":2,"docs":{"195":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"198":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":1,"docs":{"232":{"tf":1.0}}},"df":21,"docs":{"100":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"132":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.7320508075688772},"179":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.0},"48":{"tf":1.4142135623730951},"54":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"77":{"tf":2.0},"91":{"tf":2.6457513110645907},"97":{"tf":1.0}}},"4":{".":{"0":{"0":{"df":2,"docs":{"23":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"7":{"7":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"9":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"54":{"tf":1.0}}},"1":{"df":1,"docs":{"215":{"tf":1.7320508075688772}}},"9":{"a":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":3,"docs":{"179":{"tf":1.0},"224":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"5":{"6":{"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"7":{"1":{"4":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"b":{"9":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":0,"docs":{},"e":{"1":{"2":{"0":{"0":{"b":{"df":0,"docs":{},"f":{"a":{"4":{"7":{"df":1,"docs":{"144":{"tf":1.0}}},"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":{"8":{"5":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"9":{"2":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"100":{"tf":1.0},"106":{"tf":1.4142135623730951},"132":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":2.0},"178":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"42":{"tf":1.0},"46":{"tf":1.0},"73":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"91":{"tf":2.0},"97":{"tf":1.0}},"f":{"7":{"4":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"}":{"]":{".":{"a":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{".":{"0":{"0":{"df":5,"docs":{"29":{"tf":1.0},"55":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"9":{"8":{"df":2,"docs":{"24":{"tf":1.0},"28":{"tf":1.0}}},"9":{"df":5,"docs":{"139":{"tf":1.0},"23":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"c":{"5":{"a":{"5":{"1":{"2":{"9":{"0":{"7":{"4":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"101":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.4142135623730951},"29":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"77":{"tf":2.0},"78":{"tf":2.0},"97":{"tf":1.0}}},"6":{"0":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}},"4":{"/":{"1":{"2":{"8":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"224":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}},"6":{"df":1,"docs":{"108":{"tf":1.0}}},"7":{"df":1,"docs":{"108":{"tf":1.0}}},"df":2,"docs":{"29":{"tf":1.7320508075688772},"97":{"tf":1.0}},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"238":{"tf":1.0}}}}},"7":{".":{"9":{"9":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"5":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{"6":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"4":{"df":2,"docs":{"224":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":1,"docs":{"112":{"tf":1.0}}},"8":{"9":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"180":{"tf":1.7320508075688772},"29":{"tf":1.0}}},"8":{".":{"9":{"9":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"5":{"2":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{"d":{"d":{"2":{"9":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"8":{"df":0,"docs":{},"e":{"7":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"1":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"233":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"147":{"tf":1.0},"224":{"tf":1.4142135623730951}}},"9":{".":{"9":{"9":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"7":{"1":{"9":{"9":{"2":{"5":{"4":{"7":{"4":{"0":{"9":{"9":{"2":{".":{"1":{"2":{"3":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"2":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"176":{"tf":1.0}}},"7":{",":{"9":{"6":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"176":{"tf":1.0},"228":{"tf":1.0}}},"9":{"df":3,"docs":{"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"_":{"df":1,"docs":{"88":{"tf":1.0}}},"a":{".":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"b":{"7":{"c":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"120":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":10,"docs":{"10":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.0},"241":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"58":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}}}}},"c":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":17,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"208":{"tf":2.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},"220":{"tf":1.0},"35":{"tf":1.4142135623730951},"45":{"tf":1.0},"64":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"125":{"tf":1.0},"151":{"tf":1.0},"155":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"155":{"tf":1.0},"175":{"tf":1.0}}}}}}}},"r":{"d":{"df":6,"docs":{"13":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"233":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"120":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"120":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"55":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"20":{"tf":1.0},"57":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"228":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"243":{"tf":1.0},"251":{"tf":2.23606797749979}}}}},"d":{"df":5,"docs":{"15":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.0},"46":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"183":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"245":{"tf":1.0}}}}}}},"df":0,"docs":{}},"[":{"0":{"]":{".":{"c":{"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":6,"docs":{"14":{"tf":1.0},"168":{"tf":1.0},"229":{"tf":1.4142135623730951},"238":{"tf":1.0},"30":{"tf":1.0},"56":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"33":{"tf":1.0},"43":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"253":{"tf":1.0}}}}}}},"g":{"df":1,"docs":{"91":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":5,"docs":{"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"134":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"16":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":2,"docs":{"228":{"tf":1.0},"241":{"tf":1.0}},"m":{"df":1,"docs":{"198":{"tf":1.0}}}},"k":{"a":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"a":{"df":3,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"a":{"df":4,"docs":{"24":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.7320508075688772},"48":{"tf":1.0}},"s":{"df":2,"docs":{"120":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":8,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"181":{"tf":1.0},"201":{"tf":1.4142135623730951},"239":{"tf":1.0},"246":{"tf":1.0},"47":{"tf":1.0},"57":{"tf":1.0}}},"y":{"d":{"b":{"df":2,"docs":{"241":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"236":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"234":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}}}},"z":{"df":0,"docs":{},"o":{"'":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":2,"docs":{"194":{"tf":2.0},"6":{"tf":2.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":5,"docs":{"176":{"tf":1.0},"193":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}},"n":{"df":5,"docs":{"110":{"tf":1.0},"187":{"tf":1.0},"234":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":6,"docs":{"13":{"tf":1.0},"190":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"250":{"tf":1.0},"40":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":10,"docs":{"16":{"tf":1.0},"19":{"tf":1.0},"216":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0},"28":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"237":{"tf":1.0},"241":{"tf":1.4142135623730951},"250":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"245":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"239":{"tf":1.0}}}},"t":{"df":5,"docs":{"228":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"246":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"216":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":5,"docs":{"37":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"15":{"tf":1.0},"21":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"77":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"0":{"tf":1.0},"235":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"232":{"tf":1.4142135623730951},"234":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"220":{"tf":2.23606797749979},"228":{"tf":1.0},"234":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":29,"docs":{"192":{"tf":1.0},"199":{"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.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},"238":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"8":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"218":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"235":{"tf":1.4142135623730951},"41":{"tf":1.0},"51":{"tf":1.0}},"i":{"df":0,"docs":{},"x":{"df":27,"docs":{"227":{"tf":1.7320508075688772},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"203":{"tf":2.449489742783178},"204":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":2.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0}}}}}},"l":{"d":{"+":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"204":{"tf":2.0},"212":{"tf":2.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":14,"docs":{"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"205":{"tf":2.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},"216":{"tf":1.0},"220":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"n":{"d":{".":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"213":{"tf":2.0},"220":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"214":{"tf":2.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":3,"docs":{"207":{"tf":2.0},"211":{"tf":2.0},"216":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"109":{"tf":1.0},"234":{"tf":1.0}}},"df":2,"docs":{"134":{"tf":1.0},"54":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"168":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"238":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":11,"docs":{"227":{"tf":1.0},"242":{"tf":1.7320508075688772},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"238":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"110":{"tf":1.7320508075688772},"141":{"tf":1.0},"147":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"206":{"tf":1.0},"215":{"tf":1.0},"233":{"tf":1.0},"64":{"tf":1.0},"97":{"tf":1.7320508075688772}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"109":{"tf":1.0},"127":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"16":{"tf":1.0},"230":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"(":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":1,"docs":{"40":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"132":{"tf":2.0},"40":{"tf":1.0}}}}},"df":0,"docs":{}},"df":22,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"132":{"tf":2.23606797749979},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"180":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772},"73":{"tf":2.8284271247461903},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.0},"91":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":2.449489742783178}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"220":{"tf":3.1622776601683795},"228":{"tf":1.0},"234":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.0}}}}}},"s":{"c":{"df":2,"docs":{"44":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"120":{"tf":1.0}},"h":{"df":1,"docs":{"120":{"tf":1.0}}}}},"k":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"234":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"185":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":2.8284271247461903},"191":{"tf":2.23606797749979},"20":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"10":{"tf":1.0},"206":{"tf":1.0},"220":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"2":{"df":1,"docs":{"120":{"tf":1.0}}},"df":1,"docs":{"120":{"tf":1.0}},"h":{"df":1,"docs":{"120":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"229":{"tf":1.0},"233":{"tf":1.0},"57":{"tf":1.0},"81":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"131":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":4,"docs":{"229":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.0},"215":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"215":{"tf":1.4142135623730951},"33":{"tf":1.0}}}}},"o":{"df":1,"docs":{"66":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":11,"docs":{"160":{"tf":1.0},"175":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"29":{"tf":1.0},"50":{"tf":1.0},"6":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"130":{"tf":1.7320508075688772}}},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"11":{"tf":1.0},"158":{"tf":1.0},"215":{"tf":1.0}}}},"df":1,"docs":{"237":{"tf":1.0}}},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"250":{"tf":1.0}}}}}},"b":{"'":{"1":{"5":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"]":{"[":{"'":{"a":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{".":{"[":{"'":{"a":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"169":{"tf":1.0}}},"c":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"1":{"df":0,"docs":{},"e":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}},"8":{"df":0,"docs":{},"e":{"3":{"5":{"c":{"8":{"2":{"b":{"9":{"3":{"5":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"[":{"'":{"a":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":2.6457513110645907}}}}}}},"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"13":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"229":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"235":{"tf":1.0}}}},"r":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"6":{"4":{"(":{"'":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"'":{"0":{"1":{"0":{"2":{"0":{"3":{"df":1,"docs":{"143":{"tf":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":{"143":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":11,"docs":{"120":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"225":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"25":{"tf":1.0},"45":{"tf":1.0}}},"i":{"c":{"df":14,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"215":{"tf":2.0},"33":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"y":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":8,"docs":{"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"225":{"tf":1.0},"77":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"233":{"tf":1.0},"235":{"tf":1.0}}}}},"df":1,"docs":{"29":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"20":{"tf":1.0},"47":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"12":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"175":{"tf":1.0},"192":{"tf":1.0},"233":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"85":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"131":{"tf":1.0},"203":{"tf":1.0},"234":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"58":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"232":{"tf":1.0},"234":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":8,"docs":{"167":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"220":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"58":{"tf":1.0},"88":{"tf":1.0}}}}},"n":{"d":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"235":{"tf":1.0}}}}},"t":{"df":3,"docs":{"0":{"tf":1.0},"148":{"tf":1.0},"19":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"158":{"tf":2.449489742783178},"159":{"tf":1.4142135623730951},"233":{"tf":1.0},"84":{"tf":2.8284271247461903}}}}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":2,"docs":{"21":{"tf":1.0},"245":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"226":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"146":{"tf":1.4142135623730951},"194":{"tf":1.0},"197":{"tf":2.0},"198":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"6":{"tf":1.0},"72":{"tf":1.0}}}}},"d":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"74":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":4,"docs":{"224":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"86":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":2.6457513110645907}}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"df":9,"docs":{"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":2.0},"224":{"tf":1.0},"226":{"tf":1.0},"250":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"215":{"tf":1.0},"216":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"224":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"85":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":12,"docs":{"159":{"tf":1.0},"219":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"237":{"tf":1.0},"245":{"tf":1.0},"38":{"tf":1.4142135623730951},"52":{"tf":1.0},"58":{"tf":1.0},"85":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}}}},"x":{"df":1,"docs":{"238":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"35":{"tf":1.0},"74":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"78":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"196":{"tf":1.0}}}},"d":{"df":2,"docs":{"183":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"238":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"229":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":10,"docs":{"193":{"tf":1.0},"196":{"tf":1.0},"21":{"tf":1.0},"229":{"tf":1.4142135623730951},"231":{"tf":1.0},"234":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"247":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":3,"docs":{"241":{"tf":1.4142135623730951},"246":{"tf":1.0},"250":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":3,"docs":{"200":{"tf":1.4142135623730951},"219":{"tf":2.23606797749979},"221":{"tf":1.7320508075688772}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":5,"docs":{"230":{"tf":1.0},"233":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.7320508075688772},"241":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"221":{"tf":1.0},"23":{"tf":1.0}}}}}},"y":{"df":2,"docs":{"229":{"tf":1.0},"240":{"tf":1.0}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"101":{"tf":1.0},"146":{"tf":1.4142135623730951}}}}}},"c":{"'":{"]":{"[":{"1":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"74":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":4,"docs":{"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"74":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"34":{"tf":1.0},"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"[":{"1":{"df":1,"docs":{"173":{"tf":1.0}}},"2":{"]":{".":{"df":0,"docs":{},"f":{"df":1,"docs":{"180":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"83":{"tf":1.0}}}},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"220":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}},"a":{"d":{"a":{"'":{"df":0,"docs":{},"}":{",":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"238":{"tf":1.0},"56":{"tf":1.4142135623730951},"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"57":{"tf":1.0},"59":{"tf":1.0}}}}}},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"236":{"tf":1.0},"47":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.0},"34":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":10,"docs":{"129":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"181":{"tf":1.0},"20":{"tf":1.0},"231":{"tf":1.0},"238":{"tf":1.4142135623730951},"54":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0}}},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}},"1":{"2":{"3":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":5,"docs":{"136":{"tf":2.0},"64":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.0},"97":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}},"d":{"c":{"df":1,"docs":{"230":{"tf":1.0}}},"df":1,"docs":{"10":{"tf":1.0}}},"df":16,"docs":{"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"168":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.7320508075688772},"177":{"tf":2.0},"178":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"91":{"tf":2.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"230":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":1,"docs":{"239":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"109":{"tf":1.0},"97":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"233":{"tf":1.0},"238":{"tf":1.0}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"c":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"20":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.4142135623730951}}}},"r":{"(":{"1":{"0":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"6":{"5":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"147":{"tf":1.7320508075688772},"77":{"tf":1.0},"88":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"_":{"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":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"100":{"tf":2.0},"112":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.7320508075688772},"64":{"tf":2.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":4,"docs":{"139":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"185":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"185":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"172":{"tf":1.7320508075688772},"173":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"120":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":4,"docs":{"21":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"238":{"tf":1.0},"250":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":17,"docs":{"167":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":2.0},"34":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":2.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"16":{"tf":1.0},"195":{"tf":1.0},"230":{"tf":1.0}}},"r":{"df":3,"docs":{"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"10":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"215":{"tf":1.7320508075688772},"222":{"tf":1.4142135623730951},"35":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"151":{"tf":1.0},"233":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"10":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"149":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"u":{"d":{"df":1,"docs":{"250":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"141":{"tf":1.7320508075688772}},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"d":{"'":{"df":1,"docs":{"233":{"tf":1.0}}},"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":6,"docs":{"10":{"tf":1.0},"108":{"tf":1.0},"181":{"tf":1.0},"215":{"tf":1.7320508075688772},"253":{"tf":1.0},"9":{"tf":1.0}}}},"df":1,"docs":{"120":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":4,"docs":{"23":{"tf":1.0},"24":{"tf":2.23606797749979},"83":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":2,"docs":{"230":{"tf":1.0},"232":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"120":{"tf":1.0},"179":{"tf":1.0},"225":{"tf":1.4142135623730951},"40":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"234":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"205":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"222":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"1":{"\"":{",":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"2":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"1":{",":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"2":{"\"":{":":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"211":{"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":{",":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"2":{"\"":{":":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"132":{"tf":1.0},"173":{"tf":2.0},"174":{"tf":1.4142135623730951},"48":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":2.0},"77":{"tf":2.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0}}},"2":{"df":1,"docs":{"48":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"183":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"213":{"tf":1.0},"214":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"246":{"tf":1.7320508075688772},"249":{"tf":1.7320508075688772}}}},"df":35,"docs":{"128":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"155":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.4142135623730951},"187":{"tf":2.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"220":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.7320508075688772},"246":{"tf":1.0},"25":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":2.0},"37":{"tf":1.4142135623730951},"38":{"tf":2.8284271247461903},"39":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"54":{"tf":2.6457513110645907},"63":{"tf":1.0},"76":{"tf":2.0},"79":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"205":{"tf":1.0},"215":{"tf":1.0},"221":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"230":{"tf":1.0},"241":{"tf":1.0}}},"m":{"a":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":4,"docs":{"133":{"tf":1.0},"209":{"tf":1.0},"23":{"tf":1.4142135623730951},"35":{"tf":1.0}},"n":{"d":{"df":7,"docs":{"195":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"240":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"190":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"238":{"tf":1.0},"247":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.0},"55":{"tf":1.7320508075688772}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"235":{"tf":1.0}}}},"r":{"df":6,"docs":{"234":{"tf":1.0},"238":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.7320508075688772}}}}}}},"t":{"df":9,"docs":{"136":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"194":{"tf":1.0},"241":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":2.0},"6":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"196":{"tf":1.0},"197":{"tf":1.0},"247":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"t":{"df":5,"docs":{"0":{"tf":1.0},"207":{"tf":1.0},"241":{"tf":1.0},"30":{"tf":1.0},"44":{"tf":1.0}}},"x":{"df":4,"docs":{"229":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"13":{"tf":1.0},"228":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}},"s":{"df":1,"docs":{"21":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"49":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"228":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"237":{"tf":2.0},"250":{"tf":2.0},"74":{"tf":1.0},"78":{"tf":2.0}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":2.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"109":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"97":{"tf":2.6457513110645907}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"234":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"235":{"tf":1.0},"237":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"138":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"46":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"151":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":3.0},"38":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"232":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":2.0}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"185":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":2,"docs":{"185":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"78":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":17,"docs":{"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"161":{"tf":2.0},"20":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":2.0},"95":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":24,"docs":{"132":{"tf":1.0},"199":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951},"202":{"tf":1.7320508075688772},"203":{"tf":2.0},"204":{"tf":1.7320508075688772},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"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},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"233":{"tf":1.0},"55":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"253":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"22":{"tf":1.0},"37":{"tf":1.0},"91":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"'":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"235":{"tf":1.0}}},"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":2,"docs":{"197":{"tf":1.0},"233":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"253":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":4,"docs":{"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"233":{"tf":1.0},"245":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"247":{"tf":1.0}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"108":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"120":{"tf":1.0}}},"t":{"df":3,"docs":{"229":{"tf":1.0},"233":{"tf":1.4142135623730951},"55":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"h":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":3,"docs":{"112":{"tf":1.0},"131":{"tf":2.23606797749979},"173":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"8":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"40":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":8,"docs":{"34":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"241":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"148":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"233":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"237":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":18,"docs":{"12":{"tf":1.4142135623730951},"170":{"tf":1.0},"187":{"tf":2.6457513110645907},"190":{"tf":2.449489742783178},"22":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"235":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"55":{"tf":2.23606797749979},"56":{"tf":1.4142135623730951}}}},"u":{"b":{"df":0,"docs":{},"e":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"l":{"df":23,"docs":{"10":{"tf":1.0},"199":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":2.0},"207":{"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},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"5":{"tf":1.0},"8":{"tf":2.23606797749979}},"i":{"df":1,"docs":{"74":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":2,"docs":{"125":{"tf":1.4142135623730951},"154":{"tf":2.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"125":{"tf":1.4142135623730951},"153":{"tf":2.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"125":{"tf":1.4142135623730951},"13":{"tf":1.0},"152":{"tf":2.0}}}}},"df":0,"docs":{}}}}}}}},"df":10,"docs":{"13":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"56":{"tf":1.0},"80":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"125":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"d":{"2":{"6":{"8":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"15":{"tf":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":{"15":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"a":{"'":{"df":1,"docs":{"236":{"tf":1.0}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":27,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":1.4142135623730951},"155":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"181":{"tf":1.4142135623730951},"191":{"tf":1.0},"21":{"tf":1.4142135623730951},"228":{"tf":2.23606797749979},"229":{"tf":2.8284271247461903},"230":{"tf":2.23606797749979},"231":{"tf":1.7320508075688772},"232":{"tf":1.7320508075688772},"233":{"tf":3.7416573867739413},"234":{"tf":1.7320508075688772},"235":{"tf":2.0},"238":{"tf":2.449489742783178},"239":{"tf":1.7320508075688772},"241":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}},"df":79,"docs":{"117":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"143":{"tf":1.0},"148":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772},"16":{"tf":2.0},"167":{"tf":1.0},"17":{"tf":1.4142135623730951},"170":{"tf":1.0},"192":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":2.0},"208":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":2.23606797749979},"22":{"tf":2.449489742783178},"220":{"tf":1.0},"223":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.7320508075688772},"232":{"tf":1.4142135623730951},"233":{"tf":3.3166247903554},"234":{"tf":1.0},"235":{"tf":2.8284271247461903},"236":{"tf":1.7320508075688772},"237":{"tf":1.4142135623730951},"238":{"tf":3.3166247903554},"239":{"tf":2.0},"24":{"tf":1.0},"241":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.0},"246":{"tf":1.4142135623730951},"249":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":2.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.7320508075688772},"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.4142135623730951},"81":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"234":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"(":{"'":{"2":{"0":{"0":{"1":{"df":1,"docs":{"122":{"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":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"121":{"tf":1.4142135623730951},"151":{"tf":1.0},"80":{"tf":1.0}}}}}},"df":11,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":2.0},"148":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.4142135623730951},"156":{"tf":1.0},"224":{"tf":1.4142135623730951},"245":{"tf":1.0},"69":{"tf":2.6457513110645907}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"'":{"2":{"0":{"0":{"1":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"2":{"0":{"2":{"3":{"df":1,"docs":{"81":{"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":{}}}}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}}}},"y":{"df":4,"docs":{"124":{"tf":1.4142135623730951},"154":{"tf":1.0},"246":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"b":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":21,"docs":{"122":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"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},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.4142135623730951}},"e":{"6":{"df":0,"docs":{},"f":{"df":1,"docs":{"60":{"tf":1.0}}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}}},"c":{"a":{"d":{"df":5,"docs":{"230":{"tf":1.7320508075688772},"232":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951},"241":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"238":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"171":{"tf":1.0}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":12,"docs":{"13":{"tf":1.0},"133":{"tf":1.0},"16":{"tf":1.0},"172":{"tf":1.0},"195":{"tf":1.4142135623730951},"198":{"tf":1.7320508075688772},"208":{"tf":1.0},"228":{"tf":1.0},"236":{"tf":1.0},"44":{"tf":1.0},"57":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"190":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"215":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"88":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"120":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"13":{"tf":1.4142135623730951},"188":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":2.0},"235":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":3.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"133":{"tf":1.4142135623730951},"211":{"tf":1.0},"222":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"32":{"tf":1.0},"35":{"tf":1.4142135623730951}}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"238":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"233":{"tf":1.0},"239":{"tf":1.0}}}},"t":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"131":{"tf":1.0},"154":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"167":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0}}}}},"s":{"c":{"df":2,"docs":{"132":{"tf":1.0},"44":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"a":{"c":{"df":4,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"58":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"234":{"tf":1.4142135623730951},"235":{"tf":1.0}}}},"r":{"df":4,"docs":{"187":{"tf":1.0},"233":{"tf":1.4142135623730951},"236":{"tf":1.0},"64":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"233":{"tf":2.0},"235":{"tf":1.7320508075688772}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"17":{"tf":1.0},"192":{"tf":1.0},"20":{"tf":1.0},"224":{"tf":1.0},"237":{"tf":1.0},"248":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"20":{"tf":1.0},"229":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"131":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":2.0},"245":{"tf":1.0},"252":{"tf":1.0},"34":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"225":{"tf":1.0}}}},"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"131":{"tf":1.0},"154":{"tf":1.0},"16":{"tf":1.0},"234":{"tf":1.4142135623730951},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"58":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"233":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0}},"i":{"df":2,"docs":{"15":{"tf":1.0},"238":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"132":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"232":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"198":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.4142135623730951},"249":{"tf":1.0},"49":{"tf":1.0},"77":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"197":{"tf":1.0},"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"74":{"tf":1.7320508075688772},"79":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":5,"docs":{"228":{"tf":1.4142135623730951},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"250":{"tf":1.0},"30":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"l":{"df":4,"docs":{"201":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"8":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"df":2,"docs":{"195":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":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":{"195":{"tf":1.0}}}}},"df":5,"docs":{"193":{"tf":1.7320508075688772},"195":{"tf":2.449489742783178},"196":{"tf":1.7320508075688772},"197":{"tf":1.0},"4":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":43,"docs":{"0":{"tf":1.4142135623730951},"117":{"tf":2.449489742783178},"12":{"tf":1.0},"120":{"tf":1.0},"131":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.7320508075688772},"17":{"tf":1.0},"171":{"tf":1.0},"18":{"tf":2.23606797749979},"181":{"tf":1.4142135623730951},"192":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"22":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.4142135623730951},"23":{"tf":2.23606797749979},"230":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.7320508075688772},"234":{"tf":1.0},"238":{"tf":2.0},"24":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"15":{"tf":1.0},"16":{"tf":1.0},"176":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"197":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"22":{"tf":1.0},"247":{"tf":1.0}}}},"t":{"df":2,"docs":{"169":{"tf":1.0},"171":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"171":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"195":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"21":{"tf":1.4142135623730951},"245":{"tf":1.0}},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"228":{"tf":1.0},"235":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}},"r":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"187":{"tf":1.0},"188":{"tf":2.0},"191":{"tf":1.7320508075688772},"230":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"71":{"tf":1.0}}},"m":{"df":1,"docs":{"233":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"230":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"233":{"tf":1.0},"236":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":2.23606797749979},"60":{"tf":1.7320508075688772}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"238":{"tf":1.0},"71":{"tf":2.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"p":{"1":{"df":0,"docs":{},"y":{"2":{"df":0,"docs":{},"m":{"1":{"0":{"d":{"df":0,"docs":{},"t":{"2":{"df":0,"docs":{},"h":{"3":{"0":{"df":0,"docs":{},"m":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"1":{"2":{"df":0,"docs":{},"h":{"3":{"0":{"df":0,"docs":{},"m":{"5":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"247":{"tf":1.0},"57":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":9,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.7320508075688772},"15":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.7320508075688772},"245":{"tf":1.7320508075688772},"54":{"tf":1.0},"75":{"tf":1.4142135623730951}},"o":{"d":{"b":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"b":{"0":{"7":{"7":{"6":{"5":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":20,"docs":{"127":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"187":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"221":{"tf":1.4142135623730951},"232":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"34":{"tf":1.0},"45":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"194":{"tf":1.7320508075688772},"233":{"tf":1.0},"252":{"tf":1.0},"6":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"234":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"170":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"236":{"tf":1.0},"34":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"238":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"187":{"tf":1.0},"188":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"40":{"tf":1.0}}}},"df":1,"docs":{"20":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":2.23606797749979}}}}},"df":2,"docs":{"177":{"tf":1.0},"178":{"tf":1.4142135623730951}},"e":{"df":1,"docs":{"105":{"tf":1.0}},"|":{".":{"*":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"89":{"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":3,"docs":{"110":{"tf":1.0},"237":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"228":{"tf":1.0},"250":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"179":{"tf":1.0},"40":{"tf":1.7320508075688772},"97":{"tf":2.0}}}}}}},"i":{"d":{"df":2,"docs":{"206":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"190":{"tf":1.0},"226":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}},"b":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"11":{"tf":1.0},"238":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"33":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"74":{"tf":1.0}}}}},"o":{"d":{"df":7,"docs":{"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"150":{"tf":1.0},"155":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"194":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":17,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"193":{"tf":1.0},"228":{"tf":2.23606797749979},"230":{"tf":1.4142135623730951},"231":{"tf":2.0},"232":{"tf":2.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"241":{"tf":1.7320508075688772},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.4142135623730951},"250":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"df":2,"docs":{"195":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"'":{"df":8,"docs":{"148":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":1.4142135623730951},"18":{"tf":1.0},"200":{"tf":1.0},"21":{"tf":1.4142135623730951},"246":{"tf":1.0}}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{":":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"195":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"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":{"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"195":{"tf":1.4142135623730951},"198":{"tf":1.0},"4":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"198":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":75,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":2.23606797749979},"12":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"16":{"tf":2.0},"167":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"181":{"tf":2.0},"185":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.4142135623730951},"192":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.7320508075688772},"198":{"tf":2.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"20":{"tf":2.0},"202":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":2.0},"215":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"220":{"tf":1.4142135623730951},"222":{"tf":1.0},"224":{"tf":1.4142135623730951},"228":{"tf":2.23606797749979},"229":{"tf":1.0},"231":{"tf":1.4142135623730951},"234":{"tf":2.8284271247461903},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.7320508075688772},"41":{"tf":1.0},"48":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0}}},"df":11,"docs":{"106":{"tf":1.0},"149":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"192":{"tf":1.0},"2":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"228":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"231":{"tf":1.0},"233":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"215":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":8,"docs":{"157":{"tf":1.0},"21":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.0},"76":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"238":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}}},"v":{"df":1,"docs":{"198":{"tf":2.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"186":{"tf":1.0},"35":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"140":{"tf":1.0},"238":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}},"t":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"109":{"tf":1.0},"117":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"229":{"tf":1.0},"39":{"tf":1.0},"71":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":1,"docs":{"233":{"tf":1.0}},"s":{"df":5,"docs":{"13":{"tf":1.0},"228":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":2.449489742783178}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"232":{"tf":1.0},"235":{"tf":1.0},"244":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"19":{"tf":1.7320508075688772},"220":{"tf":1.0},"24":{"tf":1.0},"54":{"tf":1.0},"76":{"tf":1.0}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"110":{"tf":1.0},"88":{"tf":2.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"t":{"c":{"df":3,"docs":{"20":{"tf":1.0},"250":{"tf":1.4142135623730951},"48":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":2,"docs":{"229":{"tf":1.0},"230":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"85":{"tf":2.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"15":{"tf":1.0},"195":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0}},"t":{"df":4,"docs":{"204":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.0}},"u":{"df":1,"docs":{"233":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"232":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"165":{"tf":1.0},"166":{"tf":1.0},"76":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"213":{"tf":1.0},"214":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":18,"docs":{"10":{"tf":2.23606797749979},"13":{"tf":1.4142135623730951},"141":{"tf":1.0},"167":{"tf":1.4142135623730951},"199":{"tf":1.0},"206":{"tf":1.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"245":{"tf":1.0},"44":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"76":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.7320508075688772}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.0},"129":{"tf":1.0},"50":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"149":{"tf":1.0},"29":{"tf":1.0}},"e":{"d":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"v":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":1,"docs":{"159":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"190":{"tf":1.0},"198":{"tf":1.0},"215":{"tf":1.0},"228":{"tf":1.0},"243":{"tf":1.0},"247":{"tf":1.7320508075688772},"29":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":19,"docs":{"13":{"tf":1.4142135623730951},"131":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.4142135623730951},"192":{"tf":1.0},"220":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.4142135623730951},"241":{"tf":1.0},"250":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":2.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"120":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"252":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":5,"docs":{"139":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.7320508075688772},"237":{"tf":1.0},"241":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"194":{"tf":1.0},"20":{"tf":1.0},"234":{"tf":1.0},"6":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"193":{"tf":1.0},"199":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"57":{"tf":1.7320508075688772},"61":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"37":{"tf":1.0},"38":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"0":{"tf":1.0},"198":{"tf":1.0}}}}}}},"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"201":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"195":{"tf":1.0},"204":{"tf":1.0},"235":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"r":{"df":1,"docs":{"238":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"195":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"127":{"tf":1.0},"132":{"tf":1.0},"140":{"tf":1.0},"17":{"tf":1.4142135623730951},"37":{"tf":1.0},"44":{"tf":1.0},"55":{"tf":1.7320508075688772},"89":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"125":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":2,"docs":{"125":{"tf":2.449489742783178},"235":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"238":{"tf":1.0}}}}}}}},"f":{"7":{"c":{"3":{"1":{"4":{"d":{"d":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"235":{"tf":1.0},"238":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"237":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"159":{"tf":1.0}}},"s":{"df":6,"docs":{"139":{"tf":1.0},"224":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"11":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"33":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"241":{"tf":1.0},"25":{"tf":1.0}}}}}},"t":{"df":3,"docs":{"228":{"tf":1.0},"237":{"tf":1.0},"243":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"237":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"17":{"tf":1.0},"230":{"tf":1.0}}}}}}},"df":10,"docs":{"180":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":2.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"220":{"tf":1.7320508075688772},"221":{"tf":2.449489742783178},"222":{"tf":1.0},"77":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"192":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"220":{"tf":1.0},"30":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":5,"docs":{"11":{"tf":1.4142135623730951},"226":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"252":{"tf":1.0}}},"t":{"df":1,"docs":{"232":{"tf":1.0}}}},"w":{"df":2,"docs":{"232":{"tf":1.0},"235":{"tf":1.0}}}},"i":{"b":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"56":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":10,"docs":{"117":{"tf":2.23606797749979},"169":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"206":{"tf":1.0},"25":{"tf":1.0},"39":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":2.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"213":{"tf":2.0},"214":{"tf":1.4142135623730951},"220":{"tf":2.8284271247461903},"235":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"40":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"134":{"tf":1.0}}}}}}},"df":4,"docs":{"134":{"tf":1.7320508075688772},"29":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.7320508075688772}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":2,"docs":{"173":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"'":{"df":0,"docs":{},"}":{",":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":23,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"117":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"232":{"tf":1.4142135623730951},"234":{"tf":1.0},"238":{"tf":1.4142135623730951},"241":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"58":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"232":{"tf":1.0}},"r":{"2":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"219":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}},"t":{"df":1,"docs":{"238":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"233":{"tf":1.0},"238":{"tf":1.4142135623730951},"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"224":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":18,"docs":{"12":{"tf":1.0},"120":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.0},"187":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"222":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"29":{"tf":1.0},"37":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.4142135623730951},"94":{"tf":1.0}}}}}},"o":{"2":{"df":2,"docs":{"74":{"tf":1.0},"78":{"tf":1.0}}},"df":4,"docs":{"74":{"tf":1.7320508075688772},"77":{"tf":1.0},"78":{"tf":2.23606797749979},"91":{"tf":2.0}}},"r":{"c":{"df":4,"docs":{"136":{"tf":1.0},"215":{"tf":1.0},"238":{"tf":1.0},"44":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"238":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"v":{"df":2,"docs":{"0":{"tf":1.0},"232":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"122":{"tf":1.0},"144":{"tf":1.4142135623730951},"170":{"tf":1.0},"202":{"tf":1.0},"213":{"tf":1.0},"220":{"tf":1.0},"228":{"tf":1.0}}}},"df":17,"docs":{"125":{"tf":1.0},"158":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":2.0},"216":{"tf":2.0},"217":{"tf":1.0},"218":{"tf":1.0},"222":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"84":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"117":{"tf":1.0},"147":{"tf":1.0},"162":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"21":{"tf":1.0},"248":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"233":{"tf":2.23606797749979}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"c":{"a":{"df":2,"docs":{"230":{"tf":1.0},"232":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"234":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"228":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"241":{"tf":1.0},"8":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":69,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":2.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"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.7320508075688772},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"143":{"tf":1.7320508075688772},"144":{"tf":2.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"148":{"tf":1.0},"175":{"tf":2.8284271247461903},"186":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"73":{"tf":1.0},"86":{"tf":1.4142135623730951},"88":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"169":{"tf":1.0},"206":{"tf":1.0},"29":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"237":{"tf":1.0},"248":{"tf":1.7320508075688772},"57":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":4,"docs":{"13":{"tf":1.0},"228":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"194":{"tf":1.0},"253":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"233":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"245":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":4,"docs":{"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"236":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"221":{"tf":1.0}}}}},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"243":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"213":{"tf":1.0},"214":{"tf":1.0}}}},"t":{"@":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"10":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":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":{"252":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"230":{"tf":1.0},"37":{"tf":1.0}},"n":{"df":10,"docs":{"107":{"tf":1.0},"115":{"tf":1.0},"128":{"tf":1.4142135623730951},"130":{"tf":1.0},"133":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.4142135623730951},"171":{"tf":1.0},"37":{"tf":1.0},"48":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":1,"docs":{"90":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"234":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"253":{"tf":1.0}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"21":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.0}}}},"df":1,"docs":{"232":{"tf":1.0}},"e":{"df":2,"docs":{"230":{"tf":1.0},"56":{"tf":1.0}}},"o":{"d":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"250":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"241":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":4,"docs":{"230":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"83":{"tf":1.4142135623730951},"84":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"w":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"232":{"tf":1.0},"235":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"250":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"133":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"133":{"tf":1.0},"45":{"tf":2.449489742783178},"46":{"tf":1.4142135623730951}}}},"w":{"df":1,"docs":{"231":{"tf":1.0}},"n":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"230":{"tf":1.0}}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"194":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"ö":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"245":{"tf":1.0}}}}}}}}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"229":{"tf":1.0},"230":{"tf":1.0}}}},"n":{"d":{"df":3,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"34":{"tf":1.0}},"l":{"df":3,"docs":{"237":{"tf":1.0},"238":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"74":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"235":{"tf":1.0},"241":{"tf":1.4142135623730951}}}}}},"r":{"d":{"df":2,"docs":{"181":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":1,"docs":{"235":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"247":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"46":{"tf":2.23606797749979}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"241":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":22,"docs":{"122":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"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.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"5":{"tf":1.0},"8":{"tf":1.4142135623730951}},"e":{"a":{"d":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"0":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"199":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"208":{"tf":2.0},"35":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"237":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"c":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"235":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"245":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"175":{"tf":1.0},"21":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"230":{"tf":1.0}}}}}}}}},"o":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"213":{"tf":1.0}}}}}}},"df":0,"docs":{}},"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"102":{"tf":2.449489742783178},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"224":{"tf":1.0},"5":{"tf":1.0},"97":{"tf":2.0}}}},"p":{"df":3,"docs":{"148":{"tf":1.0},"170":{"tf":1.0},"198":{"tf":2.0}}}},"r":{"a":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":4,"docs":{"232":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0},"56":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"247":{"tf":1.0}}}}}}},"x":{"(":{"1":{"5":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"147":{"tf":1.7320508075688772}},"i":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"181":{"tf":1.0},"234":{"tf":1.0},"252":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"132":{"tf":1.0},"234":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"233":{"tf":1.0},"243":{"tf":1.0}},"i":{"df":11,"docs":{"0":{"tf":1.0},"157":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":2.23606797749979},"234":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}}}},"o":{"c":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"228":{"tf":1.0},"239":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"241":{"tf":1.0}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"241":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"228":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"1":{".":{"1":{"df":1,"docs":{"215":{"tf":1.0}}},"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":{":":{"3":{"8":{"0":{"3":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"?":{"df":0,"docs":{},"p":{"=":{"%":{"5":{"b":{"%":{"2":{"2":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"%":{"2":{"2":{"%":{"2":{"c":{"%":{"2":{"2":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"%":{"2":{"2":{"%":{"5":{"d":{"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":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"q":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"%":{"2":{"0":{"1":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":22,"docs":{"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"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},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"5":{"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":{}},"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":1,"docs":{"198":{"tf":1.0}}}}}}},"df":33,"docs":{"10":{"tf":1.0},"192":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.8284271247461903},"200":{"tf":2.0},"201":{"tf":1.7320508075688772},"202":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"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":2.6457513110645907},"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},"31":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.0}},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"/":{"#":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"196":{"tf":1.0},"197":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"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":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"df":2,"docs":{"193":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"238":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"220":{"tf":1.0},"233":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"233":{"tf":1.0},"246":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"å":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"251":{"tf":1.0}}},"df":1,"docs":{"253":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{".":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"m":{"df":1,"docs":{"233":{"tf":1.0}}}},"d":{"df":6,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0}},"e":{"a":{"df":4,"docs":{"148":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"233":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"224":{"tf":1.0},"67":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"131":{"tf":1.0},"147":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"235":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"f":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"139":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"245":{"tf":1.0}}}}}}}},"m":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"193":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":5,"docs":{"149":{"tf":1.4142135623730951},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"187":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"13":{"tf":2.0},"155":{"tf":1.0},"22":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"235":{"tf":1.7320508075688772},"236":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"250":{"tf":1.0},"251":{"tf":1.0}}}}},"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":{"21":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"241":{"tf":1.0},"250":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"232":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"224":{"tf":1.0},"32":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"15":{"tf":1.0},"78":{"tf":1.0}}}}}}},"df":1,"docs":{"232":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"149":{"tf":1.0},"206":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"231":{"tf":1.0},"238":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":11,"docs":{"106":{"tf":1.0},"173":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.4142135623730951},"241":{"tf":1.0},"243":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":2.23606797749979},"41":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":2,"docs":{"24":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"230":{"tf":1.0},"233":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"237":{"tf":1.0},"250":{"tf":1.0}}}}}},"l":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"184":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"181":{"tf":2.0},"21":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"248":{"tf":1.0},"251":{"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":{"228":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"117":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}}}},"df":25,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"168":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"199":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":2.0},"222":{"tf":1.0},"23":{"tf":3.3166247903554},"245":{"tf":1.0},"29":{"tf":2.8284271247461903},"39":{"tf":1.0},"58":{"tf":2.0},"64":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":2,"docs":{"228":{"tf":1.0},"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"158":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"167":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":1.0},"21":{"tf":2.0},"245":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"192":{"tf":1.0},"193":{"tf":2.0},"194":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":1.7320508075688772},"197":{"tf":1.7320508075688772},"2":{"tf":1.0},"4":{"tf":2.0},"8":{"tf":1.0}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":7,"docs":{"220":{"tf":1.0},"222":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"105":{"tf":1.7320508075688772}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":8,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"119":{"tf":1.0},"136":{"tf":1.0},"224":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":2.0},"86":{"tf":1.0}},"r":{"df":1,"docs":{"232":{"tf":1.0}}}},"n":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1":{"tf":1.0},"233":{"tf":1.0}}}}},"f":{"a":{"c":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":2,"docs":{"125":{"tf":1.0},"234":{"tf":1.0}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"50":{"tf":1.7320508075688772},"52":{"tf":2.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"v":{"df":3,"docs":{"148":{"tf":1.0},"224":{"tf":1.4142135623730951},"71":{"tf":2.8284271247461903}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":4,"docs":{"231":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951}},"t":{"df":2,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"155":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"c":{"df":2,"docs":{"213":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.4142135623730951},"231":{"tf":1.0},"238":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":7,"docs":{"224":{"tf":2.0},"233":{"tf":1.0},"245":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"t":{"'":{"df":5,"docs":{"16":{"tf":1.0},"230":{"tf":1.4142135623730951},"234":{"tf":1.0},"235":{"tf":1.7320508075688772},"241":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"21":{"tf":1.0},"220":{"tf":1.0}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":4,"docs":{"15":{"tf":1.0},"16":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0}}},"m":{"df":1,"docs":{"221":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"18":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"a":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"18":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"245":{"tf":1.0}}}}}}},"o":{"b":{"df":3,"docs":{"237":{"tf":1.0},"239":{"tf":1.4142135623730951},"246":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"225":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"14":{"tf":2.23606797749979},"184":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":1.0},"247":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":2.8284271247461903},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.7320508075688772}}}},"y":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":21,"docs":{"17":{"tf":1.0},"175":{"tf":1.0},"203":{"tf":2.0},"204":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.7320508075688772},"216":{"tf":2.0},"217":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":3.3166247903554},"225":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"25":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"91":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"167":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"y":{"(":{"1":{"9":{"7":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"124":{"tf":1.7320508075688772},"148":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}}}}},"k":{"a":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"24":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":4,"docs":{"235":{"tf":1.0},"236":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"219":{"tf":1.0},"222":{"tf":1.0}}}}}},"df":0,"docs":{}},"y":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}}}}},"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":8,"docs":{"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"40":{"tf":1.0},"74":{"tf":1.4142135623730951},"79":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":9,"docs":{"221":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"230":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"11":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0}},"n":{"df":2,"docs":{"235":{"tf":1.0},"77":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"117":{"tf":1.0}}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"187":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"15":{"tf":1.0},"234":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"11":{"tf":1.0},"22":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"234":{"tf":2.8284271247461903},"9":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"146":{"tf":1.4142135623730951},"224":{"tf":1.0},"72":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"179":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"60":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"238":{"tf":1.0},"57":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}},"w":{"df":4,"docs":{"13":{"tf":1.0},"228":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":1.0}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"d":{"df":7,"docs":{"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"212":{"tf":1.0},"216":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"167":{"tf":1.0},"2":{"tf":1.0},"237":{"tf":1.0}}}},"s":{"df":2,"docs":{"57":{"tf":1.0},"60":{"tf":1.0}}},"v":{"df":2,"docs":{"16":{"tf":1.0},"235":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":8,"docs":{"102":{"tf":1.0},"117":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"39":{"tf":1.4142135623730951},"54":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"167":{"tf":1.0},"17":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"46":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"df":1,"docs":{"232":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"'":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":1,"docs":{"112":{"tf":1.0}}}}},"[":{"3":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"44":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":5,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":2.0},"44":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}},"s":{"df":5,"docs":{"106":{"tf":1.0},"230":{"tf":1.0},"238":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.0}}}},"t":{"'":{"df":5,"docs":{"13":{"tf":1.0},"15":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"181":{"tf":1.0},"234":{"tf":1.0},"252":{"tf":1.0},"91":{"tf":1.4142135623730951}}}},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{".":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":1,"docs":{"238":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"227":{"tf":1.0},"253":{"tf":2.23606797749979},"9":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"235":{"tf":1.0}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"251":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":2.8284271247461903},"84":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"u":{"a":{"df":2,"docs":{"230":{"tf":1.0},"232":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"df":1,"docs":{"212":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"197":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":2,"docs":{"234":{"tf":1.0},"247":{"tf":1.0}}},"t":{"df":15,"docs":{"133":{"tf":1.0},"169":{"tf":1.0},"187":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":2.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":23,"docs":{"170":{"tf":2.23606797749979},"216":{"tf":1.4142135623730951},"221":{"tf":1.0},"224":{"tf":2.0},"225":{"tf":1.0},"23":{"tf":1.0},"49":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":2.0},"75":{"tf":1.4142135623730951},"76":{"tf":2.23606797749979},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"238":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"230":{"tf":1.0},"250":{"tf":1.0}}}}},"n":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"154":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{},"g":{"1":{"0":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"120":{"tf":1.0}}},"df":4,"docs":{"120":{"tf":1.7320508075688772},"198":{"tf":1.0},"235":{"tf":1.7320508075688772},"243":{"tf":1.0}},"i":{"c":{"df":2,"docs":{"233":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"232":{"tf":1.0},"234":{"tf":1.4142135623730951},"241":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"30":{"tf":1.0},"61":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"169":{"tf":1.0},"233":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}}}}},"p":{"df":1,"docs":{"233":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"237":{"tf":1.0}}},"t":{"df":2,"docs":{"13":{"tf":1.0},"243":{"tf":1.0}}}},"t":{"df":2,"docs":{"231":{"tf":1.0},"232":{"tf":1.0}}},"w":{"df":1,"docs":{"233":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"103":{"tf":1.7320508075688772},"181":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":2.0}}}}}},"y":{"df":1,"docs":{"16":{"tf":1.0}}}},"m":{")":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":3,"docs":{"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951}}}}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"237":{"tf":1.0}}}}},"o":{"df":1,"docs":{"197":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"243":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"196":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"229":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"9":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":11,"docs":{"13":{"tf":1.0},"148":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"220":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":12,"docs":{"17":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.0},"231":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.0},"34":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":16,"docs":{"117":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":2.0},"23":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"40":{"tf":1.0},"87":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"237":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":1,"docs":{"225":{"tf":1.0}}},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"231":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"233":{"tf":1.7320508075688772},"235":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":13,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"20":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":2.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":3.605551275463989},"95":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"187":{"tf":1.0},"241":{"tf":1.0}}}}},"h":{"df":2,"docs":{"120":{"tf":2.0},"86":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}}}}}},"x":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"127":{"tf":2.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}}}}},"df":4,"docs":{"122":{"tf":1.4142135623730951},"147":{"tf":1.0},"200":{"tf":1.0},"219":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":10,"docs":{"149":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}}},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"247":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"247":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"221":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"25":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"19":{"tf":1.7320508075688772},"220":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"238":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"241":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"54":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":1,"docs":{"127":{"tf":2.0}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"127":{"tf":1.4142135623730951}}}}}},"u":{"df":1,"docs":{"86":{"tf":1.0}},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"224":{"tf":1.0},"63":{"tf":1.0}}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"195":{"tf":1.4142135623730951},"4":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"149":{"tf":1.7320508075688772},"17":{"tf":1.0},"18":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"235":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"187":{"tf":1.0},"85":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"86":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.7320508075688772}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"d":{"b":{"df":4,"docs":{"234":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"71":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":20,"docs":{"15":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"221":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.7320508075688772},"238":{"tf":1.4142135623730951},"245":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"58":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"197":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"206":{"tf":2.0},"216":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":12,"docs":{"151":{"tf":1.0},"180":{"tf":1.0},"222":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"231":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":1.4142135623730951},"40":{"tf":1.0},"86":{"tf":1.0},"97":{"tf":1.0}}}}}}},"n":{"d":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"233":{"tf":1.0},"235":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"56":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":60,"docs":{"110":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.0},"155":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":2.23606797749979},"18":{"tf":1.4142135623730951},"181":{"tf":1.0},"187":{"tf":2.23606797749979},"188":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":2.0},"205":{"tf":1.0},"206":{"tf":1.0},"217":{"tf":3.0},"218":{"tf":1.4142135623730951},"219":{"tf":2.449489742783178},"220":{"tf":2.23606797749979},"221":{"tf":2.23606797749979},"222":{"tf":1.0},"23":{"tf":2.23606797749979},"24":{"tf":2.449489742783178},"26":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":3.3166247903554},"30":{"tf":1.0},"35":{"tf":1.7320508075688772},"37":{"tf":2.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":2.0},"46":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":2.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":2.0},"60":{"tf":1.7320508075688772},"64":{"tf":1.0},"74":{"tf":2.0},"76":{"tf":2.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.0},"83":{"tf":2.0},"85":{"tf":2.0},"88":{"tf":2.449489742783178},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"94":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"220":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"222":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":7,"docs":{"167":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"120":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":15,"docs":{"167":{"tf":2.0},"168":{"tf":1.0},"169":{"tf":2.449489742783178},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"20":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"211":{"tf":2.0}}}}}}},"df":2,"docs":{"225":{"tf":1.0},"41":{"tf":2.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"252":{"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":{"234":{"tf":1.0},"235":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"205":{"tf":1.0}}}}}}},"df":1,"docs":{"235":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":9,"docs":{"12":{"tf":1.0},"190":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"226":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}},"g":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"84":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"250":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"167":{"tf":1.0},"168":{"tf":1.7320508075688772},"169":{"tf":1.0},"17":{"tf":1.7320508075688772},"21":{"tf":1.0},"219":{"tf":1.0},"238":{"tf":2.6457513110645907},"241":{"tf":1.0},"245":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"237":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"234":{"tf":1.0},"240":{"tf":1.0}}}}},"w":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":13,"docs":{"176":{"tf":1.7320508075688772},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"194":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.7320508075688772},"235":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"211":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"224":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":8,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.7320508075688772},"133":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.4142135623730951},"187":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":5,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"233":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"155":{"tf":1.0},"158":{"tf":1.0},"175":{"tf":1.0},"190":{"tf":1.0},"238":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"169":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":36,"docs":{"112":{"tf":1.0},"120":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.7320508075688772},"131":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"154":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"58":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"84":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0}}},"h":{"df":2,"docs":{"179":{"tf":1.0},"29":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"df":11,"docs":{"13":{"tf":1.0},"151":{"tf":1.7320508075688772},"156":{"tf":1.0},"16":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"241":{"tf":1.7320508075688772},"9":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"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":14,"docs":{"117":{"tf":1.4142135623730951},"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"133":{"tf":1.0},"141":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"40":{"tf":1.0},"63":{"tf":2.449489742783178},"65":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"f":{"(":{"1":{"df":1,"docs":{"140":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"140":{"tf":1.7320508075688772}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"100":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"145":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":2.0},"179":{"tf":1.0},"180":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"233":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.7320508075688772},"67":{"tf":1.0},"86":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"118":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":1.0},"86":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.4142135623730951}}}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"40":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"(":{"[":{"[":{"'":{"a":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"113":{"tf":1.7320508075688772}},"s":{"(":{"df":0,"docs":{},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"113":{"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":{"114":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":27,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"146":{"tf":1.4142135623730951},"167":{"tf":1.0},"168":{"tf":2.0},"17":{"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},"217":{"tf":1.0},"221":{"tf":2.449489742783178},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"23":{"tf":1.0},"233":{"tf":1.0},"250":{"tf":1.0},"40":{"tf":1.4142135623730951},"49":{"tf":2.8284271247461903},"72":{"tf":1.0},"74":{"tf":3.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"207":{"tf":1.0},"235":{"tf":1.0}}}}}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"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":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"101":{"tf":2.0}}}}}}}}},"df":1,"docs":{"101":{"tf":1.0}}}}}},"df":1,"docs":{"77":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"167":{"tf":1.0},"207":{"tf":1.0},"238":{"tf":1.0},"40":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}}}}},"k":{"df":2,"docs":{"76":{"tf":1.0},"93":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"228":{"tf":1.0},"233":{"tf":1.0},"249":{"tf":1.4142135623730951}}}},"d":{"df":2,"docs":{"13":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":4,"docs":{"228":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"157":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":5,"docs":{"23":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":1.0}}},"df":27,"docs":{"125":{"tf":1.0},"132":{"tf":1.0},"17":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"230":{"tf":2.0},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":2.23606797749979},"235":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"243":{"tf":1.0},"38":{"tf":1.4142135623730951},"51":{"tf":1.0},"73":{"tf":1.4142135623730951},"77":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"233":{"tf":1.0},"238":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"238":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"235":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"149":{"tf":1.7320508075688772},"228":{"tf":1.0},"240":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951}}},"r":{"df":46,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"132":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"187":{"tf":1.0},"192":{"tf":1.0},"198":{"tf":1.7320508075688772},"20":{"tf":1.0},"21":{"tf":1.0},"219":{"tf":1.4142135623730951},"231":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"50":{"tf":1.7320508075688772},"54":{"tf":1.7320508075688772},"59":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":2.0},"86":{"tf":1.4142135623730951},"87":{"tf":2.23606797749979},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.7320508075688772},"92":{"tf":2.0},"93":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":2.0}}}},"t":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"*":{"/":{"*":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"106":{"tf":1.0},"110":{"tf":1.0},"133":{"tf":1.0},"147":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.4142135623730951},"200":{"tf":1.0},"37":{"tf":1.0},"64":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"110":{"tf":1.0},"132":{"tf":1.4142135623730951},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"218":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.0},"247":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.0},"44":{"tf":3.7416573867739413},"45":{"tf":1.0},"47":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":2,"docs":{"41":{"tf":2.449489742783178},"77":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"13":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"180":{"tf":1.0},"253":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"229":{"tf":1.0},"240":{"tf":1.0}}}}}}},"t":{"df":4,"docs":{"0":{"tf":1.0},"146":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"199":{"tf":1.0},"241":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"213":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"228":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"0":{"tf":1.0},"199":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"35":{"tf":1.0},"7":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"149":{"tf":1.0},"162":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"133":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"176":{"tf":1.0}}}}}}}}}},"p":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}}},")":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":6,"docs":{"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"74":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"34":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"1":{"df":0,"docs":{},"y":{"2":{"df":0,"docs":{},"m":{"1":{"0":{"d":{"df":0,"docs":{},"t":{"2":{"df":0,"docs":{},"h":{"3":{"0":{"df":0,"docs":{},"m":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"\"":{"[":{"[":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"221":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"'":{"[":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"df":2,"docs":{"206":{"tf":1.0},"218":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"[":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"@":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{";":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"=":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"d":{".":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"220":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"d":{"df":2,"docs":{"64":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"21":{"tf":1.0},"233":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":8,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"147":{"tf":1.0},"224":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0}}}},"l":{"a":{"c":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"a":{"df":3,"docs":{"203":{"tf":1.0},"217":{"tf":1.0},"37":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"217":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":22,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"144":{"tf":1.0},"147":{"tf":2.0},"199":{"tf":1.0},"200":{"tf":2.23606797749979},"205":{"tf":1.7320508075688772},"216":{"tf":2.449489742783178},"217":{"tf":2.449489742783178},"218":{"tf":2.449489742783178},"219":{"tf":2.0},"220":{"tf":2.23606797749979},"221":{"tf":2.0},"222":{"tf":1.0},"31":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"187":{"tf":1.0},"224":{"tf":1.0},"48":{"tf":1.0}}}}}}}},"t":{"df":3,"docs":{"162":{"tf":1.0},"216":{"tf":1.0},"232":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"236":{"tf":1.0},"239":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"136":{"tf":1.0},"21":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":1,"docs":{"234":{"tf":1.0}},"q":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"234":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"215":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"198":{"tf":1.4142135623730951},"215":{"tf":2.0}}},"df":0,"docs":{}}}}},"t":{"df":3,"docs":{"13":{"tf":1.0},"236":{"tf":1.0},"241":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"117":{"tf":2.6457513110645907},"25":{"tf":2.8284271247461903}}}},"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"180":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":1,"docs":{"180":{"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":{},"{":{"a":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"178":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"179":{"tf":1.4142135623730951},"27":{"tf":1.0}},"e":{"(":{"[":{"0":{",":{"1":{",":{"2":{",":{"3":{",":{"4":{"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":{}},"df":0,"docs":{},"{":{"df":0,"docs":{},"x":{"df":1,"docs":{"179":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"177":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"177":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"176":{"tf":1.4142135623730951},"26":{"tf":1.0}}}}}},"df":18,"docs":{"167":{"tf":2.449489742783178},"168":{"tf":1.7320508075688772},"169":{"tf":1.7320508075688772},"17":{"tf":1.0},"170":{"tf":1.7320508075688772},"171":{"tf":2.449489742783178},"172":{"tf":3.3166247903554},"173":{"tf":3.0},"174":{"tf":2.23606797749979},"175":{"tf":3.3166247903554},"176":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"178":{"tf":1.7320508075688772},"179":{"tf":1.7320508075688772},"180":{"tf":2.23606797749979},"20":{"tf":1.4142135623730951},"26":{"tf":2.0},"27":{"tf":2.0}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"@":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"110":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":18,"docs":{"14":{"tf":1.0},"184":{"tf":1.0},"195":{"tf":2.23606797749979},"198":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"79":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"29":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951}}}}}},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":4,"docs":{"232":{"tf":1.0},"238":{"tf":1.0},"30":{"tf":1.0},"40":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"29":{"tf":1.0},"81":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"d":{"df":9,"docs":{"149":{"tf":2.0},"160":{"tf":1.7320508075688772},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"238":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"9":{"tf":1.0}}}},"t":{"df":8,"docs":{"13":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"201":{"tf":1.0},"235":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"49":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"i":{"df":1,"docs":{"120":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"236":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"232":{"tf":1.7320508075688772},"234":{"tf":1.7320508075688772},"241":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"d":{"a":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"233":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}}}}}},"l":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"231":{"tf":1.0},"55":{"tf":1.0},"79":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"217":{"tf":1.0},"218":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":4,"docs":{"194":{"tf":1.0},"21":{"tf":1.0},"253":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"u":{"df":1,"docs":{"86":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"224":{"tf":1.0},"67":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"198":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"125":{"tf":2.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"200":{"tf":1.0},"218":{"tf":2.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"78":{"tf":1.0}}},"x":{"df":1,"docs":{"234":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":19,"docs":{"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":27,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"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},"216":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"32":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"df":6,"docs":{"229":{"tf":1.0},"233":{"tf":1.0},"241":{"tf":1.0},"250":{"tf":1.0},"76":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}}}}}}}}}},"w":{"df":1,"docs":{"120":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"120":{"tf":1.0},"167":{"tf":1.0},"21":{"tf":1.4142135623730951},"231":{"tf":1.0},"40":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"149":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"165":{"tf":1.7320508075688772},"76":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"224":{"tf":1.0},"226":{"tf":1.0},"234":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":3,"docs":{"149":{"tf":1.0},"160":{"tf":1.7320508075688772},"238":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{".":{"c":{"a":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"76":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"10":{"tf":1.0},"207":{"tf":1.0},"220":{"tf":1.4142135623730951},"35":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":3,"docs":{"85":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":6,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"194":{"tf":1.0},"233":{"tf":1.0},"6":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":32,"docs":{"112":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"23":{"tf":2.449489742783178},"238":{"tf":1.0},"24":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":3.1622776601683795},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"44":{"tf":2.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"55":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772}},"s":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"155":{"tf":1.0},"28":{"tf":1.0},"58":{"tf":1.0}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"235":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"234":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"229":{"tf":1.0},"235":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"246":{"tf":1.7320508075688772}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"64":{"tf":1.0}}}}},"u":{"c":{"df":1,"docs":{"239":{"tf":1.0}},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":10,"docs":{"112":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"25":{"tf":1.0},"29":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":2.0},"55":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772}}}}},"df":60,"docs":{"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.4142135623730951},"194":{"tf":1.0},"203":{"tf":1.7320508075688772},"206":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"221":{"tf":2.0},"229":{"tf":1.0},"23":{"tf":2.23606797749979},"236":{"tf":1.4142135623730951},"24":{"tf":2.23606797749979},"240":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":2.449489742783178},"30":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":2.6457513110645907},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":2.23606797749979},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"6":{"tf":1.0},"74":{"tf":2.0},"76":{"tf":1.4142135623730951},"79":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"85":{"tf":2.449489742783178},"88":{"tf":2.449489742783178},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"40":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}}}}},".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"25":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":1,"docs":{"29":{"tf":1.0}}}},"[":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"234":{"tf":1.0},"241":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"220":{"tf":1.0},"238":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"233":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.0},"77":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":32,"docs":{"10":{"tf":1.0},"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"17":{"tf":1.0},"180":{"tf":1.4142135623730951},"186":{"tf":1.0},"19":{"tf":1.0},"198":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"215":{"tf":1.0},"220":{"tf":1.0},"228":{"tf":2.0},"231":{"tf":1.0},"234":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.7320508075688772},"32":{"tf":1.0},"37":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"t":{"1":{"2":{"df":0,"docs":{},"h":{"3":{"0":{"df":0,"docs":{},"m":{"5":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}}},"4":{"df":0,"docs":{},"m":{"5":{"6":{".":{"7":{"8":{"9":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"230":{"tf":1.0},"233":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"195":{"tf":1.4142135623730951},"231":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":5,"docs":{"110":{"tf":1.0},"224":{"tf":1.0},"246":{"tf":1.0},"63":{"tf":1.0},"81":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"193":{"tf":1.0}}}},"z":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"c":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"213":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"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":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}},"q":{")":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"200":{"tf":1.0}}}}}}},"3":{"df":1,"docs":{"252":{"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":8,"docs":{"205":{"tf":1.0},"206":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"%":{"2":{"0":{"*":{"%":{"2":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"%":{"2":{"0":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"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":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"200":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"92":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":76,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"148":{"tf":2.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.4142135623730951},"155":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"157":{"tf":1.7320508075688772},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"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},"181":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":2.0},"205":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"220":{"tf":1.0},"228":{"tf":1.7320508075688772},"229":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":2.23606797749979},"234":{"tf":2.449489742783178},"236":{"tf":1.7320508075688772},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":2.23606797749979},"28":{"tf":1.0},"30":{"tf":1.4142135623730951},"33":{"tf":2.449489742783178},"34":{"tf":1.4142135623730951},"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.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":2.0},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":2.0},"54":{"tf":2.449489742783178},"55":{"tf":2.23606797749979},"56":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0}}},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"235":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"233":{"tf":1.7320508075688772},"238":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"2":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"0":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.7320508075688772},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"234":{"tf":1.0},"241":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"64":{"tf":1.0},"74":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"r":{"a":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"3":{"2":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"146":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":2,"docs":{"119":{"tf":2.23606797749979},"146":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"w":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"106":{"tf":1.0},"241":{"tf":1.0}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"192":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"239":{"tf":1.4142135623730951},"245":{"tf":1.0},"252":{"tf":1.0},"35":{"tf":1.0},"57":{"tf":1.7320508075688772},"8":{"tf":1.0}},"i":{"df":2,"docs":{"0":{"tf":1.0},"238":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"224":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"67":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"238":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"207":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"81":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"215":{"tf":1.0},"220":{"tf":1.0},"63":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"193":{"tf":1.0},"205":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"240":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"d":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"13":{"tf":1.4142135623730951},"155":{"tf":1.0},"16":{"tf":1.0},"212":{"tf":1.0},"228":{"tf":1.0},"235":{"tf":1.4142135623730951},"239":{"tf":1.0},"243":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"237":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":7,"docs":{"171":{"tf":1.7320508075688772},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"245":{"tf":1.0},"56":{"tf":3.4641016151377544}}}}}},"d":{"df":2,"docs":{"219":{"tf":1.0},"222":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"u":{"c":{"df":2,"docs":{"231":{"tf":1.0},"237":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"187":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":210,"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},"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},"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.4142135623730951},"191":{"tf":1.0},"192":{"tf":2.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},"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},"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},"224":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"253":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"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},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"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.4142135623730951},"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.4142135623730951},"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}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":2.449489742783178}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"203":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"df":1,"docs":{"104":{"tf":1.0}},"t":{"df":9,"docs":{"103":{"tf":1.0},"148":{"tf":1.4142135623730951},"167":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"230":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"238":{"tf":1.0},"29":{"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":2,"docs":{"14":{"tf":1.0},"238":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"194":{"tf":1.0},"20":{"tf":1.0},"241":{"tf":2.0},"57":{"tf":2.0},"58":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":2.449489742783178}}}},"df":0,"docs":{},"v":{"df":2,"docs":{"157":{"tf":1.0},"234":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":11,"docs":{"117":{"tf":1.0},"13":{"tf":1.0},"179":{"tf":1.4142135623730951},"191":{"tf":1.0},"235":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"57":{"tf":1.0},"60":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.7320508075688772}},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":1,"docs":{"104":{"tf":2.0}},"e":{"(":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"a":{"df":2,"docs":{"237":{"tf":1.0},"239":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"195":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":10,"docs":{"115":{"tf":1.0},"149":{"tf":1.0},"170":{"tf":1.0},"179":{"tf":1.0},"217":{"tf":1.0},"49":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"54":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":13,"docs":{"186":{"tf":1.0},"197":{"tf":1.0},"215":{"tf":1.4142135623730951},"22":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":2.23606797749979},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"203":{"tf":1.0},"204":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"127":{"tf":1.0},"241":{"tf":1.0},"35":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"181":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"t":{"df":3,"docs":{"10":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":25,"docs":{"132":{"tf":1.4142135623730951},"16":{"tf":1.0},"215":{"tf":1.0},"222":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"249":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"64":{"tf":1.0},"81":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"246":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":73,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":2.0},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"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},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.7320508075688772},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"220":{"tf":1.0},"222":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"238":{"tf":1.0},"249":{"tf":1.0},"34":{"tf":1.7320508075688772},"38":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":2.23606797749979},"57":{"tf":2.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":2.0},"63":{"tf":1.0},"76":{"tf":2.0},"84":{"tf":1.0},"85":{"tf":2.8284271247461903},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.7320508075688772},"92":{"tf":2.0},"93":{"tf":2.0},"94":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"233":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"110":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}}}}}}},"f":{"c":{"df":2,"docs":{"215":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"234":{"tf":1.0}}}},"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":7,"docs":{"102":{"tf":1.0},"230":{"tf":1.4142135623730951},"232":{"tf":1.0},"239":{"tf":1.0},"54":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"m":{"df":2,"docs":{"195":{"tf":1.7320508075688772},"4":{"tf":1.0}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":4,"docs":{"227":{"tf":1.0},"248":{"tf":1.0},"252":{"tf":2.0},"30":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"57":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"60":{"tf":3.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"230":{"tf":1.0}}},"t":{"df":1,"docs":{"169":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"187":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":1,"docs":{"120":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"w":{"df":30,"docs":{"159":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":2.449489742783178},"18":{"tf":1.0},"181":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"228":{"tf":1.4142135623730951},"232":{"tf":1.0},"238":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"245":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"63":{"tf":1.0},"74":{"tf":1.4142135623730951},"76":{"tf":2.6457513110645907},"77":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":2.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"229":{"tf":1.0}}}},"n":{"df":9,"docs":{"0":{"tf":1.0},"13":{"tf":1.0},"154":{"tf":1.0},"195":{"tf":2.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"32":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.4142135623730951}}}},"å":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"253":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"3":{"df":2,"docs":{"241":{"tf":1.0},"250":{"tf":1.0}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.0},"244":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"13":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"40":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":4,"docs":{"131":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"35":{"tf":1.0}},"s":{"_":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":10,"docs":{"117":{"tf":1.7320508075688772},"203":{"tf":1.0},"218":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"39":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"79":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":14,"docs":{"110":{"tf":1.0},"158":{"tf":1.0},"197":{"tf":1.0},"220":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"220":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"u":{"c":{"df":4,"docs":{"205":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"235":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"57":{"tf":3.3166247903554},"58":{"tf":1.7320508075688772},"59":{"tf":3.0},"60":{"tf":2.8284271247461903},"61":{"tf":1.4142135623730951}}}}}}}}},"w":{"df":2,"docs":{"233":{"tf":1.0},"241":{"tf":1.0}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"180":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"216":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"228":{"tf":1.0},"81":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"237":{"tf":1.0}}}},"n":{"df":1,"docs":{"171":{"tf":1.0}}},"r":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":14,"docs":{"181":{"tf":2.8284271247461903},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"20":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":2.8284271247461903},"24":{"tf":1.0},"34":{"tf":1.0},"76":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"12":{"tf":1.0},"167":{"tf":1.0},"181":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.4142135623730951},"24":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"230":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"60":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"21":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":3,"docs":{"122":{"tf":1.0},"184":{"tf":1.0},"35":{"tf":1.0}},"e":{"a":{"df":2,"docs":{"117":{"tf":1.0},"230":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"tf":1.0}}}}},"df":20,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"117":{"tf":1.7320508075688772},"123":{"tf":1.0},"133":{"tf":1.4142135623730951},"139":{"tf":1.0},"147":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"238":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"71":{"tf":1.0},"84":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"148":{"tf":1.0},"37":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":14,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"170":{"tf":1.0},"204":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0}},"m":{"df":1,"docs":{"16":{"tf":1.0}}},"n":{"df":5,"docs":{"155":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"46":{"tf":1.0},"56":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":143,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"102":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":2.449489742783178},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"13":{"tf":2.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":2.23606797749979},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":2.0},"15":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"16":{"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},"169":{"tf":1.7320508075688772},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":2.23606797749979},"173":{"tf":2.0},"174":{"tf":1.7320508075688772},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"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.4142135623730951},"185":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"19":{"tf":1.0},"190":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"205":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"218":{"tf":1.0},"220":{"tf":1.0},"222":{"tf":1.4142135623730951},"23":{"tf":1.0},"236":{"tf":1.4142135623730951},"245":{"tf":1.0},"34":{"tf":2.23606797749979},"35":{"tf":3.1622776601683795},"37":{"tf":2.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":2.23606797749979},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":2.23606797749979},"56":{"tf":2.449489742783178},"58":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"64":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":2.0},"76":{"tf":2.0},"77":{"tf":2.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"85":{"tf":2.449489742783178},"86":{"tf":3.0},"87":{"tf":1.7320508075688772},"88":{"tf":2.449489742783178},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":2.6457513110645907},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"97":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"f":{"df":2,"docs":{"198":{"tf":1.0},"237":{"tf":1.0}}},"l":{"df":1,"docs":{"240":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"58":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"222":{"tf":1.4142135623730951},"32":{"tf":1.0}}}}}}},"df":5,"docs":{"15":{"tf":1.4142135623730951},"167":{"tf":1.0},"233":{"tf":1.4142135623730951},"238":{"tf":1.0},"245":{"tf":1.0}}}},"n":{"d":{"df":4,"docs":{"199":{"tf":1.4142135623730951},"202":{"tf":1.0},"222":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"13":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"88":{"tf":1.0},"90":{"tf":1.0}}}}},"t":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"209":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":2.0},"24":{"tf":1.0},"250":{"tf":1.7320508075688772},"40":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"233":{"tf":1.0}}},"n":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"235":{"tf":1.0}},"s":{"df":1,"docs":{"235":{"tf":1.0}}}}}},"v":{"df":4,"docs":{"110":{"tf":1.0},"231":{"tf":1.0},"246":{"tf":1.0},"63":{"tf":1.0}}}},"t":{"df":15,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"175":{"tf":1.0},"219":{"tf":1.0},"24":{"tf":2.23606797749979},"249":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":2.23606797749979},"29":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"47":{"tf":1.0},"50":{"tf":1.7320508075688772},"54":{"tf":2.0},"56":{"tf":1.0},"91":{"tf":1.0}}}},"h":{"a":{"1":{"(":{"'":{"2":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"145":{"tf":1.7320508075688772}}},"df":1,"docs":{"145":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}},"p":{"df":1,"docs":{"9":{"tf":1.0}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"40":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"139":{"tf":1.0},"22":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"w":{"df":1,"docs":{"13":{"tf":1.0}},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"233":{"tf":1.0},"236":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"85":{"tf":2.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":1,"docs":{"120":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"159":{"tf":1.0},"25":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"169":{"tf":1.0},"221":{"tf":1.0},"233":{"tf":1.0},"29":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"201":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"238":{"tf":1.0},"33":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"187":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"230":{"tf":1.0},"233":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.0},"55":{"tf":1.0}}}}}}}},"n":{"df":1,"docs":{"120":{"tf":1.0}},"g":{"df":0,"docs":{},"l":{"df":16,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"180":{"tf":1.0},"201":{"tf":1.0},"213":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":1.4142135623730951},"45":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"76":{"tf":1.4142135623730951},"87":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}},"h":{"df":1,"docs":{"120":{"tf":1.0}}}},"t":{"df":1,"docs":{"234":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"247":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"d":{"a":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"184":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"252":{"tf":1.0}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"19":{"tf":1.0},"230":{"tf":1.0}}}},"v":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"241":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"229":{"tf":1.0},"77":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"235":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":4,"docs":{"106":{"tf":1.0},"21":{"tf":1.0},"228":{"tf":1.0},"240":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"228":{"tf":1.0},"235":{"tf":1.0},"35":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"238":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"155":{"tf":1.0},"34":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":12,"docs":{"21":{"tf":1.7320508075688772},"233":{"tf":1.0},"234":{"tf":1.0},"241":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"58":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}},"i":{"df":15,"docs":{"117":{"tf":1.4142135623730951},"120":{"tf":1.0},"131":{"tf":1.0},"179":{"tf":1.0},"195":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"229":{"tf":1.0},"253":{"tf":1.0},"29":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"76":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"l":{"'":{"df":1,"docs":{"21":{"tf":1.0}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"167":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0}}}}}}},":":{"2":{"0":{"1":{"1":{"df":8,"docs":{"149":{"tf":1.7320508075688772},"156":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"233":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"241":{"tf":1.0},"245":{"tf":1.0}}},"6":{"df":3,"docs":{"238":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}},"2":{"3":{"df":4,"docs":{"233":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{"df":2,"docs":{"238":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":203,"docs":{"0":{"tf":1.0},"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":2.8284271247461903},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.4142135623730951},"120":{"tf":2.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.4142135623730951},"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},"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.7320508075688772},"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.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.4142135623730951},"17":{"tf":1.4142135623730951},"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},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":2.8284271247461903},"200":{"tf":1.0},"21":{"tf":3.1622776601683795},"216":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":3.4641016151377544},"234":{"tf":4.795831523312719},"238":{"tf":2.449489742783178},"24":{"tf":1.4142135623730951},"241":{"tf":1.0},"245":{"tf":2.23606797749979},"246":{"tf":1.0},"25":{"tf":1.0},"252":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":2.0},"34":{"tf":1.7320508075688772},"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.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":2.0},"69":{"tf":2.0},"7":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"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.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"'":{"df":4,"docs":{"120":{"tf":1.0},"175":{"tf":1.0},"234":{"tf":1.0},"56":{"tf":1.0}}},"df":5,"docs":{"110":{"tf":1.0},"21":{"tf":1.4142135623730951},"234":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"35":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"229":{"tf":1.0}}},"i":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"193":{"tf":1.0},"199":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"'":{"df":1,"docs":{"149":{"tf":1.0}}},"df":18,"docs":{"120":{"tf":1.4142135623730951},"160":{"tf":1.0},"169":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"44":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":10,"docs":{"106":{"tf":1.0},"12":{"tf":1.0},"149":{"tf":1.4142135623730951},"159":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"204":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"234":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":7,"docs":{"13":{"tf":1.0},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"233":{"tf":1.7320508075688772},"245":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"18":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"220":{"tf":1.4142135623730951},"222":{"tf":2.449489742783178},"228":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"58":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.0}}}}}}},"i":{"c":{"df":5,"docs":{"186":{"tf":1.0},"220":{"tf":1.0},"238":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"215":{"tf":1.4142135623730951},"76":{"tf":2.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"93":{"tf":1.0}}}}},"y":{"df":1,"docs":{"238":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"190":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"16":{"tf":1.0},"194":{"tf":1.0},"230":{"tf":1.4142135623730951},"238":{"tf":1.0},"29":{"tf":1.0},"6":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":1,"docs":{"229":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":11,"docs":{"194":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":2.6457513110645907},"234":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":2.23606797749979},"241":{"tf":1.0},"246":{"tf":1.0},"250":{"tf":2.449489742783178},"6":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":11,"docs":{"0":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"235":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0}}},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"214":{"tf":1.4142135623730951},"220":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0}},"e":{"d":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"214":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"'":{"%":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":1.0}}},"y":{"/":{"%":{"df":0,"docs":{},"m":{"/":{"%":{"d":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"122":{"tf":1.7320508075688772},"148":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"241":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"185":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":30,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"145":{"tf":1.0},"147":{"tf":2.23606797749979},"222":{"tf":1.4142135623730951},"224":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"33":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"21":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"15":{"tf":1.4142135623730951},"167":{"tf":1.0},"181":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"238":{"tf":1.0},"245":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"u":{"b":{"df":2,"docs":{"169":{"tf":1.0},"55":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"205":{"tf":1.0},"220":{"tf":1.7320508075688772}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"92":{"tf":2.23606797749979},"93":{"tf":2.23606797749979},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"175":{"tf":1.0},"203":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"217":{"tf":1.0},"218":{"tf":1.0}}}}}},"r":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"105":{"tf":1.0},"106":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"71":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"149":{"tf":1.4142135623730951},"164":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"233":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"222":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":7,"docs":{"148":{"tf":1.0},"181":{"tf":1.4142135623730951},"22":{"tf":1.0},"220":{"tf":1.0},"28":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"13":{"tf":1.0}},"i":{"df":2,"docs":{"229":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":3,"docs":{"157":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"m":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"128":{"tf":1.0},"134":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"128":{"tf":2.23606797749979},"129":{"tf":1.0},"45":{"tf":1.0}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":10,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"140":{"tf":1.0},"156":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":15,"docs":{"150":{"tf":1.0},"175":{"tf":1.0},"186":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.0},"39":{"tf":1.0},"80":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"197":{"tf":1.0},"230":{"tf":1.0},"250":{"tf":1.0}}},"f":{"a":{"c":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":7,"docs":{"106":{"tf":1.0},"112":{"tf":1.4142135623730951},"172":{"tf":1.0},"27":{"tf":1.0},"64":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"x":{"df":7,"docs":{"125":{"tf":1.0},"158":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"245":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":7,"docs":{"13":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"236":{"tf":1.0}}}}}},"df":7,"docs":{"155":{"tf":2.0},"158":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.0},"235":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"t":{"1":{"df":6,"docs":{"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0}}},"a":{"b":{"df":0,"docs":{},"l":{"df":29,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"157":{"tf":1.0},"168":{"tf":1.4142135623730951},"170":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"185":{"tf":1.0},"190":{"tf":1.4142135623730951},"216":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.4142135623730951},"238":{"tf":2.0},"247":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.7320508075688772},"37":{"tf":2.449489742783178},"42":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.0},"76":{"tf":1.7320508075688772}},"e":{"'":{"df":1,"docs":{"76":{"tf":1.0}}},"_":{"c":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":3,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"182":{"tf":1.7320508075688772},"183":{"tf":1.0},"184":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":3,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":19,"docs":{"117":{"tf":1.0},"130":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.7320508075688772},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"40":{"tf":1.0},"55":{"tf":1.0},"76":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"231":{"tf":1.0},"251":{"tf":1.0}}}},"n":{"df":1,"docs":{"120":{"tf":1.0}},"h":{"df":1,"docs":{"120":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"df":2,"docs":{"197":{"tf":1.0},"215":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"21":{"tf":1.0}}},"t":{"df":1,"docs":{"252":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"234":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"23":{"tf":1.0}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"230":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"241":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"231":{"tf":1.0},"234":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"37":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}},"df":4,"docs":{"149":{"tf":1.0},"230":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0}}}}}},"n":{"d":{"df":1,"docs":{"34":{"tf":1.0}}},"df":1,"docs":{"230":{"tf":1.0}},"t":{"a":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"231":{"tf":1.0},"252":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"56":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":2,"docs":{"201":{"tf":1.0},"209":{"tf":2.0}}}}},"df":0,"docs":{}},"df":6,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.0},"224":{"tf":1.0},"64":{"tf":1.7320508075688772}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"13":{"tf":1.0},"232":{"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":2,"docs":{"132":{"tf":1.0},"56":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"0":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":3,"docs":{"229":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"228":{"tf":1.0},"229":{"tf":1.0}}},"k":{"df":3,"docs":{"243":{"tf":1.0},"250":{"tf":1.0},"53":{"tf":1.0}}}},"r":{"d":{"df":6,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"139":{"tf":1.0},"234":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"117":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"81":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"15":{"tf":1.0},"172":{"tf":1.0},"205":{"tf":1.0},"241":{"tf":1.0}},"t":{"df":2,"docs":{"40":{"tf":1.0},"74":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"21":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":2,"docs":{"232":{"tf":1.0},"73":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"2":{"tf":1.0},"234":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"df":2,"docs":{"199":{"tf":1.0},"8":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":39,"docs":{"11":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.7320508075688772},"13":{"tf":2.0},"148":{"tf":2.6457513110645907},"149":{"tf":2.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":2.23606797749979},"156":{"tf":2.23606797749979},"157":{"tf":2.0},"158":{"tf":1.7320508075688772},"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},"20":{"tf":1.0},"224":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"230":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":3.0},"236":{"tf":1.4142135623730951},"238":{"tf":2.0},"241":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":2.8284271247461903},"71":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"232":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":2.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":7,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"148":{"tf":1.0},"156":{"tf":1.0},"224":{"tf":1.4142135623730951},"68":{"tf":2.8284271247461903}}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"150":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}}}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"64":{"tf":1.0}}}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"241":{"tf":1.4142135623730951},"250":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"_":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":2,"docs":{"23":{"tf":1.0},"88":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"230":{"tf":1.0},"234":{"tf":1.0},"58":{"tf":1.0},"97":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"237":{"tf":1.0}}}}},"m":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"235":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":4,"docs":{"10":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0}}}},"p":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"21":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":1.7320508075688772},"235":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"r":{"a":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"229":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"243":{"tf":1.0},"246":{"tf":1.7320508075688772},"32":{"tf":2.0},"58":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"/":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"13":{"tf":1.0},"156":{"tf":1.7320508075688772},"228":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.4142135623730951},"238":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"156":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"169":{"tf":1.0}}}},"i":{"df":10,"docs":{"0":{"tf":1.0},"10":{"tf":1.4142135623730951},"168":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"7":{"tf":1.7320508075688772},"8":{"tf":1.0},"9":{"tf":1.4142135623730951}},"m":{"df":1,"docs":{"102":{"tf":2.23606797749979}}},"p":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"232":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"237":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"df":24,"docs":{"139":{"tf":1.0},"140":{"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},"206":{"tf":1.0},"219":{"tf":1.4142135623730951},"229":{"tf":1.0},"230":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.449489742783178},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"244":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"235":{"tf":1.0},"238":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"2":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"210":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"147":{"tf":1.7320508075688772},"235":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":18,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":2.0},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"'":{"df":1,"docs":{"224":{"tf":1.0}}},"df":18,"docs":{"117":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.4142135623730951},"140":{"tf":1.0},"159":{"tf":1.0},"233":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"58":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.7320508075688772},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"97":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"228":{"tf":1.0},"238":{"tf":1.0}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":64,"docs":{"11":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.4142135623730951},"167":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.7320508075688772},"20":{"tf":1.0},"201":{"tf":1.4142135623730951},"202":{"tf":1.7320508075688772},"203":{"tf":2.23606797749979},"204":{"tf":2.0},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.7320508075688772},"224":{"tf":2.449489742783178},"225":{"tf":1.0},"226":{"tf":2.0},"228":{"tf":1.0},"234":{"tf":2.0},"245":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"f":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"2":{"df":0,"docs":{},"u":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}}},"1":{".":{"1":{"2":{"3":{"4":{"5":{"6":{"7":{"8":{"9":{"0":{"1":{"2":{"3":{"4":{"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":{}},"df":0,"docs":{}},"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":{"0":{"1":{"8":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"185":{"tf":1.0},"190":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"137":{"tf":1.7320508075688772}}}}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"=":{"d":{"a":{"df":0,"docs":{},"t":{"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":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"df":1,"docs":{"14":{"tf":1.0}},"i":{"df":1,"docs":{"245":{"tf":1.0}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"246":{"tf":1.0},"9":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"235":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"224":{"tf":1.0}}}}},"r":{"df":11,"docs":{"120":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"20":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.0},"31":{"tf":1.0},"86":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"234":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"0":{"tf":1.0},"228":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"233":{"tf":1.0},"237":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"(":{"'":{"3":{"1":{"3":{"5":{"df":1,"docs":{"147":{"tf":1.0}},"z":{"df":0,"docs":{},"z":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"147":{"tf":2.23606797749979}}}}},"i":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"100":{"tf":1.0},"107":{"tf":2.0}},"e":{"(":{"'":{"a":{"d":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.7320508075688772},"51":{"tf":2.23606797749979},"54":{"tf":2.6457513110645907},"56":{"tf":1.7320508075688772}}}},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}},"t":{"df":1,"docs":{"245":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"144":{"tf":1.0},"229":{"tf":1.0}}}}}},"x":{"df":2,"docs":{"123":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{"'":{"2":{"0":{"2":{"3":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"9":{"7":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"123":{"tf":1.7320508075688772},"148":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"237":{"tf":1.0},"63":{"tf":1.0},"85":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"235":{"tf":1.0},"253":{"tf":1.0},"47":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":3,"docs":{"220":{"tf":1.0},"238":{"tf":1.0},"76":{"tf":1.0}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"[":{"1":{".":{"9":{"9":{"df":2,"docs":{"40":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"40":{"tf":2.23606797749979},"41":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}},"df":2,"docs":{"24":{"tf":2.449489742783178},"27":{"tf":2.23606797749979}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":2.0}}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"194":{"tf":1.0},"6":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"230":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":13,"docs":{"117":{"tf":1.0},"13":{"tf":2.23606797749979},"16":{"tf":1.0},"175":{"tf":1.4142135623730951},"190":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":3.1622776601683795},"243":{"tf":1.0},"25":{"tf":2.0},"26":{"tf":2.0},"27":{"tf":2.0},"29":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":5,"docs":{"149":{"tf":1.0},"16":{"tf":1.0},"195":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"103":{"tf":1.7320508075688772},"147":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":2.0}}}}}}},"r":{"d":{"df":0,"docs":{},"u":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"226":{"tf":1.0}}},"l":{"df":2,"docs":{"201":{"tf":1.0},"216":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"207":{"tf":2.0},"216":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"198":{"tf":1.4142135623730951},"76":{"tf":1.0}}}},"df":69,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"148":{"tf":1.0},"18":{"tf":1.0},"181":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":2.23606797749979},"221":{"tf":1.0},"226":{"tf":1.7320508075688772},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"231":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"25":{"tf":1.0},"252":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"40":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}},"df":30,"docs":{"10":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"15":{"tf":2.0},"16":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"220":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"244":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.0},"252":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0},"76":{"tf":2.0},"8":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"198":{"tf":1.4142135623730951},"215":{"tf":2.0}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"[":{"1":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"_":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"76":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":6,"docs":{"124":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":2,"docs":{"147":{"tf":1.0},"224":{"tf":1.0}}}},"u":{"df":0,"docs":{},"i":{"d":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"'":{"d":{"2":{"c":{"df":0,"docs":{},"e":{"2":{"1":{"c":{"9":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"'":{"d":{"2":{"c":{"df":0,"docs":{},"e":{"2":{"1":{"c":{"9":{"d":{"2":{"6":{"8":{"4":{"0":{"9":{"a":{"b":{"1":{"df":0,"docs":{},"e":{"0":{"4":{"9":{"df":0,"docs":{},"e":{"1":{"2":{"0":{"0":{"b":{"df":0,"docs":{},"f":{"a":{"4":{"7":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{"'":{"d":{"2":{"c":{"df":0,"docs":{},"e":{"2":{"1":{"c":{"9":{"d":{"2":{"6":{"8":{"4":{"0":{"9":{"a":{"b":{"1":{"df":0,"docs":{},"e":{"0":{"4":{"9":{"df":0,"docs":{},"e":{"1":{"2":{"0":{"0":{"b":{"df":0,"docs":{},"f":{"a":{"4":{"7":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"'":{"d":{"2":{"c":{"df":0,"docs":{},"e":{"2":{"1":{"c":{"9":{"d":{"2":{"6":{"8":{"4":{"0":{"9":{"a":{"b":{"1":{"df":0,"docs":{},"e":{"0":{"4":{"9":{"df":0,"docs":{},"e":{"1":{"2":{"0":{"0":{"b":{"df":0,"docs":{},"f":{"a":{"4":{"7":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"144":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"144":{"tf":2.6457513110645907},"226":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"3":{".":{"0":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"81":{"tf":2.0}},"i":{"d":{"df":2,"docs":{"12":{"tf":1.0},"167":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":67,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.0},"127":{"tf":1.7320508075688772},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"145":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"180":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"224":{"tf":1.0},"23":{"tf":1.7320508075688772},"233":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"37":{"tf":2.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"48":{"tf":2.23606797749979},"56":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"/":{"@":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"226":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}},"t":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}},"df":5,"docs":{"195":{"tf":1.7320508075688772},"198":{"tf":1.0},"29":{"tf":2.0},"35":{"tf":1.0},"4":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"df":2,"docs":{"199":{"tf":1.0},"201":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":5,"docs":{"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"241":{"tf":1.4142135623730951}}},"s":{"a":{"df":2,"docs":{"143":{"tf":1.0},"18":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"110":{"tf":1.0},"13":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"230":{"tf":1.0}},"i":{"df":1,"docs":{"230":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"143":{"tf":1.0},"18":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"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":{"184":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"184":{"tf":1.4142135623730951},"186":{"tf":2.0},"187":{"tf":3.3166247903554},"188":{"tf":2.449489742783178},"20":{"tf":1.0},"28":{"tf":1.0},"55":{"tf":1.0}}}},"k":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"16":{"tf":1.0}}},"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"13":{"tf":1.4142135623730951},"157":{"tf":1.0},"236":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":3,"docs":{"171":{"tf":1.0},"2":{"tf":1.0},"56":{"tf":1.0}}},"l":{"df":1,"docs":{"233":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"167":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"236":{"tf":1.4142135623730951},"24":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"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":{"233":{"tf":1.0}}}}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":8,"docs":{"0":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"220":{"tf":1.0},"236":{"tf":1.4142135623730951},"238":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"13":{"tf":1.0},"199":{"tf":1.0},"238":{"tf":1.0}}}},"r":{"df":1,"docs":{"230":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"238":{"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":2,"docs":{"231":{"tf":1.0},"234":{"tf":1.4142135623730951}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"71":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"131":{"tf":1.4142135623730951},"233":{"tf":1.0},"35":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"102":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":2.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"174":{"tf":2.0},"175":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"132":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"55":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"16":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"34":{"tf":1.0},"60":{"tf":1.0}}}}}}}},"o":{"b":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":5,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0}}},"l":{"d":{"df":7,"docs":{"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"238":{"tf":2.0},"250":{"tf":1.0},"5":{"tf":1.0},"97":{"tf":2.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"10":{"tf":1.0},"221":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"215":{"tf":1.0},"228":{"tf":1.0},"34":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"207":{"tf":2.0},"216":{"tf":1.0}}}}},"x":{"%":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"'":{"d":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"224":{"tf":1.0},"72":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":30,"docs":{"110":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"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},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"88":{"tf":1.0},"91":{"tf":2.0}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"238":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"21":{"tf":1.0},"241":{"tf":1.4142135623730951}}}}}}},"s":{"d":{":":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"224":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"224":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"204":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"224":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"224":{"tf":1.0}}}}},"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":2,"docs":{"224":{"tf":1.0},"226":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"224":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"216":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":3,"docs":{"158":{"tf":1.0},"179":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"229":{"tf":1.0},"230":{"tf":1.4142135623730951},"241":{"tf":1.0},"71":{"tf":1.0}}}},"df":1,"docs":{"234":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"219":{"tf":1.0},"222":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"13":{"tf":1.0},"195":{"tf":1.0},"234":{"tf":1.0}}}},"r":{"df":2,"docs":{"0":{"tf":1.0},"250":{"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":{"167":{"tf":1.0}}}}}}}}}},"z":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"141":{"tf":1.0},"215":{"tf":1.0},"81":{"tf":1.7320508075688772}}}},"df":1,"docs":{"147":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"3":{"2":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"146":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":4,"docs":{"146":{"tf":1.0},"225":{"tf":1.0},"41":{"tf":1.0},"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"z":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"140":{"tf":1.0},"141":{"tf":1.4142135623730951},"215":{"tf":1.0},"81":{"tf":1.7320508075688772}}}}}}},"title":{"root":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"a":{"df":2,"docs":{"37":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"h":{"a":{"df":2,"docs":{"194":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"246":{"tf":1.0}}}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"232":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"203":{"tf":1.0},"210":{"tf":1.0}}}}}},"l":{"d":{"+":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"204":{"tf":1.0},"212":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"205":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"n":{"d":{".":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"213":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"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":{}}},"x":{"df":2,"docs":{"207":{"tf":1.0},"211":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"242":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"220":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"189":{"tf":1.0},"190":{"tf":1.0},"191":{"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":1,"docs":{"215":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"g":{"df":1,"docs":{"130":{"tf":1.0}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"c":{"df":2,"docs":{"11":{"tf":1.0},"215":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"158":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"65":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"219":{"tf":1.0},"221":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"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":{"100":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"185":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"149":{"tf":1.0}}}},"u":{"d":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"225":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"246":{"tf":1.0},"249":{"tf":1.0}}}},"df":2,"docs":{"183":{"tf":1.0},"38":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"240":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"237":{"tf":1.0},"250":{"tf":1.0},"78":{"tf":1.0}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"161":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"187":{"tf":1.0},"190":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"8":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"153":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"152":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"239":{"tf":1.0}}}},"df":0,"docs":{}},"df":8,"docs":{"135":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"206":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"195":{"tf":1.0},"196":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"18":{"tf":1.0},"238":{"tf":1.0}}}}}}}},"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"188":{"tf":1.0},"191":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"14":{"tf":1.0},"245":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"194":{"tf":1.0},"6":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":3,"docs":{"228":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":2,"docs":{"11":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"30":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"244":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"58":{"tf":1.0},"9":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"50":{"tf":1.0},"53":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"247":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"55":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"220":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"134":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"207":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"235":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"111":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"175":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"248":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"196":{"tf":1.0},"197":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"45":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"208":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"147":{"tf":1.0}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.0},"235":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"246":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":4,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0}}}}},"u":{"b":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"246":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"139":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"165":{"tf":1.0},"166":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"13":{"tf":1.0},"243":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"251":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"221":{"tf":1.0},"23":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"4":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"105":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"66":{"tf":1.0}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"50":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":1,"docs":{"71":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"39":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"253":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"170":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":2,"docs":{"120":{"tf":1.0},"86":{"tf":1.0}}}},"x":{"df":1,"docs":{"127":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":1,"docs":{"127":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"222":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"172":{"tf":1.0},"217":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"167":{"tf":1.0},"169":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"211":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"168":{"tf":1.0},"17":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"149":{"tf":1.0},"150":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}}},"w":{"df":2,"docs":{"151":{"tf":1.0},"241":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"140":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"173":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"118":{"tf":1.0}}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"113":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"168":{"tf":1.0},"49":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"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":{"101":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"249":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"239":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"149":{"tf":1.0},"240":{"tf":1.0}}},"r":{"df":5,"docs":{"198":{"tf":1.0},"50":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"200":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"31":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"117":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"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":1,"docs":{"178":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"179":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"df":5,"docs":{"167":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"149":{"tf":1.0},"160":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"218":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"163":{"tf":1.0},"165":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"246":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"148":{"tf":1.0},"200":{"tf":1.0},"247":{"tf":1.0},"33":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"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":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"171":{"tf":1.0},"56":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"192":{"tf":1.0},"20":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"57":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"249":{"tf":1.0},"44":{"tf":1.0}}}}}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"252":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"57":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.0}}}},"w":{"df":2,"docs":{"170":{"tf":1.0},"76":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"57":{"tf":1.0},"59":{"tf":1.0}}}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"224":{"tf":1.0},"226":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"181":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.0},"35":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"15":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"237":{"tf":1.0},"250":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":3,"docs":{"249":{"tf":1.0},"26":{"tf":1.0},"50":{"tf":1.0}}}},"h":{"a":{"1":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"240":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"l":{":":{"2":{"0":{"1":{"1":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"11":{"tf":1.0},"20":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0},"62":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"237":{"tf":1.0},"250":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"122":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"99":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"164":{"tf":1.0},"166":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":1,"docs":{"128":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"155":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"182":{"tf":1.0},"37":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"64":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":5,"docs":{"148":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"70":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"236":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"150":{"tf":1.0},"80":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"246":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"7":{"tf":1.0}},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":6,"docs":{"135":{"tf":1.0},"202":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":1.0},"62":{"tf":1.0},"81":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"147":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"50":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}}}},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"48":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"184":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"194":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"w":{"df":1,"docs":{"207":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}} \ No newline at end of file +{"doc_urls":["index.html#introduction","index.html#elsewhere","tutorial/index.html#tutorial","tutorial/quickstart.html#quickstart","tutorial/quickstart.html#install-endb","tutorial/quickstart.html#run-your-first-query","tutorial/quickstart.html#warning-early-alpha","tutorial/try_it.html#try-it","tutorial/try_it.html#curl","tutorial/try_it.html#example-libraries","tutorial/try_it.html#example-console","tutorial/sql_basics.html#endb-sql-basics","tutorial/sql_basics.html#just-begin","tutorial/sql_basics.html#immutable","tutorial/sql_basics.html#dynamic-joins","tutorial/sql_basics.html#semi-structured-data","tutorial/sql_basics.html#data-migration","tutorial/sql_basics.html#nested-data","tutorial/sql_basics.html#documents","tutorial/sql_basics.html#error-messages","sql/index.html#sql-reference","sql/intention.html#intention","sql/data_manipulation.html#data-manipulation","sql/data_manipulation.html#insert","sql/data_manipulation.html#update","sql/data_manipulation.html#update-patch","sql/data_manipulation.html#update-set-path","sql/data_manipulation.html#update-unset-path","sql/data_manipulation.html#delete","sql/data_manipulation.html#on-conflict-upsert","sql/data_manipulation.html#erase","sql/data_manipulation.html#parameters","sql/data_manipulation.html#transactions","sql/queries.html#queries","sql/queries.html#select-","sql/queries.html#select","sql/queries.html#from","sql/queries.html#alias-tables","sql/queries.html#alias-columns","sql/queries.html#join","sql/queries.html#unnest","sql/queries.html#with-ordinality","sql/queries.html#where-filtering","sql/queries.html#advanced-filtering","sql/queries.html#order-by-sorting-results","sql/queries.html#group-by","sql/queries.html#having","sql/queries.html#limit","sql/queries.html#values-lists","sql/queries.html#objects-lists","sql/queries.html#set-operations-union-intersect-except","sql/queries.html#union","sql/queries.html#intersect","sql/queries.html#except","sql/queries.html#union-compatibility","sql/queries.html#with-common-table-expressions","sql/queries.html#with-recursive","sql/queries.html#repeatable-reads-savepoint-rollback-release","sql/queries.html#minimal-example","sql/queries.html#savepoint","sql/queries.html#rollback","sql/queries.html#release","sql/data_types.html#sql-data-types","sql/data_types.html#null","sql/data_types.html#text-char-varchar","sql/data_types.html#boolean","sql/data_types.html#integer-bigint","sql/data_types.html#real-double","sql/data_types.html#timestamp","sql/data_types.html#date","sql/data_types.html#time","sql/data_types.html#interval-duration","sql/data_types.html#blob-varbinary","sql/data_types.html#array","sql/data_types.html#object","sql/data_types.html#dynamic-literals","sql/data_types.html#row-literals","sql/data_types.html#spread","sql/data_types.html#computed-fields","sql/data_types.html#shorthands","sql/data_types.html#note-on-timezones","sql/data_types.html#note-on-type-widening","sql/operators.html#operators","sql/operators.html#comparison","sql/operators.html#between","sql/operators.html#boolean-operators","sql/operators.html#math","sql/operators.html#bitwise-operators","sql/operators.html#like","sql/operators.html#regexp","sql/operators.html#glob","sql/operators.html#match-containment","sql/operators.html#any-some","sql/operators.html#all","sql/operators.html#exists","sql/operators.html#in","sql/operators.html#not-in","sql/operators.html#-concatenation","sql/functions.html#functions","sql/functions.html#string-functions","sql/functions.html#character_length","sql/functions.html#octet_length","sql/functions.html#trim-ltrim-rtrim","sql/functions.html#lower-upper","sql/functions.html#replace","sql/functions.html#instr","sql/functions.html#substring","sql/functions.html#unicode","sql/functions.html#char","sql/functions.html#concat","sql/functions.html#like","sql/functions.html#collection-functions","sql/functions.html#length","sql/functions.html#object_keys","sql/functions.html#object_values","sql/functions.html#object_entries","sql/functions.html#object_from_entries","sql/functions.html#patch","sql/functions.html#numeric-functions","sql/functions.html#random","sql/functions.html#math","sql/functions.html#datetime-functions","sql/functions.html#strftime","sql/functions.html#unixepoch","sql/functions.html#julianday","sql/functions.html#extract","sql/functions.html#aggregate-functions","sql/functions.html#min-max","sql/functions.html#sum","sql/functions.html#total","sql/functions.html#avg","sql/functions.html#count","sql/functions.html#array_agg","sql/functions.html#group_concat","sql/functions.html#filter","sql/functions.html#data-type-functions","sql/functions.html#cast","sql/functions.html#typeof","sql/functions.html#conditional-functions","sql/functions.html#iif","sql/functions.html#nullif","sql/functions.html#coalesce","sql/functions.html#encoding-functions","sql/functions.html#base64","sql/functions.html#uuid","sql/functions.html#sha1","sql/functions.html#randomblob-zeroblob","sql/functions.html#hex-unhex","sql/time_queries.html#time-queries","sql/time_queries.html#note-on-sql2011-closed-open-period-model","sql/time_queries.html#note-on-timezones","sql/time_queries.html#now","sql/time_queries.html#current_timestamp","sql/time_queries.html#current_time","sql/time_queries.html#current_date","sql/time_queries.html#system-time","sql/time_queries.html#as-of-time-travel","sql/time_queries.html#all-time-omniscience","sql/time_queries.html#between","sql/time_queries.html#from--to","sql/time_queries.html#period-predicates","sql/time_queries.html#contains","sql/time_queries.html#overlaps","sql/time_queries.html#precedes","sql/time_queries.html#succeeds","sql/time_queries.html#immediately-precedes","sql/time_queries.html#immediately-succeeds","sql/path_navigation.html#path-navigation","sql/path_navigation.html#nested-objects","sql/path_navigation.html#root-navigation","sql/path_navigation.html#row-literals","sql/path_navigation.html#recursive-paths","sql/path_navigation.html#named-child","sql/path_navigation.html#numbered-child","sql/path_navigation.html#wildcard-child","sql/path_navigation.html#path-functions","sql/path_navigation.html#path_set","sql/path_navigation.html#path_replace","sql/path_navigation.html#path_insert","sql/path_navigation.html#path_remove","sql/path_navigation.html#path_extract","sql/schema.html#schema","sql/schema.html#tables","sql/schema.html#columns","sql/schema.html#views","sql/schema.html#check-constraints","sql/views.html#views","sql/views.html#create-view","sql/views.html#drop-view","sql/assertions.html#assertions","sql/assertions.html#create-assertion","sql/assertions.html#drop-assertion","reference/index.html#reference","reference/installation.html#installation","reference/installation.html#warning-early-alpha","reference/installation.html#installing-from-docker-hub","reference/installation.html#installing-from-git-docker","reference/installation.html#installing-from-git-binary","reference/operation.html#operation","reference/http_api.html#http-api","reference/http_api.html#http-query-parameters","reference/http_api.html#http-verbs","reference/http_api.html#content-types","reference/http_api.html#applicationjson","reference/http_api.html#applicationldjson","reference/http_api.html#applicationsql","reference/http_api.html#multipartform-data","reference/http_api.html#applicationx-www-form-urlencoded","reference/http_api.html#accept-headers","reference/http_api.html#textcsv","reference/http_api.html#applicationjson-1","reference/http_api.html#applicationx-ndjson","reference/http_api.html#applicationldjson-1","reference/http_api.html#applicationvndapachearrowfile","reference/http_api.html#applicationvndapachearrowstream","reference/http_api.html#http-basic-authentication","reference/http_api.html#parameters","reference/http_api.html#named-parameters","reference/http_api.html#positional-parameters","reference/http_api.html#bulk-parameters","reference/http_api.html#apache-arrow-file-parameters","reference/http_api.html#bulk-insert","reference/http_api.html#multiple-statements","reference/data_types.html#data-types","reference/data_types.html#scalars","reference/data_types.html#collections","reference/data_types.html#unsupported-scalar-types","appendix/index.html#appendix","appendix/what.html#what-is-endatabas","appendix/what.html#who-wants-one-database","appendix/what.html#when-is-one-database-possible","appendix/why.html#why-endatabas","appendix/why.html#what-is-endatabas-anyway","appendix/why.html#history","appendix/why.html#why-sql","appendix/why.html#why-full-history","appendix/why.html#why-a-timeline","appendix/why.html#why-separation-of-storage-and-compute","appendix/why.html#why-documents","appendix/why.html#why-one-database","appendix/why.html#why-commercial-open-source","appendix/why.html#why-now","appendix/architecture.html#architecture","appendix/architecture.html#immutable","appendix/architecture.html#erasure","appendix/architecture.html#dynamic-sql","appendix/architecture.html#columnar-hybrid-transactional-analytic-processing-htap","appendix/architecture.html#query-execution","appendix/architecture.html#future","appendix/architecture.html#columnar-olap-result-sets","appendix/architecture.html#cloud-separation-of-storage-from-compute","appendix/architecture.html#adaptive-indexing","appendix/roadmap.html#roadmap","appendix/license.html#license"],"index":{"documentStore":{"docInfo":{"0":{"body":31,"breadcrumbs":2,"title":1},"1":{"body":7,"breadcrumbs":2,"title":1},"10":{"body":42,"breadcrumbs":4,"title":2},"100":{"body":13,"breadcrumbs":4,"title":1},"101":{"body":13,"breadcrumbs":4,"title":1},"102":{"body":25,"breadcrumbs":6,"title":3},"103":{"body":17,"breadcrumbs":5,"title":2},"104":{"body":16,"breadcrumbs":4,"title":1},"105":{"body":15,"breadcrumbs":4,"title":1},"106":{"body":32,"breadcrumbs":4,"title":1},"107":{"body":12,"breadcrumbs":4,"title":1},"108":{"body":13,"breadcrumbs":4,"title":1},"109":{"body":11,"breadcrumbs":4,"title":1},"11":{"body":25,"breadcrumbs":7,"title":3},"110":{"body":35,"breadcrumbs":3,"title":0},"111":{"body":0,"breadcrumbs":5,"title":2},"112":{"body":26,"breadcrumbs":4,"title":1},"113":{"body":12,"breadcrumbs":4,"title":1},"114":{"body":12,"breadcrumbs":4,"title":1},"115":{"body":20,"breadcrumbs":4,"title":1},"116":{"body":18,"breadcrumbs":4,"title":1},"117":{"body":54,"breadcrumbs":4,"title":1},"118":{"body":0,"breadcrumbs":5,"title":2},"119":{"body":7,"breadcrumbs":4,"title":1},"12":{"body":30,"breadcrumbs":5,"title":1},"120":{"body":62,"breadcrumbs":4,"title":1},"121":{"body":0,"breadcrumbs":5,"title":2},"122":{"body":23,"breadcrumbs":4,"title":1},"123":{"body":19,"breadcrumbs":4,"title":1},"124":{"body":21,"breadcrumbs":4,"title":1},"125":{"body":53,"breadcrumbs":4,"title":1},"126":{"body":0,"breadcrumbs":5,"title":2},"127":{"body":33,"breadcrumbs":5,"title":2},"128":{"body":21,"breadcrumbs":4,"title":1},"129":{"body":11,"breadcrumbs":4,"title":1},"13":{"body":95,"breadcrumbs":5,"title":1},"130":{"body":15,"breadcrumbs":4,"title":1},"131":{"body":37,"breadcrumbs":4,"title":1},"132":{"body":43,"breadcrumbs":4,"title":1},"133":{"body":28,"breadcrumbs":4,"title":1},"134":{"body":12,"breadcrumbs":4,"title":1},"135":{"body":0,"breadcrumbs":6,"title":3},"136":{"body":16,"breadcrumbs":4,"title":1},"137":{"body":14,"breadcrumbs":4,"title":1},"138":{"body":0,"breadcrumbs":5,"title":2},"139":{"body":19,"breadcrumbs":4,"title":1},"14":{"body":31,"breadcrumbs":6,"title":2},"140":{"body":14,"breadcrumbs":4,"title":1},"141":{"body":16,"breadcrumbs":4,"title":1},"142":{"body":0,"breadcrumbs":5,"title":2},"143":{"body":22,"breadcrumbs":4,"title":1},"144":{"body":45,"breadcrumbs":4,"title":1},"145":{"body":15,"breadcrumbs":4,"title":1},"146":{"body":25,"breadcrumbs":5,"title":2},"147":{"body":70,"breadcrumbs":5,"title":2},"148":{"body":35,"breadcrumbs":6,"title":2},"149":{"body":30,"breadcrumbs":10,"title":6},"15":{"body":38,"breadcrumbs":7,"title":3},"150":{"body":6,"breadcrumbs":6,"title":2},"151":{"body":10,"breadcrumbs":5,"title":1},"152":{"body":8,"breadcrumbs":5,"title":1},"153":{"body":7,"breadcrumbs":5,"title":1},"154":{"body":16,"breadcrumbs":5,"title":1},"155":{"body":23,"breadcrumbs":6,"title":2},"156":{"body":21,"breadcrumbs":6,"title":2},"157":{"body":20,"breadcrumbs":6,"title":2},"158":{"body":26,"breadcrumbs":5,"title":1},"159":{"body":22,"breadcrumbs":4,"title":0},"16":{"body":52,"breadcrumbs":6,"title":2},"160":{"body":5,"breadcrumbs":6,"title":2},"161":{"body":25,"breadcrumbs":5,"title":1},"162":{"body":26,"breadcrumbs":5,"title":1},"163":{"body":20,"breadcrumbs":5,"title":1},"164":{"body":19,"breadcrumbs":5,"title":1},"165":{"body":21,"breadcrumbs":6,"title":2},"166":{"body":21,"breadcrumbs":6,"title":2},"167":{"body":39,"breadcrumbs":6,"title":2},"168":{"body":20,"breadcrumbs":6,"title":2},"169":{"body":38,"breadcrumbs":6,"title":2},"17":{"body":53,"breadcrumbs":6,"title":2},"170":{"body":22,"breadcrumbs":6,"title":2},"171":{"body":22,"breadcrumbs":6,"title":2},"172":{"body":40,"breadcrumbs":6,"title":2},"173":{"body":44,"breadcrumbs":6,"title":2},"174":{"body":40,"breadcrumbs":6,"title":2},"175":{"body":43,"breadcrumbs":6,"title":2},"176":{"body":27,"breadcrumbs":5,"title":1},"177":{"body":31,"breadcrumbs":5,"title":1},"178":{"body":24,"breadcrumbs":5,"title":1},"179":{"body":32,"breadcrumbs":5,"title":1},"18":{"body":30,"breadcrumbs":5,"title":1},"180":{"body":44,"breadcrumbs":5,"title":1},"181":{"body":45,"breadcrumbs":4,"title":1},"182":{"body":15,"breadcrumbs":4,"title":1},"183":{"body":16,"breadcrumbs":4,"title":1},"184":{"body":17,"breadcrumbs":4,"title":1},"185":{"body":20,"breadcrumbs":5,"title":2},"186":{"body":10,"breadcrumbs":4,"title":1},"187":{"body":52,"breadcrumbs":5,"title":2},"188":{"body":9,"breadcrumbs":5,"title":2},"189":{"body":0,"breadcrumbs":4,"title":1},"19":{"body":11,"breadcrumbs":6,"title":2},"190":{"body":36,"breadcrumbs":5,"title":2},"191":{"body":8,"breadcrumbs":5,"title":2},"192":{"body":18,"breadcrumbs":2,"title":1},"193":{"body":27,"breadcrumbs":3,"title":1},"194":{"body":23,"breadcrumbs":5,"title":3},"195":{"body":62,"breadcrumbs":5,"title":3},"196":{"body":11,"breadcrumbs":5,"title":3},"197":{"body":25,"breadcrumbs":5,"title":3},"198":{"body":52,"breadcrumbs":3,"title":1},"199":{"body":64,"breadcrumbs":5,"title":2},"2":{"body":18,"breadcrumbs":2,"title":1},"20":{"body":51,"breadcrumbs":4,"title":2},"200":{"body":25,"breadcrumbs":6,"title":3},"201":{"body":30,"breadcrumbs":5,"title":2},"202":{"body":11,"breadcrumbs":5,"title":2},"203":{"body":72,"breadcrumbs":4,"title":1},"204":{"body":42,"breadcrumbs":4,"title":1},"205":{"body":36,"breadcrumbs":4,"title":1},"206":{"body":46,"breadcrumbs":5,"title":2},"207":{"body":25,"breadcrumbs":7,"title":4},"208":{"body":15,"breadcrumbs":5,"title":2},"209":{"body":31,"breadcrumbs":4,"title":1},"21":{"body":86,"breadcrumbs":4,"title":1},"210":{"body":34,"breadcrumbs":4,"title":1},"211":{"body":42,"breadcrumbs":5,"title":2},"212":{"body":44,"breadcrumbs":4,"title":1},"213":{"body":46,"breadcrumbs":4,"title":1},"214":{"body":43,"breadcrumbs":4,"title":1},"215":{"body":87,"breadcrumbs":6,"title":3},"216":{"body":51,"breadcrumbs":4,"title":1},"217":{"body":71,"breadcrumbs":5,"title":2},"218":{"body":62,"breadcrumbs":5,"title":2},"219":{"body":57,"breadcrumbs":5,"title":2},"22":{"body":31,"breadcrumbs":6,"title":2},"220":{"body":110,"breadcrumbs":7,"title":4},"221":{"body":72,"breadcrumbs":5,"title":2},"222":{"body":55,"breadcrumbs":5,"title":2},"223":{"body":0,"breadcrumbs":5,"title":2},"224":{"body":117,"breadcrumbs":4,"title":1},"225":{"body":26,"breadcrumbs":4,"title":1},"226":{"body":34,"breadcrumbs":6,"title":3},"227":{"body":3,"breadcrumbs":2,"title":1},"228":{"body":99,"breadcrumbs":2,"title":1},"229":{"body":96,"breadcrumbs":3,"title":2},"23":{"body":80,"breadcrumbs":5,"title":1},"230":{"body":102,"breadcrumbs":4,"title":3},"231":{"body":73,"breadcrumbs":2,"title":1},"232":{"body":102,"breadcrumbs":3,"title":2},"233":{"body":394,"breadcrumbs":2,"title":1},"234":{"body":228,"breadcrumbs":2,"title":1},"235":{"body":130,"breadcrumbs":3,"title":2},"236":{"body":61,"breadcrumbs":2,"title":1},"237":{"body":63,"breadcrumbs":4,"title":3},"238":{"body":226,"breadcrumbs":2,"title":1},"239":{"body":45,"breadcrumbs":3,"title":2},"24":{"body":78,"breadcrumbs":5,"title":1},"240":{"body":7,"breadcrumbs":4,"title":3},"241":{"body":120,"breadcrumbs":2,"title":1},"242":{"body":0,"breadcrumbs":3,"title":1},"243":{"body":22,"breadcrumbs":3,"title":1},"244":{"body":13,"breadcrumbs":3,"title":1},"245":{"body":69,"breadcrumbs":4,"title":2},"246":{"body":30,"breadcrumbs":8,"title":6},"247":{"body":23,"breadcrumbs":4,"title":2},"248":{"body":7,"breadcrumbs":3,"title":1},"249":{"body":7,"breadcrumbs":6,"title":4},"25":{"body":36,"breadcrumbs":6,"title":2},"250":{"body":46,"breadcrumbs":6,"title":4},"251":{"body":18,"breadcrumbs":4,"title":2},"252":{"body":19,"breadcrumbs":3,"title":1},"253":{"body":20,"breadcrumbs":3,"title":1},"26":{"body":24,"breadcrumbs":7,"title":3},"27":{"body":25,"breadcrumbs":7,"title":3},"28":{"body":42,"breadcrumbs":5,"title":1},"29":{"body":120,"breadcrumbs":6,"title":2},"3":{"body":0,"breadcrumbs":3,"title":1},"30":{"body":17,"breadcrumbs":5,"title":1},"31":{"body":6,"breadcrumbs":5,"title":1},"32":{"body":18,"breadcrumbs":5,"title":1},"33":{"body":14,"breadcrumbs":4,"title":1},"34":{"body":63,"breadcrumbs":4,"title":1},"35":{"body":77,"breadcrumbs":4,"title":1},"36":{"body":0,"breadcrumbs":3,"title":0},"37":{"body":56,"breadcrumbs":5,"title":2},"38":{"body":52,"breadcrumbs":5,"title":2},"39":{"body":33,"breadcrumbs":4,"title":1},"4":{"body":21,"breadcrumbs":4,"title":2},"40":{"body":80,"breadcrumbs":4,"title":1},"41":{"body":31,"breadcrumbs":4,"title":1},"42":{"body":11,"breadcrumbs":4,"title":1},"43":{"body":6,"breadcrumbs":5,"title":2},"44":{"body":56,"breadcrumbs":6,"title":3},"45":{"body":43,"breadcrumbs":4,"title":1},"46":{"body":27,"breadcrumbs":4,"title":1},"47":{"body":55,"breadcrumbs":4,"title":1},"48":{"body":53,"breadcrumbs":5,"title":2},"49":{"body":49,"breadcrumbs":5,"title":2},"5":{"body":12,"breadcrumbs":5,"title":3},"50":{"body":9,"breadcrumbs":8,"title":5},"51":{"body":23,"breadcrumbs":4,"title":1},"52":{"body":12,"breadcrumbs":4,"title":1},"53":{"body":22,"breadcrumbs":4,"title":1},"54":{"body":82,"breadcrumbs":5,"title":2},"55":{"body":46,"breadcrumbs":6,"title":3},"56":{"body":80,"breadcrumbs":4,"title":1},"57":{"body":50,"breadcrumbs":8,"title":5},"58":{"body":67,"breadcrumbs":5,"title":2},"59":{"body":31,"breadcrumbs":4,"title":1},"6":{"body":23,"breadcrumbs":5,"title":3},"60":{"body":63,"breadcrumbs":4,"title":1},"61":{"body":19,"breadcrumbs":4,"title":1},"62":{"body":0,"breadcrumbs":8,"title":3},"63":{"body":30,"breadcrumbs":6,"title":1},"64":{"body":39,"breadcrumbs":8,"title":3},"65":{"body":5,"breadcrumbs":6,"title":1},"66":{"body":9,"breadcrumbs":7,"title":2},"67":{"body":8,"breadcrumbs":7,"title":2},"68":{"body":32,"breadcrumbs":6,"title":1},"69":{"body":20,"breadcrumbs":6,"title":1},"7":{"body":8,"breadcrumbs":3,"title":1},"70":{"body":19,"breadcrumbs":6,"title":1},"71":{"body":50,"breadcrumbs":7,"title":2},"72":{"body":11,"breadcrumbs":7,"title":2},"73":{"body":48,"breadcrumbs":6,"title":1},"74":{"body":119,"breadcrumbs":6,"title":1},"75":{"body":0,"breadcrumbs":7,"title":2},"76":{"body":78,"breadcrumbs":7,"title":2},"77":{"body":67,"breadcrumbs":6,"title":1},"78":{"body":37,"breadcrumbs":7,"title":2},"79":{"body":24,"breadcrumbs":6,"title":1},"8":{"body":39,"breadcrumbs":3,"title":1},"80":{"body":9,"breadcrumbs":7,"title":2},"81":{"body":68,"breadcrumbs":8,"title":3},"82":{"body":0,"breadcrumbs":4,"title":1},"83":{"body":32,"breadcrumbs":4,"title":1},"84":{"body":37,"breadcrumbs":4,"title":1},"85":{"body":89,"breadcrumbs":5,"title":2},"86":{"body":59,"breadcrumbs":4,"title":1},"87":{"body":24,"breadcrumbs":5,"title":2},"88":{"body":75,"breadcrumbs":3,"title":0},"89":{"body":20,"breadcrumbs":4,"title":1},"9":{"body":15,"breadcrumbs":4,"title":2},"90":{"body":23,"breadcrumbs":4,"title":1},"91":{"body":104,"breadcrumbs":5,"title":2},"92":{"body":36,"breadcrumbs":3,"title":0},"93":{"body":34,"breadcrumbs":3,"title":0},"94":{"body":17,"breadcrumbs":4,"title":1},"95":{"body":27,"breadcrumbs":3,"title":0},"96":{"body":27,"breadcrumbs":3,"title":0},"97":{"body":63,"breadcrumbs":4,"title":1},"98":{"body":0,"breadcrumbs":4,"title":1},"99":{"body":0,"breadcrumbs":5,"title":2}},"docs":{"0":{"body":"Welcome to Endatabas! Endatabas is a SQL document database with complete history. It will store anything, forever. The best way to understand Endatabas is to use it. Head on over to the Quickstart to try it out. If you're not ready to run your first query yet, there's plenty of explanatory material in our What? and Why? documents.","breadcrumbs":"Introduction » Introduction","id":"0","title":"Introduction"},"1":{"body":"If you came to the Endatabas book directly, you may also be interested in: www.endatabas.com github.com/endatabas/endb","breadcrumbs":"Introduction » Elsewhere","id":"1","title":"Elsewhere"},"10":{"body":"Endb does not yet provide an official SQL console. However, you can try Endb SQL (without writing any code) with the example terminal: git clone git@github.com:endatabas/endb.git\ncd endb/examples\n./endb_console.py This example console wraps the Python example library. Assuming you inserted a user with curl above, you can query that table directly: -> SELECT * FROM users; You can use any of these tools (or any other HTTP client you prefer) for the rest of this tutorial.","breadcrumbs":"Tutorial » Try It! » Example Console","id":"10","title":"Example Console"},"100":{"body":"The CHARACTER_LENGTH function returns the number of unicode characters in a string. SELECT CHARACTER_LENGTH('josé');\n-- 4 SELECT CHARACTER_LENGTH('❤️🥫');\n-- 3","breadcrumbs":"SQL Reference » Functions » CHARACTER_LENGTH","id":"100","title":"CHARACTER_LENGTH"},"101":{"body":"The OCTET_LENGTH function returns the length of a string, in bytes (octets). SELECT OCTET_LENGTH('josé');\n-- 5 SELECT OCTET_LENGTH('❤️🥫');\n-- 10","breadcrumbs":"SQL Reference » Functions » OCTET_LENGTH","id":"101","title":"OCTET_LENGTH"},"102":{"body":"The TRIM, LTRIM, and RTRIM functions trim surrounding whitespace, whitespace to the left, and whitespace to the right of a string, respectively. SELECT TRIM(' hello ');\n-- 'hello' SELECT LTRIM(' hello ');\n-- 'hello ' SELECT RTRIM(' hello ');\n-- ' hello'","breadcrumbs":"SQL Reference » Functions » TRIM, LTRIM, RTRIM","id":"102","title":"TRIM, LTRIM, RTRIM"},"103":{"body":"The LOWER and UPPER functions downcase and upcase a string, respectively. SELECT LOWER('Relatable Algebra');\n-- 'relatable algebra' SELECT UPPER('Shouting Calculus');\n-- 'SHOUTING CALCULUS'","breadcrumbs":"SQL Reference » Functions » LOWER, UPPER","id":"103","title":"LOWER, UPPER"},"104":{"body":"The REPLACE function returns the string in the first parameter, with the second parameter (if found) replaced by the third. SELECT REPLACE('Relatable Algebra', 'Rela', 'Infla');","breadcrumbs":"SQL Reference » Functions » REPLACE","id":"104","title":"REPLACE"},"105":{"body":"The INSTR function returns the first character of a substring match on the second parameter, if found, and 0 if it is not found. SELECT INSTR('Coffee', 'ee');","breadcrumbs":"SQL Reference » Functions » INSTR","id":"105","title":"INSTR"},"106":{"body":"The SUBSTRING function returns the substring starting from the index provided as the second parameter. If the (optional) third parameter is provided, the substring will be of that length (or less, if the end of the source string is reached). SUBSTR is a synonym for SUBSTRING. SELECT SUBSTRING('Hello Edgar', 4);\nSELECT SUBSTR('Hello Edgar', 4, 2);","breadcrumbs":"SQL Reference » Functions » SUBSTRING","id":"106","title":"SUBSTRING"},"107":{"body":"The UNICODE function returns an integer unicode value for the first character of the parameter given. SELECT UNICODE('Adam');","breadcrumbs":"SQL Reference » Functions » UNICODE","id":"107","title":"UNICODE"},"108":{"body":"The CHAR function returns a string corresponding to the supplied integer character codes. SELECT CHAR(65, 66, 67);","breadcrumbs":"SQL Reference » Functions » CHAR","id":"108","title":"CHAR"},"109":{"body":"CONCAT is equivalent to the Concatenation Operator (||) except that CONCAT is limited to 2-arity applications and || can be chained.","breadcrumbs":"SQL Reference » Functions » CONCAT","id":"109","title":"CONCAT"},"11":{"body":"If you know SQL, Endb SQL will feel instantly familiar. It is not \"SQL-like\". It is SQL. However, Endb SQL is dynamic , strongly-typed , time-aware , and shuns language embedding . Hopefully it is pleasant to use without feeling foreign.","breadcrumbs":"Tutorial » Endb SQL Basics » Endb SQL Basics","id":"11","title":"Endb SQL Basics"},"110":{"body":"The LIKE function serves the same purpose as the LIKE operator . However, the argument order is (effectively) reversed for the LIKE function, to match the signature used in SQLite. For the function version, the pattern is the first argument. Optionally, an alternative escape character can be provided as a third argument. SELECT * FROM users WHERE LIKE('Stev%', name);\nSELECT * FROM users WHERE LIKE('EdgarX%', name, 'X');","breadcrumbs":"SQL Reference » Functions » LIKE","id":"110","title":"LIKE"},"111":{"body":"","breadcrumbs":"SQL Reference » Functions » Collection Functions","id":"111","title":"Collection Functions"},"112":{"body":"The LENGTH function counts the number of entries in a collection. When supplied with a string, it is a synonym for CHARACTER_LENGTH. SELECT LENGTH([3, 2]);\nSELECT LENGTH({name: 'Peas', price: 8.99, product_no: 77});\nSELECT LENGTH('josé'); NOTE: CARDINALITY is an synonym for LENGTH.","breadcrumbs":"SQL Reference » Functions » LENGTH","id":"112","title":"LENGTH"},"113":{"body":"An object's keys can be selected using OBJECT_KEYS. SELECT OBJECT_KEYS({original_price: 1.99, sale_price: 1.50, coupon_price: 1.40});","breadcrumbs":"SQL Reference » Functions » OBJECT_KEYS","id":"113","title":"OBJECT_KEYS"},"114":{"body":"An object's values can be selected using OBJECT_VALUES. SELECT OBJECT_VALUES({original_price: 1.99, sale_price: 1.50, coupon_price: 1.40});","breadcrumbs":"SQL Reference » Functions » OBJECT_VALUES","id":"114","title":"OBJECT_VALUES"},"115":{"body":"Returns an array of key-value pairs representing the given object. SELECT OBJECT_ENTRIES({a: 1, b: 2, c: 3});\n-- [['a': 1], ['b': 2], ['c': 3]]","breadcrumbs":"SQL Reference » Functions » OBJECT_ENTRIES","id":"115","title":"OBJECT_ENTRIES"},"116":{"body":"Constructs an object from an array of key-value pairs. SELECT OBJECT_FROM_ENTRIES([['a', 1], ['b', 2], ['c', 3]]);\n-- {a: 1, b: 2, c: 3}","breadcrumbs":"SQL Reference » Functions » OBJECT_FROM_ENTRIES","id":"116","title":"OBJECT_FROM_ENTRIES"},"117":{"body":"The PATCH function takes two documents. The document returned is the first document \"patched\" with any fields found in the second document. If the second document does not specify a field, that field is left untouched. If the second document specifies any fields with values of NULL, those fields are removed. SELECT PATCH( {name: 'Salt', nutrition: {sodium: 100, ingredients: 'Kosher Salt'}}, {name: 'Sea Salt', nutrition: {ingredients: NULL}}\n); The PATCH function has an equivalent operator for data manipulation: UPDATE PATCH","breadcrumbs":"SQL Reference » Functions » PATCH","id":"117","title":"PATCH"},"118":{"body":"","breadcrumbs":"SQL Reference » Functions » Numeric Functions","id":"118","title":"Numeric Functions"},"119":{"body":"The RANDOM function returns a random integer. SELECT RANDOM();","breadcrumbs":"SQL Reference » Functions » RANDOM","id":"119","title":"RANDOM"},"12":{"body":"Endb is a schemaless document database. You do not need CREATE TABLE — tables are dynamically created when you insert data. The following SQL is valid as soon as you start endb: INSERT INTO posts (id, user_id, text) VALUES (123, 456, 'Hello World'); SELECT * from posts;","breadcrumbs":"Tutorial » Endb SQL Basics » Just Begin","id":"12","title":"Just Begin"},"120":{"body":"Endb provides standard SQL math functions based on SQLite's collection of math functions: ROUND SIN COS TAN SINH COSH TANH ASIN ACOS ATAN ASINH ACOSH ATANH ATAN2 FLOOR CEILING, CEIL SIGN SQRT EXP POWER, POW LOG, LOG10 LOG2 LN DEGREES RADIANS PI ABS NOTE: Endb follows the choice of most SQL databases and aliases LOG to LOG10 rather than LN (natural log), as specified by the SQL standard. NOTE: Mathematical operators are documented under Operators .","breadcrumbs":"SQL Reference » Functions » Math","id":"120","title":"Math"},"121":{"body":"","breadcrumbs":"SQL Reference » Functions » Date/Time Functions","id":"121","title":"Date/Time Functions"},"122":{"body":"The STRFTIME function formats a date or time value as a string. SELECT strftime('%Y/%m/%d', date('2001-01-01'));\nSELECT strftime('%Y %m %d at %H %M %S', datetime('2001-01-01 03:04:05'));","breadcrumbs":"SQL Reference » Functions » STRFTIME","id":"122","title":"STRFTIME"},"123":{"body":"The UNIXEPOCH function returns the number of seconds since the UNIX epoch. Accepts a DATE, TIMESTAMP, or STRING. SELECT UNIXEPOCH('2023-01-01');\nSELECT UNIXEPOCH(1970-01-01T00:00:00Z);","breadcrumbs":"SQL Reference » Functions » UNIXEPOCH","id":"123","title":"UNIXEPOCH"},"124":{"body":"The JULIANDAY function returns the Julian Day, which is the number of days since noon in UTC on November 24, 4714 B.C. Accepts a DATE, TIMESTAMP, or STRING. SELECT JULIANDAY(1970-01-01);","breadcrumbs":"SQL Reference » Functions » JULIANDAY","id":"124","title":"JULIANDAY"},"125":{"body":"The EXTRACT pseudo-function provides a way to access one named, numerical portion of a date, time, or timestamp. Portions of dates can only be extracted from dates or timestamps. Portions of times can only be extracted from timestamps or times. SELECT EXTRACT(YEAR FROM CURRENT_DATE);\nSELECT EXTRACT(MONTH FROM CURRENT_DATE);\nSELECT EXTRACT(DAY FROM CURRENT_TIMESTAMP);\nSELECT EXTRACT(HOUR FROM CURRENT_TIMESTAMP);\nSELECT EXTRACT(MINUTE FROM CURRENT_TIME);\nSELECT EXTRACT(SECOND FROM CURRENT_TIME); NOTE: EXTRACT is a \"pseudo-function\" because internally it uses custom syntax of the form FROM .","breadcrumbs":"SQL Reference » Functions » EXTRACT","id":"125","title":"EXTRACT"},"126":{"body":"","breadcrumbs":"SQL Reference » Functions » Aggregate Functions","id":"126","title":"Aggregate Functions"},"127":{"body":"The MIN and MAX functions return the minimum and maximum values for an expression, respectively. SELECT MIN(price) FROM products;\nSELECT MAX(price) FROM products; NOTE: MIN and MAX also have non-aggregate equivalents, which are 2-arity. When used that way, they each return the minimum or maximum value of the two values provided.","breadcrumbs":"SQL Reference » Functions » MIN, MAX","id":"127","title":"MIN, MAX"},"128":{"body":"The SUM function returns the sum of all non-null values under the column given as a parameter. SELECT SUM(price) FROM products; If all values for the given column are NULL, SUM returns NULL.","breadcrumbs":"SQL Reference » Functions » SUM","id":"128","title":"SUM"},"129":{"body":"The TOTAL function is equivalent to SUM except that it returns 0.0 in the case where all input values are NULL.","breadcrumbs":"SQL Reference » Functions » TOTAL","id":"129","title":"TOTAL"},"13":{"body":"Endb is immutable, so it does not permit destructive UPDATE or DELETE. For example, if you run an UPDATE, your previous INSERT isn't lost. Before we update the record, we'll make note of the current time, according to the database. (Any time after the INSERT and before the UPDATE would suffice.) SELECT CURRENT_TIMESTAMP;\n-- for the sake of example, let's say this returns 2023-08-17T00:00:00 UPDATE posts SET text = 'Hello Immutable World' WHERE id = 123; SELECT * from posts; You'll note that Hello World from your original insert isn't visible. That's because it only exists in the past and, by default, SELECT will show the state of the database as of now . To see the old version, you can time-travel back to a time when the old record was visible: SELECT * from posts FOR SYSTEM_TIME AS OF 2023-08-17T00:00:00; NOTE: Although there is no DELETE in the traditional sense, there is ERASE, which exists to remove data for user safety and compliance with laws like GDPR.","breadcrumbs":"Tutorial » Endb SQL Basics » Immutable","id":"13","title":"Immutable"},"130":{"body":"The AVG function takes a numerical-type-agnostic average of all values under the column given as a parameter. SELECT AVG(price) FROM products;","breadcrumbs":"SQL Reference » Functions » AVG","id":"130","title":"AVG"},"131":{"body":"The COUNT function returns the count of non-null , non-empty values for the specified column. SELECT COUNT(price) FROM sales; NOTE: Because null/empty values are ignored, the behaviour of COUNT will differ from other SQL dialects. Whether or not COUNT(price) and COUNT(1) are equivalent is dependent on whether the price attribute exists with a non-null value on each document.","breadcrumbs":"SQL Reference » Functions » COUNT","id":"131","title":"COUNT"},"132":{"body":"The ARRAY_AGG function concatenates the results of an expression into an array. The parameter may be ordered within ARRAY_AGG. SELECT ARRAY_AGG(price) FROM products;\nSELECT ARRAY_AGG(name ORDER BY price DESC) FROM products; Note that when operating on arrays, the arrays themselves will be concatenated, not the contents of the arrays. The result will be an array of one higher dimension: SELECT ARRAY_AGG(x.column1) FROM (VALUES ([1,2]), ([3,4])) AS x;\n-- [{'column1': [[1, 2], [3, 4]]}]","breadcrumbs":"SQL Reference » Functions » ARRAY_AGG","id":"132","title":"ARRAY_AGG"},"133":{"body":"The GROUP_CONCAT function returns a string with concatenated non-null values from a column or group. Given a second parameter, It defaults to a comma-delimited list, but the second (optional) parameter can override the delimiter. SELECT GROUP_CONCAT(name) FROM products;\nSELECT GROUP_CONCAT(name, ':') FROM products;","breadcrumbs":"SQL Reference » Functions » GROUP_CONCAT","id":"133","title":"GROUP_CONCAT"},"134":{"body":"All aggregate functions can have a filter applied before aggregation. SELECT SUM(price) FILTER(WHERE price > 20) FROM products;","breadcrumbs":"SQL Reference » Functions » FILTER","id":"134","title":"FILTER"},"135":{"body":"","breadcrumbs":"SQL Reference » Functions » Data Type Functions","id":"135","title":"Data Type Functions"},"136":{"body":"The CAST function forces a value into a particular data type. Note that not all types are cast-compatible with each other. SELECT CAST(price AS INTEGER) FROM products;","breadcrumbs":"SQL Reference » Functions » CAST","id":"136","title":"CAST"},"137":{"body":"The TYPEOF function returns the type of the provided value. SELECT TYPEOF('hi2u');\nSELECT TYPEOF(1.12345678901234);\nSELECT TYPEOF(2018-01-01T00:00:00);","breadcrumbs":"SQL Reference » Functions » TYPEOF","id":"137","title":"TYPEOF"},"138":{"body":"","breadcrumbs":"SQL Reference » Functions » Conditional Functions","id":"138","title":"Conditional Functions"},"139":{"body":"The IIF function is a conditional shorthand. It returns the second parameter if the condition is true and the third parameter if the condition is false. SELECT IIF(price > 5.99, 'Expensive!', 'Cheap') FROM products;","breadcrumbs":"SQL Reference » Functions » IIF","id":"139","title":"IIF"},"14":{"body":"Relationships are also dynamic. You can join any two tables on any two columns. Adding a user with id 456 allows a join with the previous posts table. INSERT INTO users (id, name) VALUES (456, 'Vikram'); SELECT * from posts p JOIN users u ON p.user_id = u.id;","breadcrumbs":"Tutorial » Endb SQL Basics » Dynamic Joins","id":"14","title":"Dynamic Joins"},"140":{"body":"The NULLIF function returns TRUE if the two supplied expressions are equal. SELECT NULLIF(1, 1);\nSELECT NULLIF(1, 'zig');","breadcrumbs":"SQL Reference » Functions » NULLIF","id":"140","title":"NULLIF"},"141":{"body":"The COALESCE function returns its first non-null argument. The following example returns 'zig': SELECT COALESCE(NULL, NULL, 'zig', 'zag');","breadcrumbs":"SQL Reference » Functions » COALESCE","id":"141","title":"COALESCE"},"142":{"body":"","breadcrumbs":"SQL Reference » Functions » Encoding Functions","id":"142","title":"Encoding Functions"},"143":{"body":"The BASE64 function takes a hexadecimal-encoded BLOB and returns a base64-encoded string, or vice-versa. BASE64 roundtrips its own data. There is therefore no BLOBFROMBASE64 function. SELECT BASE64(x'010203');\nSELECT BASE64('AQID');","breadcrumbs":"SQL Reference » Functions » BASE64","id":"143","title":"BASE64"},"144":{"body":"The UUID function returns a universally-unique identifier, as a string. The UUID_BLOB function takes a string UUID and returns a BLOB. The UUID_STR function takes a BLOB UUID and returns a string. When given a parameter of their return type, UUID_BLOB and UUID_STR will format the UUID provided. SELECT UUID();\nSELECT UUID_BLOB('d2ce21c9-d268-409a-b1e0-49e1200bfa47');\nSELECT UUID_STR(x'd2ce21c9d268409ab1e049e1200bfa47'); -- formatting:\nSELECT UUID_BLOB(x'd2ce21c9d268409ab1e049e1200bfa47');\nSELECT UUID_STR('d2ce21c9d268409ab1e049e1200bfa47');","breadcrumbs":"SQL Reference » Functions » UUID","id":"144","title":"UUID"},"145":{"body":"The SHA1 function takes either a hexadecimal-encoded BLOB, a string, or a number. It returns the SHA-1 encoding of that value. SELECT SHA1('2');","breadcrumbs":"SQL Reference » Functions » SHA1","id":"145","title":"SHA1"},"146":{"body":"The RANDOMBLOB function returns a random binary large object of the size given, in bytes. The ZEROBLOB function returns a zeroed-out binary large object of the size given, in bytes. SELECT RANDOMBLOB(32);\nSELECT ZEROBLOB(32);","breadcrumbs":"SQL Reference » Functions » RANDOMBLOB, ZEROBLOB","id":"146","title":"RANDOMBLOB, ZEROBLOB"},"147":{"body":"The HEX function takes a BLOB (or coerces its argument into a UTF-8 string, which in turn is interpreted as a BLOB) and turns the BLOB into an upper-case hexadecimal string. The UNHEX function takes a hexadecimal string and turns it into a BLOB. The hexadecimal string provided must contain character pairs . UNHEX takes an optional second parameter: a string containing non-hexadecimal characters to be ignored in the first parameter. If non-hexadecimal characters are found in the first parameter but not ignored in the second parameter, UNHEX returns NULL. SELECT HEX(15);\n-- '3135' SELECT UNHEX('3135');\n-- b'15' SELECT UNHEX('3135ZZ', 'Z');\n-- b'15' SELECT UNHEX('3135ZZ', 'M');\n-- NULL","breadcrumbs":"SQL Reference » Functions » HEX, UNHEX","id":"147","title":"HEX, UNHEX"},"148":{"body":"To make best use of Time Queries, it is a good idea to review the time-related SQL data types, such as TIMESTAMP, DATE, TIME, and INTERVAL. These are covered in the SQL Data Types section. It is also a good idea to review Endb's other time-related functions, in case they are helpful to you: STRFTIME UNIXEPOCH JULIANDAY","breadcrumbs":"SQL Reference » Time Queries » Time Queries","id":"148","title":"Time Queries"},"149":{"body":"All Endb temporal predicates (CONTAINS, OVERLAPS, PRECEDES, SUCCEEDS, IMMEDIATELY PRECEDES, and IMMEDIATELY SUCCEEDS) follow the SQL:2011 standard's \"closed-open period model\". This means that a period represents all times starting from (and including) the start time up to (but excluding) the end time.","breadcrumbs":"SQL Reference » Time Queries » Note on SQL:2011 closed-open period model","id":"149","title":"Note on SQL:2011 closed-open period model"},"15":{"body":"Endb allows you to insert asymmetrical, jagged data. Let's add another user with more columns. INSERT INTO users (id, name, email) VALUES (789, 'Daniela', 'daniela@endatabas.com'); SELECT * from users; Note that the SELECT * is an implicitly dynamic query. It doesn't have any difficulty with the previous user document, even though it lacked an email column.","breadcrumbs":"Tutorial » Endb SQL Basics » Semi-Structured Data","id":"15","title":"Semi-Structured Data"},"150":{"body":"Endb currently only supports times encoded as UTC.","breadcrumbs":"SQL Reference » Time Queries » Note on timezones","id":"150","title":"Note on timezones"},"151":{"body":"Endb provides access to the current value of the clock \"now\" in multiple date/time configurations.","breadcrumbs":"SQL Reference » Time Queries » Now","id":"151","title":"Now"},"152":{"body":"CURRENT_TIMESTAMP gets the current date and time in UTC. SELECT CURRENT_TIMESTAMP;","breadcrumbs":"SQL Reference » Time Queries » CURRENT_TIMESTAMP","id":"152","title":"CURRENT_TIMESTAMP"},"153":{"body":"CURRENT_TIME gets the current time in UTC. SELECT CURRENT_TIME;","breadcrumbs":"SQL Reference » Time Queries » CURRENT_TIME","id":"153","title":"CURRENT_TIME"},"154":{"body":"CURRENT_DATE gets the current date in UTC. Note that this may be different from your local date, depending on the time of day when your query is run. SELECT CURRENT_DATE;","breadcrumbs":"SQL Reference » Time Queries » CURRENT_DATE","id":"154","title":"CURRENT_DATE"},"155":{"body":"All states an Endb database has ever seen are recorded, immutably. Accessing these prior states is accomplished by querying System Time. System Time is encoded in a special column, which is normally invisible to most queries, named SYSTEM_TIME.","breadcrumbs":"SQL Reference » Time Queries » System Time","id":"155","title":"System Time"},"156":{"body":"Endb permits time-traveling queries with the SQL:2011-compatible AS OF operator. The query will treat the DATE or TIMESTAMP supplied after AS OF as if it were that time now . SELECT * FROM products FOR SYSTEM_TIME AS OF 2023-08-25T00:00:00;","breadcrumbs":"SQL Reference » Time Queries » AS OF (Time Travel)","id":"156","title":"AS OF (Time Travel)"},"157":{"body":"Endb permits time-omniscient queries with the SQL:2011-compatible ALL operator. All states, across the entire history of the relevant tables, are visible to a query suffixed with FOR SYSTEM_TIME ALL: SELECT * FROM products FOR SYSTEM_TIME ALL;","breadcrumbs":"SQL Reference » Time Queries » ALL (Time Omniscience)","id":"157","title":"ALL (Time Omniscience)"},"158":{"body":"The syntax for time-aware BETWEEN is the same as the normal BETWEEN operator . Inspect System Time with the form FOR SYSTEM_TIME BETWEEN x AND y. SELECT * FROM products FOR SYSTEM_TIME BETWEEN 2023-08-24T00:00:00 AND 2023-08-25T00:00:00;","breadcrumbs":"SQL Reference » Time Queries » BETWEEN","id":"158","title":"BETWEEN"},"159":{"body":"Selects rows which fall between the two times, similar to BETWEEN, but is exclusive of both the start and end times. SELECT * FROM products FOR SYSTEM_TIME FROM 2023-08-24T00:00:00 TO 2023-08-30T00:00:00;","breadcrumbs":"SQL Reference » Time Queries » FROM ... TO","id":"159","title":"FROM ... TO"},"16":{"body":"It may seem strange to leave jagged columns lying around. Endb doesn't discourage you from cleaning up your data, if you can: UPDATE users SET email = 'vikram@stockholm.se' WHERE name = 'Vikram'; SELECT * from users; The difference in Endb is that we haven't \"migrated\" the old data — it's still there. If you query for Vikram's user document as of 2 minutes ago, you will see the old record without an email. Queries in Endb always default to as-of-now , which is why the results of the query above shouldn't be surprising.","breadcrumbs":"Tutorial » Endb SQL Basics » Data \"Migration\"","id":"16","title":"Data \"Migration\""},"160":{"body":"The standard SQL:2011 period predicates are available.","breadcrumbs":"SQL Reference » Time Queries » Period Predicates","id":"160","title":"Period Predicates"},"161":{"body":"Returns TRUE if the second period is contained within the first. SELECT {start: 2001-01-01, end: 2001-04-01} CONTAINS {start: 2001-02-01, end: 2001-04-01};","breadcrumbs":"SQL Reference » Time Queries » CONTAINS","id":"161","title":"CONTAINS"},"162":{"body":"Returns TRUE if any part of the first period is found within the second. SELECT {start: 2001-01-01, end: 2001-03-01} OVERLAPS {start: 2001-02-01, end: 2001-04-01};","breadcrumbs":"SQL Reference » Time Queries » OVERLAPS","id":"162","title":"OVERLAPS"},"163":{"body":"Returns TRUE if the first period ends before the second period begins. SELECT 2001-03-01 PRECEDES [2001-04-01T00:00:00Z, 2001-05-01];","breadcrumbs":"SQL Reference » Time Queries » PRECEDES","id":"163","title":"PRECEDES"},"164":{"body":"Returns TRUE if the first period begins after the second period ends. SELECT 2001-06-01 SUCCEEDS [2001-04-01T00:00:00Z, 2001-05-01];","breadcrumbs":"SQL Reference » Time Queries » SUCCEEDS","id":"164","title":"SUCCEEDS"},"165":{"body":"Returns TRUE if the first period ends exactly as the second period begins. SELECT 2001-04-01 IMMEDIATELY PRECEDES [2001-04-01T00:00:00Z, 2001-05-01];","breadcrumbs":"SQL Reference » Time Queries » IMMEDIATELY PRECEDES","id":"165","title":"IMMEDIATELY PRECEDES"},"166":{"body":"Returns TRUE if the first period begins exactly as the second period ends. SELECT 2001-05-01 IMMEDIATELY SUCCEEDS [2001-04-01T00:00:00Z, 2001-05-01];","breadcrumbs":"SQL Reference » Time Queries » IMMEDIATELY SUCCEEDS","id":"166","title":"IMMEDIATELY SUCCEEDS"},"167":{"body":"Because Endb is schemaless and semi-structured, it offers a number of powerful path-nativation primitives inspired by JSONPath , SQL/JSON , and their derivatives in legacy relational databases. You will want to familiarize yourself with Endb's nested data types (arrays and objects) before learning about path navigation. In the examples below, path examples are shown in the SELECT clause, but they are also valid in the WHERE clause.","breadcrumbs":"SQL Reference » Path Navigation » Path Navigation","id":"167","title":"Path Navigation"},"168":{"body":"If you are familiar with arrays and objects, try adding some nested objects to the table paths (the table name is arbitrary). INSERT INTO paths {a: 2, b: {a: 3}, c: [{a: 1}, 2]};","breadcrumbs":"SQL Reference » Path Navigation » Nested Objects","id":"168","title":"Nested Objects"},"169":{"body":"Navigating the root of any document (row) as a tree looks like standard SQL, because it is: SELECT a FROM paths; Similarly, however, it is possible to navigate documents listed in an array: SELECT [{a: 2}, {a: 3}, {b: 4}].a;\n-- [{'a': [2, 3]}] It is also possible to navigate fields of sub-documents (columns of nested rows) with further dot notation: SELECT b.a FROM paths;\n-- [{'a': 3}]","breadcrumbs":"SQL Reference » Path Navigation » Root Navigation","id":"169","title":"Root Navigation"},"17":{"body":"Endb eschews nested json in favour of a native, strongly-typed, document-relational model. INSERT INTO users (id, name, friends) VALUES (123, 'Anastasia', [{name: 'Heikki', country: 'Finland'},{name: 'Amit', country: 'Japan'}]); SELECT users.friends[1] FROM users WHERE id = 123; The users.friends[1] expression above is one of many path expressions inspired by JSONPath , SQL/JSON , and their derivatives in legacy relational databases. A detailed explanation of Endb's arrays and objects is provided in the SQL Reference","breadcrumbs":"Tutorial » Endb SQL Basics » Nested Data","id":"17","title":"Nested Data"},"170":{"body":"It is possible (and helpful) to create a row literal to represent rows returned, so they are easier to navigate. The format of a row literal is {
.* }: SELECT { paths.* } FROM paths; See Row Literal Data Type","breadcrumbs":"SQL Reference » Path Navigation » Row Literals","id":"170","title":"Row Literals"},"171":{"body":"The double dot (..) notation performs a \"deep scan\" by recursively walking the document to match the name given. SELECT { paths.* }..a FROM paths;\n-- [{'a': [2, 3, 1]}] SELECT b..a FROM paths;\n-- [{'a': [3]}]","breadcrumbs":"SQL Reference » Path Navigation » Recursive Paths","id":"171","title":"Recursive Paths"},"172":{"body":"The square bracket notation (['']) performs a lookup of a single descendent child. SELECT { paths.* }['b']['a'] FROM paths;\n-- [{'a': 3}] SELECT b['a'] FROM paths;\n-- [{'a': 3}] Named Children can be combined with recursive paths, though the default recursive path syntax is synonymous with named children: SELECT { paths.* }..a FROM paths;\nSELECT { paths.* }..['a'] FROM paths;\nSELECT b..['a'] FROM paths;","breadcrumbs":"SQL Reference » Path Navigation » Named Child","id":"172","title":"Named Child"},"173":{"body":"The square bracket notation ([]) can also perform indexed lookups of a single descendent child. SELECT { paths.* }['b'][0] FROM paths;\n-- [{'column1': {'a': 3}}] SELECT { paths.* }['c'][1] FROM paths;\n-- [{'column1': 2}] SELECT c[1] FROM paths;\n-- [{'column1': 2}] Numbered Children can be combined with recursive paths. This finds and returns all indexed values, counting backward: SELECT { paths.* }..[-1] FROM paths;\n-- [{'column1': [2]}]","breadcrumbs":"SQL Reference » Path Navigation » Numbered Child","id":"173","title":"Numbered Child"},"174":{"body":"The square bracket notation ([*]) can also perform a wildcard lookup of all descendent children. SELECT [{a: 2}, {a: 3}, {b: 4}, 5][*]; Wildcards can be combined with recursive paths. This finds and returns all values: SELECT { paths.* }..[*] FROM paths;\n-- [{'column1': [2, {'a': 3}, [{'a': 1}, 2], 3, {'a': 1}, 2, 1]}] SELECT c..[*] FROM paths;\n-- [{'column1': [{'a': 1}, 2, 1]}]","breadcrumbs":"SQL Reference » Path Navigation » Wildcard Child","id":"174","title":"Wildcard Child"},"175":{"body":"Path editing is accomplished with an extended path syntax, where each path begins with $. Endb's path editing functions are heavily inspired by SQLite's JSON Functions . Path editing functions add functionality ($, #) to a subset Endb's normal path navigation syntax: path editing functions do not support recursion or wildcards. Path editing functions are available to UPDATE ... SET and UPDATE ... UNSET/REMOVE .","breadcrumbs":"SQL Reference » Path Navigation » Path Functions","id":"175","title":"Path Functions"},"176":{"body":"Takes an object, a path, and a new value. The new value will overwrite existing fields or add a new field if it doesn't already exist. SELECT path_set({a: 2, c: 4}, $.c, [97,96]);\n-- {'a': 2, 'c': [97, 96]}","breadcrumbs":"SQL Reference » Path Navigation » path_set","id":"176","title":"path_set"},"177":{"body":"Takes an object, a path, and a new value. The new value is ignored if the path does not match an existing field. SELECT path_replace({a: 2, c: 4}, $.a, 99);\n-- {'a': 99, 'c': 4} SELECT path_replace({a: 2, c: 4}, $.e, 99);\n-- {'a': 2, 'c': 4}","breadcrumbs":"SQL Reference » Path Navigation » path_replace","id":"177","title":"path_replace"},"178":{"body":"Takes an object, a path, and a new value. The new value is ignored if the path matches an existing field. SELECT path_insert({a: 2, c: 4}, $.e, 99);\n-- {'a': 2, 'c': 4, 'e': 99}","breadcrumbs":"SQL Reference » Path Navigation » path_insert","id":"178","title":"path_insert"},"179":{"body":"Takes an object and a variable number of arguments specifying which paths to remove. If a path is not found, nothing is removed for that argument. # represents the last element in a collection. SELECT path_remove([0,1,2,3,4], $[#-1], $[0]);\n-- [1, 2, 3] SELECT path_remove({x: 25, y: 42}, $.y);\n-- {'x': 25}","breadcrumbs":"SQL Reference » Path Navigation » path_remove","id":"179","title":"path_remove"},"18":{"body":"Because of Endb's native document-relational model, rows are documents and vice-versa. You can use an INSERT statement to add a document directly to the database: INSERT INTO users {id: 890, name: 'Aaron', friends: [{name: 'Jeff', country: 'Canada'},{name: 'Kaia', country: 'Japan'}]};","breadcrumbs":"Tutorial » Endb SQL Basics » Documents","id":"18","title":"Documents"},"180":{"body":"Takes an object and a variable number of path arguments. Returns the value found at each path, if any, otherwise NULL. If only a single path is provided, a scalar is returned. If multiple paths are provided, an array is returned. SELECT path_extract({a: 2, c: [4, 5, {f: 7}]}, $.c[2].f);\n-- 7 SELECT path_extract({a: 2, c: [4, 5], f: 7}, $.x, $.a);\n-- [NULL, 2]","breadcrumbs":"SQL Reference » Path Navigation » path_extract","id":"180","title":"path_extract"},"181":{"body":"Endb allows introspection of its information schema. The Endb information schema does not describe the structure of each table. Because Endb is a document database, each document (row) is responsible for its own schema. The information schema is used by Endb to describe database objects at a high level and is used for schemaless queries, such as SELECT *. Note that all information schema tables are hard-coded to lower-case names and must be queried as such.","breadcrumbs":"SQL Reference » Schema » Schema","id":"181","title":"Schema"},"182":{"body":"-> SELECT * FROM information_schema.tables;\n[{'table_catalog': None, 'table_name': 'stores', 'table_schema': 'main', 'table_type': 'BASE TABLE'}, {... 'table_name': 'products', ... }, {... 'table_name': 'sales', ... }]","breadcrumbs":"SQL Reference » Schema » Tables","id":"182","title":"Tables"},"183":{"body":"-> SELECT * FROM information_schema.columns;\n[{'column_name': 'addresses', 'ordinal_position': 0, 'table_catalog': None, 'table_name': 'stores', 'table_schema': 'main'}, {'column_name': 'brand', ... }, {'column_name': 'price', ... }, ... ]","breadcrumbs":"SQL Reference » Schema » Columns","id":"183","title":"Columns"},"184":{"body":"-> SELECT * FROM information_schema.views;\n[{'table_catalog': None, 'table_name': 'sold_products', 'table_schema': 'main', 'view_definition': 'SELECT * FROM products p JOIN sales s ON p.id = s.p_id'}]","breadcrumbs":"SQL Reference » Schema » Views","id":"184","title":"Views"},"185":{"body":"The check_constraints table in Endb is used to store assertions . -> SELECT * FROM information_schema.check_constraints;\n[{'check_clause': \"(NOT EXISTS (SELECT * FROM users WHERE TYPEOF(email) != 'text'))\", 'constraint_catalog': None, 'constraint_name': 'string_email', 'constraint_schema': 'main'}]","breadcrumbs":"SQL Reference » Schema » Check Constraints","id":"185","title":"Check Constraints"},"186":{"body":"Endb provides basic view functionality to support environments which require a static schema.","breadcrumbs":"SQL Reference » Views » Views","id":"186","title":"Views"},"187":{"body":"CREATE VIEW creates a non-materialized view based on the query which follows the AS operator. Column names are listed in parentheses after the view name. CREATE VIEW simple_products(name, price) AS SELECT name, ROUND(price) FROM products; Alternatively, named columns can each immediately follow queried columns. CREATE VIEW easy_products AS SELECT name label, ROUND(price) easy_price FROM products; NOTE: To modify a view, use DROP VIEW then re-create the view with the desired columns.","breadcrumbs":"SQL Reference » Views » CREATE VIEW","id":"187","title":"CREATE VIEW"},"188":{"body":"DROP VIEW deletes a view based on its name. DROP VIEW easy_products;","breadcrumbs":"SQL Reference » Views » DROP VIEW","id":"188","title":"DROP VIEW"},"189":{"body":"","breadcrumbs":"SQL Reference » Assertions » Assertions","id":"189","title":"Assertions"},"19":{"body":"Endb will always do its best to provide you with meaningful error messages that point you to a solution: SELECT * FROM im_not_here;","breadcrumbs":"Tutorial » Endb SQL Basics » Error Messages","id":"19","title":"Error Messages"},"190":{"body":"Creates a checked, deferred assertion which executes on commit for inserts and updates. Although CREATE ASSERTION (normally) needs to refer to the table it is asserting on, that table need not exist for the assertion to be created. CREATE ASSERTION string_email CHECK (NOT EXISTS (SELECT * FROM users WHERE TYPEOF(email) != 'text'));\nINSERT INTO users {name: 'Steven', email: 123};","breadcrumbs":"SQL Reference » Assertions » CREATE ASSERTION","id":"190","title":"CREATE ASSERTION"},"191":{"body":"Removes an assertion from the database based on its name. DROP ASSERTION string_email;","breadcrumbs":"SQL Reference » Assertions » DROP ASSERTION","id":"191","title":"DROP ASSERTION"},"192":{"body":"Reference documentation exists as a detailed perspective on each feature of Endb. It does not need to be read from beginning to end. Installation Operation HTTP API Data Types","breadcrumbs":"Reference » Reference","id":"192","title":"Reference"},"193":{"body":"At this stage, Endatabas is highly experimental. We do not push images to Docker Hub often. We recommend building the local Docker image if you want a recent version. You only need one of the following options. If you followed the Quickstart, you already have the Docker Hub version installed.","breadcrumbs":"Reference » Installation » Installation","id":"193","title":"Installation"},"194":{"body":"Endb is still in early alpha. While in alpha, new versions are not guaranteed to have binary-compatible storage with previous versions. We encourage you to experiment with Endb but please do not use it in production until a General Availability release.","breadcrumbs":"Reference » Installation » Warning: Early Alpha","id":"194","title":"Warning: Early Alpha"},"195":{"body":"If you run Docker, you can use the default command below. --rm cleans up (optional), -p exposes the default endb port, and -v mounts a local volume so your data persists even if you shut down the Docker image. mkdir -p endb_data\ndocker pull endatabas/endb\ndocker run --rm -p 3803:3803 -v endb_data:/app/endb_data endatabas/endb If you run Podman, you'll need to specify the docker.io repo explicitly: mkdir -p endb_data\npodman pull docker.io/endatabas/endb\npodman run --rm -p 3803:3803 -v endb_data:/app/endb_data docker.io/endatabas/endb","breadcrumbs":"Reference » Installation » Installing from Docker Hub","id":"195","title":"Installing from Docker Hub"},"196":{"body":"If you want to run endb from the main branch, compile and build the Docker image: https://github.com/endatabas/endb/#building https://github.com/endatabas/endb/#docker","breadcrumbs":"Reference » Installation » Installing from Git: Docker","id":"196","title":"Installing from Git: Docker"},"197":{"body":"If you don't want Docker at all, you can compile and run the endb binary: https://github.com/endatabas/endb/#building ./target/endb NOTE: If you move the endb binary, be sure to copy libendb.so (Linux) or libendb.dylib (MacOS) into the same directory. This is because endb requires libendb to run.","breadcrumbs":"Reference » Installation » Installing from Git: Binary","id":"197","title":"Installing from Git: Binary"},"198":{"body":"The endb executable aims to provide self-explanatory help for direct usage of the binary. By default, endb logs to STDOUT. $ endb --help\nUsage: endb [OPTIONS] Options: -d, --data-directory [env: ENDB_DATA_DIRECTORY=] [default: endb_data] -p, --http-port [env: ENDB_HTTP_PORT=] [default: 3803] --username [env: ENDB_USERNAME=] --password [env: ENDB_PASSWORD=] -h, --help Print help -V, --version Print version","breadcrumbs":"Reference » Operation » Operation","id":"198","title":"Operation"},"199":{"body":"At this experimental stage, only raw HTTP drivers are available. Any HTTP client may be used but in the examples below, we'll use curl. You can send SQL statements to endb over HTTP: curl -d \"INSERT INTO users (name) VALUES ('Tianyu')\" -H \"Content-Type: application/sql\" -X POST http://localhost:3803/sql\ncurl -d \"SELECT * FROM users\" -H \"Content-Type: application/sql\" -X POST http://localhost:3803/sql You can send SQL to endb with standard HTTP Query Parameters, Verbs, Content Types, Accept Headers, and HTTP Basic Authentication. Each one is outlined below.","breadcrumbs":"Reference » HTTP API » HTTP API","id":"199","title":"HTTP API"},"2":{"body":"This quick tutorial intends to walk you through the core aspects of Endb. By the end, you will have endb installed and you will have used it to learn some of what it can do. Quickstart Try It! Endb SQL Basics","breadcrumbs":"Tutorial » Tutorial","id":"2","title":"Tutorial"},"20":{"body":"The SQL Reference contains details and edge cases about Endb SQL. NOTE: The Endb SQL dialect is under active development. While most major features of Endb SQL are stable, some more esoteric features (MATCH, path navigation, etc.) may experience naming and semantics changes before Endb 1.0 is released. Intention Data Manipulation Queries SQL Data Types Operators Functions Time Queries Path Navigation Schema Views Assertions","breadcrumbs":"SQL Reference » SQL Reference","id":"20","title":"SQL Reference"},"200":{"body":"The query parameters Endb's HTTP endpoint accepts are: q - (q)uery: a SQL query, optionally parameterized p - (p)arameters: named or positional parameters m - (m)ultiple statements: bulk parameters , used for bulk insert/update","breadcrumbs":"Reference » HTTP API » HTTP Query Parameters","id":"200","title":"HTTP Query Parameters"},"201":{"body":"POST allows explicit Content Types and Accept headers: curl -d 'SELECT 1' -H \"Content-Type: application/sql\" -H \"Accept: text/csv\" -X POST http://localhost:3803/sql GET allows a single, simple URL. GET does not permit DML. curl -X GET \"http://localhost:3803/sql?q=SELECT%201\"","breadcrumbs":"Reference » HTTP API » HTTP Verbs","id":"201","title":"HTTP Verbs"},"202":{"body":"The HTTP Content-Type header is used to specify what format the client is sending data to Endb.","breadcrumbs":"Reference » HTTP API » Content Types","id":"202","title":"Content Types"},"203":{"body":"curl -d '{\"q\": \"SELECT * from products;\"}' -H \"Content-Type: application/json\" -X POST http://localhost:3803/sql\ncurl -d '{\"q\": \"SELECT * from products WHERE name = ?;\", \"p\": [\"Salt\"]}' -H \"Content-Type: application/json\" -X POST http://localhost:3803/sql\ncurl -d '{\"q\": \"INSERT INTO products {name: :name};\", \"p\": {\"name\": \"Paprika\"}}' -H \"Content-Type: application/json\" -X POST http://localhost:3803/sql NOTE: To enable strongly-typed values, payloads sent with the application/json content type have values resolved with JSON-LD scalars. Standard JSON values are a subset of JSON-LD scalars, so data sent as regular JSON is unaffected by this behaviour.","breadcrumbs":"Reference » HTTP API » application/json:","id":"203","title":"application/json:"},"204":{"body":"Although values in the application/json content type are resolved using JSON-LD scalars, you can explicitly specify an application/ld+json content type to avoid all ambiguity. See JSON-LD . curl -d '{\"q\": \"INSERT INTO events {start: :start};\", \"p\": {\"start\": {\"@type\": \"xsd:dateTime\", \"@value\": \"2011-04-09T20:00:00Z\"}}}' -H \"Content-Type: application/ld+json\" -X POST http://localhost:3803/sql","breadcrumbs":"Reference » HTTP API » application/ld+json","id":"204","title":"application/ld+json"},"205":{"body":"curl -d 'SELECT 1' -H \"Content-Type: application/sql\" -X POST http://localhost:3803/sql Submit parameters to application/sql by providing form data or query parameters. Form data and query parameters can be combined, though it is not necessarily recommended. curl -F q=\"INSERT INTO sauces {name: ?, color: ?};\" -X POST http://localhost:3803/sql?p=%5B%22ketchup%22%2C%22purple%22%5D","breadcrumbs":"Reference » HTTP API » application/sql:","id":"205","title":"application/sql:"},"206":{"body":"curl -F q=\"SELECT * from products;\" -H \"Content-Type: multipart/form-data\" -X POST http://localhost:3803/sql\ncurl -F q=\"INSERT INTO products {name: ?};\" -F p='[\"Sriracha\"]' -X POST http://localhost:3803/sql NOTE: Many HTTP clients (including curl) automatically assume a content type of multipart/form-data when form fields are provided. This is true for curl when the -F (--form) argument is used and it has been elided from further examples.","breadcrumbs":"Reference » HTTP API » multipart/form-data","id":"206","title":"multipart/form-data"},"207":{"body":"Although the other content types are preferable for obvious reasons, application/x-www-form-urlencoded is offered for completeness. curl -d 'q=SELECT%20*%20FROM%20products;' -H \"Content-Type: application/x-www-form-urlencoded\" -X POST http://localhost:3803/sql","breadcrumbs":"Reference » HTTP API » application/x-www-form-urlencoded","id":"207","title":"application/x-www-form-urlencoded"},"208":{"body":"The HTTP Accept header is used to specify how data is returned to the Endb client. The default Accept header content type is application/json.","breadcrumbs":"Reference » HTTP API » Accept Headers","id":"208","title":"Accept Headers"},"209":{"body":"text/csv returns comma-separated rows. Column order from the SELECT clause is maintained. curl -d \"SELECT * FROM (VALUES (1,'hello'), (2,'csv')) t1\" -H \"Content-Type: application/sql\" -H \"Accept: text/csv\" -X POST http://localhost:3803/sql returns: \"column1\",\"column2\"\n2,\"csv\"\n1,\"hello\"","breadcrumbs":"Reference » HTTP API » text/csv","id":"209","title":"text/csv"},"21":{"body":"The goal of Endb's SQL dialect is to be small, coherent, and powerful. The SQL specification is massive, with pages ordering in the thousands. Rather than implement the entire SQL specification from scratch (a gargantuan task) or mimic the SQL dialect of another database, Endb chooses a tiny core and builds powerful, composable features on top of that. This tiny core draws inspiration from many sources, but SQLite in particular. If SQLite supports a particular operator or function, Endb SQL also tries to. Endb SQL also draws strong inspiration from the SQL specification itself (and its predecessors ) and from PostgreSQL . Endb SQL's nested data is also heavily inspired by JSONPath , SQL/JSON , and their derivatives found in major SQL databases. Light inspiration is drawn from PartiQL , SQL++ , and XQuery . For more information on Endb's influences, please see our bibliography .","breadcrumbs":"SQL Reference » Intention » Intention","id":"21","title":"Intention"},"210":{"body":"application/json returns rows as an array of JSON tuples. Column order from the SELECT clause is maintained. curl -d \"SELECT * FROM (VALUES (1,'hello'), (2,DATE('2023-07-22'))) t1\" -H \"Content-Type: application/sql\" -H \"Accept: application/json\" -X POST http://localhost:3803/sql returns: [[2,\"2023-07-22\"],[1,\"hello\"]]","breadcrumbs":"Reference » HTTP API » application/json","id":"210","title":"application/json"},"211":{"body":"application/x-ndjson returns newline-delimited JSON documents. Column order from the SELECT clause is not maintained. JSON documents cannot guarantee column order. curl -d \"SELECT * FROM (VALUES (1,'hello'), (2,DATE('2023-07-22'))) t1\" -H \"Content-Type: application/sql\" -H \"Accept: application/x-ndjson\" -X POST http://localhost:3803/sql returns: {\"column1\":2,\"column2\":\"2023-07-22\"}\n{\"column1\":1,\"column2\":\"hello\"}","breadcrumbs":"Reference » HTTP API » application/x-ndjson","id":"211","title":"application/x-ndjson"},"212":{"body":"application/ld+json returns documents of strongly-typed (\"Linking Data\") JSON records. Column order from the SELECT clause is not maintained. JSON documents cannot guarantee column order. curl -d \"SELECT * FROM (VALUES (1,'hello'), (2,DATE('2023-07-22'))) t1\" -H \"Content-Type: application/sql\" -H \"Accept: application/ld+json\" -X POST http://localhost:3803/sql returns: {\"@context\":{\"xsd\":\"http://www.w3.org/2001/XMLSchema#\",\"@vocab\":\"http://endb.io/\"},\"@graph\":[{\"column1\":2,\"column2\":{\"@value\":\"2023-07-22\",\"@type\":\"xsd:date\"}},{\"column1\":1,\"column2\":\"hello\"}]} See JSON-LD .","breadcrumbs":"Reference » HTTP API » application/ld+json","id":"212","title":"application/ld+json"},"213":{"body":"application/vnd.apache.arrow.file returns columnar data as an Apache Arrow file. curl -d \"SELECT * FROM (VALUES (1,'hello'), (2,DATE('2023-07-22'))) t1\" -H \"Content-Type: application/sql\" -H \"Accept: application/vnd.apache.arrow.file\" -X POST http://localhost:3803/sql --output hello.arrow The above command returns a file containing a single RecordBatch in an Apache Arrow file in IPC format. You can examine the file with functions like pyarrow.ipc.open_file , as seen in this gist .","breadcrumbs":"Reference » HTTP API » application/vnd.apache.arrow.file","id":"213","title":"application/vnd.apache.arrow.file"},"214":{"body":"application/vnd.apache.arrow.stream returns columnar data as an Apache Arrow stream. curl -d \"SELECT * FROM (VALUES (1,'hello'), (2,DATE('2023-07-22'))) t1\" -H \"Content-Type: application/sql\" -H \"Accept: application/vnd.apache.arrow.stream\" -X POST http://localhost:3803/sql --output streamed.arrow The above command returns a file containing an Apache Arrow IPC stream. You can examine the file with functions like pyarrow.ipc.open_stream , as seen in this gist .","breadcrumbs":"Reference » HTTP API » application/vnd.apache.arrow.stream","id":"214","title":"application/vnd.apache.arrow.stream"},"215":{"body":"Endb supports HTTP Basic Authentication as defined by RFC 7235 . Pass --username and --password arguments to the endb binary to force basic authentication for HTTP connections. ./target/endb --username zig --password zag Then, from any HTTP client, provide the username and password combination to execute queries. curl --user zig:zag -d \"SELECT 'Hello World';\" -H \"Content-Type: application/sql\" -X POST http://localhost:3803/sql If the client passes an incorrect username or password, it will receive a 401 Authorization Required HTTP status code as a result, but no body. Be aware of this to ensure client code is written to detect 401 status codes. $ curl -i --user zig:wrong -d \"SELECT 'Hello World';\" -H \"Content-Type: application/sql\" -X POST http://localhost:3803/sql\nHTTP/1.1 401 Authorization Required","breadcrumbs":"Reference » HTTP API » HTTP Basic Authentication","id":"215","title":"HTTP Basic Authentication"},"216":{"body":"SQL parameters are available to: application/json and application/ld+json as part of the POST body multipart/form-data as form data application/x-www-form-urlencoded as URL query parameters application/sql as form data and/or URL query parameters Parameters can be JSON literals, JSON-LD scalars, or SQL literals. A JSON-LD scalar always has the form: {\"@type\": \"xsd:TYPE\", \"@value\": \"DATA\"}. JSON-LD types are listed under the Data Types table.","breadcrumbs":"Reference » HTTP API » Parameters","id":"216","title":"Parameters"},"217":{"body":"Named parameters substitute parameter placeholders with the form :param by the parameter key with the corresponding name. Named parameters are represented as a JSON object. curl -d '{\"q\": \"INSERT INTO products {name: :name, price: :price};\", \"p\": {\"name\": \"Paprika\", \"price\": 2.99}}' -H \"Content-Type: application/json\" -X POST http://localhost:3803/sql\ncurl -d '{\"q\": \"INSERT INTO events {start: :start};\", \"p\": {\"start\": {\"@type\": \"xsd:dateTime\", \"@value\": \"2011-04-09T20:00:00Z\"}}}' -H \"Content-Type: application/ld+json\" -X POST http://localhost:3803/sql\ncurl -F q=\"INSERT INTO products {name: :sauce};\" -F p='{\"sauce\": \"Sriracha\"}' -X POST http://localhost:3803/sql","breadcrumbs":"Reference » HTTP API » Named Parameters","id":"217","title":"Named Parameters"},"218":{"body":"Positional parameters substitute parameter placeholders with the form ? by the parameter values, in the order they appear. Positional parameters are respresented as a JSON array. curl -d '{\"q\": \"SELECT * from products WHERE name = ? AND price > ?;\", \"p\": [\"Salt\", 3.99]}' -H \"Content-Type: application/json\" -X POST http://localhost:3803/sql\ncurl -d '{\"q\": \"INSERT INTO events {start: ?};\", \"p\": [{\"@type\": \"xsd:dateTime\", \"@value\": \"2011-04-09T20:00:00Z\"}]}' -H \"Content-Type: application/ld+json\" -X POST http://localhost:3803/sql\ncurl -F q=\"INSERT INTO products {name: ?};\" -F p='[\"Sriracha\"]' -X POST http://localhost:3803/sql","breadcrumbs":"Reference » HTTP API » Positional Parameters","id":"218","title":"Positional Parameters"},"219":{"body":"Bulk operations are possible by setting the m flag to true. Bulk operations are available to both named and positional parameters. The list of parameters supplied in bulk must be nested in an array. curl -d '{\"q\": \"INSERT INTO products {name: :name};\", \"p\": [{\"name\": \"Soda\"}, {\"name\": \"Tonic\"}], \"m\": true}' -H \"Content-Type: application/json\" -X POST http://localhost:3803/sql\ncurl -F q=\"INSERT INTO sauces {name: ?, color: ?};\" -F p='[[\"Mustard\", \"Yellow\"], [\"Ketchup\", \"Red\"]]' -F m=true -X POST http://localhost:3803/sql","breadcrumbs":"Reference » HTTP API » Bulk Parameters","id":"219","title":"Bulk Parameters"},"22":{"body":"Creating, updating, and deleting data in Endb is done using standard SQL Data Manipulation Language (DML). Endb is also immutable and schemaless, so it contains a number of shorthands and document-oriented conveniences. Endb does not require any Data Definition Language (DDL), such as CREATE TABLE.","breadcrumbs":"SQL Reference » Data Manipulation » Data Manipulation","id":"22","title":"Data Manipulation"},"220":{"body":"As it is possible to receive Apache Arrow data from an Endb query, it is possible to submit Apache Arrow as a statement parameter. The example below assumes the existence of a a table called names, which only contains one column (name). Apache Arrow Streams can also be used as parameters in the same way. # create a sample Arrow file:\ncurl -d \"SELECT * FROM names;\" -H \"Content-Type: application/sql\" -H \"Accept: application/vnd.apache.arrow.file\" -X POST http://localhost:3803/sql --output names.arrow\n# use the sample Arrow file:\ncurl -F m=true -F q=\"INSERT INTO projects {name: :name};\" -F \"p=@names.arrow;type=application/vnd.apache.arrow.file\" -X POST http://localhost:3803/sql NOTE: This feature should be used with caution. Do not submit arbitrary Arrow files as parameters. If a malformed Arrow file is submitted, the error message returned (if any) is unlikely to provide guidance. Preferably, Arrow files should be created using Endb itself, as in the example above. Most users will prefer to use a human-readable file format instead, such as a JSON variant or static SQL statements.","breadcrumbs":"Reference » HTTP API » Apache Arrow File Parameters","id":"220","title":"Apache Arrow File Parameters"},"221":{"body":"Bulk inserts are possible by combining the tools mentioned under Parameters . For example, the OBJECTS keyword can insert an array of object literals. Note that each object used as a positional parameter must be wrapped in a JSON array, since there may be more than one positional parameter supplied. Similarly, each named parameter must be wrapped in an object containing a key of the corresponding name. curl -F m=true -F q=\"INSERT INTO products OBJECTS ?\" -F p=\"[[{name: 'jam'}], [{name: 'butter'}]]\" -X POST http://localhost:3803/sql\ncurl -F m=true -F q=\"INSERT INTO products OBJECTS :product\" -F p=\"[{product: {name: 'jelly'}}, {product: {name: 'ghee'}}]\" -X POST http://localhost:3803/sql","breadcrumbs":"Reference » HTTP API » Bulk Insert","id":"221","title":"Bulk Insert"},"222":{"body":"It is possible to pass multiple SQL statements to Endb by delimiting them with semicolons. Parameters will be passed to all statements in order. Only the result of the last statement is returned to the client. In the following example, the INSERT will be successful but will not return a result. The SELECT will return to the client. curl --form-string q=\"INSERT INTO sauces {name: ?, color: ?}; SELECT {namo: ?, colour: ?};\" -F p='[\"Mustard\", \"Yellow\", \"Ketchup\", \"Red\"]' -X POST http://localhost:3803/sql NOTE: --form-string is required instead of --form to send semicolon-delimited statements with curl.","breadcrumbs":"Reference » HTTP API » Multiple Statements","id":"222","title":"Multiple Statements"},"223":{"body":"","breadcrumbs":"Reference » Data Types » Data Types","id":"223","title":"Data Types"},"224":{"body":"Endb supports the following native scalar types for now. JSON-LD values with a type of @json will be returned from Endb as JSON literals, verbatim. The @type listed in parentheses is for reference purposes only. JSON literal types are implicit so a @value/@type pair is not returned for a JSON literal. SQL JSON-LD Example Literal Description NULL @json null Null, nil, undefined, or missing TEXT @json (xsd:string) \"hello\" UTF-8 string BOOLEAN @json (xsd:boolean) FALSE 8-bit boolean INTEGER @json (xsd:int[eger]) 42 64/128-bit two's complement integer REAL @json (xsd:double) 9007199254740992.123 64-bit IEEE 754 floating point number TIMESTAMP xsd:dateTime 2007-01-01T00:00:00 ISO microsecond precision timestamp DATE xsd:date 2007-01-01 ISO date TIME xsd:time 23:30:00 ISO time INTERVAL xsd:duration PT12H34M56.789S ISO interval BLOB xsd:base64Binary x'DEADBEEF' Binary large object SQL Data Types are covered in detail in the SQL Reference.","breadcrumbs":"Reference » Data Types » Scalars","id":"224","title":"Scalars"},"225":{"body":"SQL JSON-LD Example Literal Description ARRAY @json [\"Joe\", \"Dan\", \"Dwayne\"] Zero-based array OBJECT @json {n: 3, b: 2023-01-01} Object, map, dict, document","breadcrumbs":"Reference » Data Types » Collections","id":"225","title":"Collections"},"226":{"body":"SQL JSON-LD Description DECIMAL xsd:decimal Arbitrary precision decimal. Use 2 BIGINTs or VARCHAR URI xsd:anyURI Unsupported. Use VARCHAR UUID @json (xsd:string) Unsupported. Use VARCHAR or BLOB If you strongly feel you need a native representation of one of these types, email us: hello@endatabas.com","breadcrumbs":"Reference » Data Types » Unsupported Scalar Types","id":"226","title":"Unsupported Scalar Types"},"227":{"body":"What? Why? Architecture Roadmap License","breadcrumbs":"Appendix » Appendix","id":"227","title":"Appendix"},"228":{"body":"From the outside, Endatabas (or Endb ) is an open source SQL document database with full history. On the inside, this means all records in Endatabas are immutable. An ERASE statement is provided for compliance with laws and policies like GDPR. Time-travel is possible, but queries default to \"as-of-now\". (Which is the thing you want 97% of the time.) Rows are \"schema-last\" documents and joins can be arbitrary, but queries are written in SQL. Endb stores data in Apache Arrow: scalars are strongly typed, the on-disk format is columnar, and the execution engine understands rows and columns. Endb separates storage from compute to provide unlimited disk space. In Swedish, Endatabas means both \"a database\" and \" one database\". This One Database Dream is twofold: Endb hopes to provide HTAP , so a secondary analytics database is not required for most users. Endb plans to use AI ( adaptive indexing ) to provide fast OLTP and OLAP queries on cheap, elastic infrastructure.","breadcrumbs":"Appendix » What? » What is Endatabas?","id":"228","title":"What is Endatabas?"},"229":{"body":"After years of market research, the complaint of database users is universal: \"I want to stop babysitting the database.\" This can mean many things but they're all expensive and complex. The database equivalent of Greenspun's 10th Rule might be \"any sufficiently complicated backend system contains an ad-hoc, informally-specified, bug-ridden, slow implementation of half a database.\" This was true for much of the work we did in the 2010s and 2020s. \"Babysitting\" is sometimes the energy wasted by repeatedly building and maintaining ad-hoc databases for ourselves instead of building tools for customers. Buying data products also requires babysitting. DBAs babysit Oracle indexes. Developers babysit Postgres query optimizations. Data engineers babysit ETL pipelines. Analysts baybsit Redshift history. SREs babysit Aurora costs. Endb can't solve all these problems, but it attempts to be a jack-of-all-trades database that solves as many as it can — for as many people as it can.","breadcrumbs":"Appendix » What? » Who wants One Database?","id":"229","title":"Who wants One Database?"},"23":{"body":"To create a new document, you can use the standard SQL INSERT command. INSERT INTO products (product_no, name, price) VALUES (1, 'Tofu', 7.99); To create multiple new documents at once, delimit their value lists with commas: INSERT INTO products (product_no, name, price) VALUES (1, 'Butter', 5.99), (2, 'Margarine', 4.99); It is also possible to insert a document directly using an OBJECT literal . INSERT INTO products {product_no: 3, name: 'Tea', price: 3.99}; To insert multiple documents directly, delimit documents with commas: INSERT INTO products {name: 'Coffee', price: 3.99}, {name: 'Croissant', price: 2.99}; It is possible to insert the results of a query: INSERT INTO cheap_products SELECT * FROM products WHERE price < 4.00;","breadcrumbs":"SQL Reference » Data Manipulation » INSERT","id":"23","title":"INSERT"},"230":{"body":"After years of Computer Science research, it's also clear a sea change in database tech is due... right about now. (Give or take ten years. Our timing may be off.) Hellerstein and Stonebraker's What Goes Around Comes Around remains true, decade after decade, since it was published in 2004. As always, the relational data model is still king and SQL is still the lingua franca of databases. Together, they assimilate new rivals every decade or so. Endatabas tries to stand right at the center of this upcoming collapse of the data toolchain. If we, as an industry, can drop a decade's vestigial growth in favour of a tighter, simpler solution? Wonderful. But what if we could shed a half-century's vestiges? Perhaps event streams, relations, documents, graphs, temporal data, ETL and CDC can all live under one roof for many businesses. Let's see. We're not sure if we can make this work. But it's exciting to try. — One Database: Clean. Simple. Less. (Read more in Why Endatabas? )","breadcrumbs":"Appendix » What? » When is One Database possible?","id":"230","title":"When is One Database possible?"},"231":{"body":"(Read more in What is Endatabas? ) Why did we build Endatabas (aka Endb) at all? Isn't one of the many ( many ) existing databases good enough? Many incumbent databases serve their use cases and markets well. But the demands placed on databases are growing rapidly. These demands pull in multiple directions, all at once, and existing technology cannot support them without introducing enormous complexity. Metamorphosis is required. Endb takes good ideas and makes them easier to access, while reducing operational headache. It does not try to be flashy or unnecessarily revolutionary. Instead, it tries to be simple and familiar on the surface while providing a lot of new power under the covers. Let's talk about what that means in clear, concrete terms.","breadcrumbs":"Appendix » Why? » Why Endatabas?","id":"231","title":"Why Endatabas?"},"232":{"body":"The tagline \"SQL Document Database With Full History\" says a lot, but it doesn't say everything. Endatabas is, first and foremost, an immutable database . That's the Full History part. But storing all your data, forever, has clear implications. We consider these implications to be the pillars of Endatabas. In 3D geometry, the legs of a tripod are mutually supportive; as long as all three feet are in contact with the ground, the tripod will not wobble or collapse. So it is with the pillars. Each supports and implies the others. The pillars are as follows: Full History (requires: immutable data and erasure) Timeline (requires: time-traveling queries) Separation of Storage from Compute (requires: light and adaptive indexing) Documents (requires: schemaless tables, \"schema-per-row\", arbitrary joins) Analytics (requires: columnar storage and access) At the top of this five-dimensional structure is SQL, the lingua franca of database queries. We believe it is the right time to integrate these ideas. But first let's go back a few decades to see how we got here.","breadcrumbs":"Appendix » Why? » What is Endatabas, anyway?","id":"232","title":"What is Endatabas, anyway?"},"233":{"body":"None of the ideas in Endatabas are new. George Copeland's What if mass storage were free? asked, back in 1980, what an immutable database might look like. His prescient vision for a database with full history enjoys the clarity of a researcher at the beginning of the database era. People have occasionally asked of Endatabas, \"why bother retaining all history?\" But this is the wrong question. The real question is: \"why bother destroying data?\" Copeland's answers, \"The deletion concept was invented to reuse expensive computer storage.\" The software industry has grown so accustomed to the arbitrary deletion of historical data that we now take destroying data for granted. Mass storage is not free yet — but it is cheap. Copeland himself addresses \"a more realistic argument: if the cost of mass storage were low enough, then deletion would become undesirable.\" Any system that exploits the separation of storage and compute can enjoy these low costs. An immutable dataset and a timeline of changing states are two sides of the same coin. Previous states carry the innate property of time (whether defined by familiar wall clocks or versions or logical clocks). Jensen and Snodgrass have thoroughly researched time-related database queries. Much of their work was published in the 1990s and early 2000s. Storing time, querying across time, time as a value ... these challenging subjects eventually grew to form SQL:2011 . Most SQL databases have struggled to implement SQL:2011. Incorporating time as a core concept in mutable databases (those which support destructive updates and deletes) amplifies existing complexity. Time should simplify the database, not complicate it. Document databases have a more convoluted story. Attempts at \"schemaless\", semi-structured, document, and object databases stretch from Smalltalk in the 1980s to C++ in the 1990s to Java and graphs in the 2000s to JSON in the 2010s . Despite all this, the most successful semi-structured document store, as of 2023, is a Postgres database with JSON columns. Database users desire flexible storage and querying — but yesterday's weather says they desire SQL more. Can't we have both? SQL has four identities, four histories. There is an SQL of academia, born of Codd's relational algebra (1970) and Chamberlin/Boyce SEQUEL (1974) , grown over decades with research like Snodgrass/Jensen's TSQL2. Then there is the SQL of industry, the many-tentacled leviathan of IBM, Oracle, and Microsoft: the SQL sold to businesses and governments, ceaselessly bifurcated into new dialects with each version and implementation. Between these two rests the SQL of the ISO specification — unified across 11 published standards, from SQL-86 to SQL:2023, spanning thousands of pages, adhered to by no single database. [1] Last, there is colloquial SQL, the language one refers to by the question, \"do you know SQL?\" These four threads are intertwined across four decades, making it very difficult to clearly define what is meant by \"SQL\", even in very narrow contexts. Colloquial SQL is of greatest interest to us. This is the ubiquitous query language any new database must implement to succeed. Khoshafian and Copeland introduced the Decomposition Storage Model (DSM) in 1985. The four decades that followed saw any number of approaches to data analytics. Most of the time, however, these demanded expensive data acrobatics: data was piped, streamed, dumped, and copied into denormalized cubes and time-series databases. As humanity grew out of the batch processing of the 1980s into the always-online society of the 2020s, analytics data became another form of operational data and this pipeline was looped back to users and customers. Hybrid Transactional/Analytical Processing (HTAP) promises a simpler, natural successor to OLTP and OLAP systems. For many businesses, the transactional/analytical divide is as arbitrary as destroying data with every state change. Humanity will arbitrarily destroy data in 2026 because hard disks were expensive in 1986. Similarly, we will wastefully query data with multiple systems in 2026 because CPUs were slow in 1986.","breadcrumbs":"Appendix » Why? » History","id":"233","title":"History"},"234":{"body":"When you approach Endb from a distance, you won't see the pillars at first. You'll see the structure they support. This structure also binds the pillars together. The query language of a database is its glue. It is the user interface. It defines the user experience. It is at once a programming language, a dialogue, an envelope, a protocol. But a query engine is not divorced from its query language, and so the language choice also informs system design and behaviour. There are mundane reasons for choosing SQL. If asked \"do you know SQL?\" there's a high probability the answer is \"yes.\" SQL is the language of data science and third-party tools. If any sufficiently successful database has to provide SQL access anyway, one may as well start there. But this is not why we chose SQL. We believe SQL can be beautiful. As mentioned in History , we are primarily concerned with colloquial SQL. The other threads of SQL are relevant but Endb will never implement the entire SQL specification. Instead, the Endb SQL dialect unifies the pillars under one strongly-dynamically-typed umbrella, a variation of the SQLite dialect. SQLite's applications are quite different from those of Endatabas, so Endb SQL is not weakly-typed and Endb types are not a free-for-all. Instead, Endb internally adopts types from Apache Arrow , which it uses as a storage medium. When considering alternatives, there are no direct contenders. Cypher, Datalog, MongoDB query documents, and other schemaless query languages work well for one database implementation but lack both mindshare and standards. PartiQL, SQL++, and other NewSQL languages that depart from SQL suffer precisely because they are almost SQL. One can fantasize about designing a query language from scratch but it's very easy to get wrong and takes decades to build mindshare. SQL has been through this decades-long gauntlet. Just as PL/SQL and T-SQL differ, so will Endb SQL from other dialects. However, colloquial SQL is comparable to colloquial Hindi — at higher levels, it bifurcates into Urdu and Sanskrit but speakers of both lineages understand one another. Endb SQL will be familiar to users of other SQL dialects. With its long, rich history SQL not only has the necessary theoretical underpinnings but the battle scars of technology that lasts. It sits alongside POSIX, TCP/IP, LISP, C, and the QWERTY keyboard layout. It will see its centenary.","breadcrumbs":"Appendix » Why? » Why SQL?","id":"234","title":"Why SQL?"},"235":{"body":"Even if we ignore Copeland's dream of mass storage from 1980, it is easy to see why destroying data is harmful. To destroy data is to destroy facts — to lie about the truth of what happened. Few modern systems permit the total destruction of data for this obvious reason. Some choose to create audit tables: users_audits, sales_audits, and so on. Some choose to log anything and everything. \"It's on disk somewhere.\" It's not uncommon for companies to extract metrics from logs to create invoices and reports, turning a log file into a bespoke immutable database. Industries which take their data very seriously (banking, healthcare) already store immutable records. They just do so in a mutable database. Append-only tables are not new, but they're an order of magnitude easier to work with — for both users and operators — if the database is append-only from the ground up. These same industries will resist the destruction of data unless absolutely necessary, but they will bend to necessity. Erasure is concomitant with immutability — we cannot have one without the other. The existing designs of databases create serious problems for privacy. DELETE, when overloaded to mean both \"save disk space\" and \"explicitly remove this data\", becomes opaque. It does not leave any queryable record of the deletion. Removing data should keep tombstones so it's at least known that some data was removed.","breadcrumbs":"Appendix » Why? » Why Full History?","id":"235","title":"Why Full History?"},"236":{"body":"Keeping your data's entire history is the write-side of the equation. If you didn't care about getting this data back, you could just dump it into an unintelligible pile. But you not only want your data back, you want to query it in the easiest way possible. One very sensible way to see and query immutable data is along a timeline. Endb makes no assumptions about your desire to participate in this timeline. By default, everything is visible as-of-now but querying the past should feel effortless. -- without time travel:\nSELECT * FROM products;\n-- time travel to 2020:\nSELECT * FROM products FOR SYSTEM_TIME AS OF 2020-08-25T00:00:00;","breadcrumbs":"Appendix » Why? » Why a timeline?","id":"236","title":"Why a timeline?"},"237":{"body":"Separating storage from compute is an implementation detail. AWS customers don't choose Amazon Aurora because they're craving this separation. Decoupling storage from compute makes scale (both up and down) trivial. It also introduces the possibility of \"reducing network traffic, ... fast crash recovery, failovers to replicas without loss of data, and fault-tolerant, self-healing storage.\" This decoupling is concomitant with Light and Adaptive Indexing . It is undesirable to manually construct expensive indexes for unknown future schemas over (effectively) infinite data. Instead, we should let machine learning handle this job.","breadcrumbs":"Appendix » Why? » Why Separation of Storage and Compute?","id":"237","title":"Why Separation of Storage and Compute?"},"238":{"body":"It can be argued that \"why documents?\" is really multiple questions: why schemaless? why nested data? why dynamic SQL? First, the challenges. It is extremely difficult to force global schema onto every row in a table in an immutable world. Even if there were a simple mechanism in SQL to alter table schema only for certain durations (there isn't), the database user would still be burdened with querying based on a particular schema at a particular time in the history of the table. This complexity is compounded by the fact that static schemas have less and less meaning in a temporal world. Endb introduces SQL:2011 time-travel and period predicates . The difficulty, mentioned earlier, that other databases encounter when introducing SQL:2011 is twofold: dealing with \"time\" in a world where history can be violently rewritten and managing an unbending schema across time. Nested data is equally unnatural in incumbent databases. SQL:99, SQL:2016, SQL:2023 all offer some way of shoehorning nested data into flat tables. DynamoDB, Couchbase, and MongoDB are the most common document databases but they don't speak SQL. [2] Not only will no one ever decompose relational data into 6NF, it is unlikely we'll ever see a return to the classic BCNF of business entity-relationship diagrams. Nested data is here to stay. Foreign, embedded JSON (or XML) is little more than a band-aid. Nested data should be native to SQL queries. Second, the joys. Schema-per-row can be incredibly liberating. Not only does this feel more natural, it embraces the messy truth of the real world. Schema-on-write can be added later, when the business is ready to lock down what it knows about a domain. But many use cases demand flexible schemas. What if this week's project requires downloading huge amounts of semi-structured JSON pricing data from the APIs of competing online stores to compare them? Endb can handle this case out of the box. Most databases would require a great deal of manipulation first. Dynamic SQL is required to support schemaless, nested data — but it also brings its own joys. When dynamic SQL rests on top of a flexible data model which can ingest any data, it is capable of exploring nested data and easily constructing arbitrary joins users could normally only construct in a graph database.","breadcrumbs":"Appendix » Why? » Why documents?","id":"238","title":"Why documents?"},"239":{"body":"It is often the job of analytics databases to record and query all the data of a business, denormalized for speed. There will always be analytical jobs which require data to be transformed. But many businesses already allow data scientists, analysts, and even CEOs read-only access to an OLTP replica. HTAP is right on the horizon . Endb hopes to participate in that evolution by making all business data accessible to easy-to-produce, cheap, ephemeral read replicas.","breadcrumbs":"Appendix » Why? » Why \"One Database\"?","id":"239","title":"Why \"One Database\"?"},"24":{"body":"To update an existing row, you can use the standard SQL UPDATE command: UPDATE products SET price = 4.99 WHERE name = 'Coffee'; Set multiple columns by separating them with commads; UPDATE products SET price = 4.99, name = 'Kaapi' WHERE name = 'Coffee'; Because Endb is schemaless, each document (or row) has its own schema. As a result, you may want to remove a column from an individual row. You can do this with the UNSET operator: UPDATE products UNSET product_no WHERE name = 'Coffee';\nUPDATE products REMOVE product_no WHERE name = 'Coffee'; REMOVE is an alias for UNSET. It is possible to set and unset values in a single update. Unsetting a column which doesn't exist is not an error: UPDATE products SET price = 5.98 UNSET product_no WHERE name = 'Coffee';","breadcrumbs":"SQL Reference » Data Manipulation » UPDATE","id":"24","title":"UPDATE"},"240":{"body":"We cannot reconcile building and selling a product we would never buy ourselves.","breadcrumbs":"Appendix » Why? » Why Commercial Open Source?","id":"240","title":"Why Commercial Open Source?"},"241":{"body":"All of the pillars outlined above have their own strike-when-the-iron-is-hot moment. The SQLite we know today began to materialize in 2001. Amazon S3 was launched in 2006. MongoDB was first released in 2007. Immutable data and functional programming reached the mainstream in the 2010s. Datomic (arguably the first immutable OLTP database) was release in 2012. Amazon Aurora was released in 2015 and Google's AlloyDB in 2022. Apache Arrow saw its first release in 2016. Over the past decade, many financial firms built their own in-house temporal databases. SQL:2011, SQL:2016, and SQL:2023 were ratified in their respective eponymous years. HTAP hasn't quite happened yet. AI-driven indexes haven't quite happened yet. The moment for something like Endatabas is now... but it is a very long moment. Endatabas cannot be built in a Postgres-compatible fashion. Technically, it would be prohibitively expensive to build Endatabas from existing components. It's time for something new. The complete SQL specification is very difficult to implement in full, though Mimer likely comes closest to this goal . There is XQuery, of course. But most businesses today do not build their nested data storage on XQuery.","breadcrumbs":"Appendix » Why? » Why Now?","id":"241","title":"Why Now?"},"242":{"body":"","breadcrumbs":"Appendix » Architecture » Architecture","id":"242","title":"Architecture"},"243":{"body":"All records in Endatabas are immutable. Historical data is not lost when an UPDATE or DELETE statement is executed. You can think of endb as one giant log of transactions with fast queries made possible by adaptive indexing .","breadcrumbs":"Appendix » Architecture » Immutable","id":"243","title":"Immutable"},"244":{"body":"The only time data in Endatabas is truly deleted is with the ERASE statement. This is used for user safety and compliance with laws like GDPR.","breadcrumbs":"Appendix » Architecture » Erasure","id":"244","title":"Erasure"},"245":{"body":"Both the heart and \"UI\" of Endatabas is a dynamic SQL engine which natively understands strongly-typed, semi-structured rows (documents). Here is an example to illustrate what that means: INSERT INTO stores {brand: \"Alonzo's Analog Synthesizers\", addresses: [{city: \"New Jersey\", country: \"United States\", opened: 1929-09-01}, {city: \"Göttingen\", country: \"Germany\", opened: 1928-09-01}]}; -- recursive query of ISO dates from the nested document:\nSELECT addresses..opened FROM stores; Endb SQL bases its core SQL dialect on SQLite. It also draws inspiration from SQL:99, SQL:2011, SQL:2016, and SQL:2023. Read more in our bibliography .","breadcrumbs":"Appendix » Architecture » Dynamic SQL","id":"245","title":"Dynamic SQL"},"246":{"body":"Endatabas stores and processes data as columns. Endb's columnar storage is built on Apache Arrow . Endb SQL allows users to retrieve data as documents. The ultimate goal is for Endatabas to serve many (hybrid) purposes: day-to-day transactions and analytical jobs.","breadcrumbs":"Appendix » Architecture » Columnar: Hybrid Transactional Analytic Processing (HTAP)","id":"246","title":"Columnar: Hybrid Transactional Analytic Processing (HTAP)"},"247":{"body":"Queries are compiled to Common Lisp and use hash joins. Join ordering is done heuristically, by base table size. Correlated queries are memoized by building indexes in-memory during query execution.","breadcrumbs":"Appendix » Architecture » Query Execution","id":"247","title":"Query Execution"},"248":{"body":"More detailed information about the future of Endb can be found in the roadmap .","breadcrumbs":"Appendix » Architecture » Future","id":"248","title":"Future"},"249":{"body":"Endb does not yet support columnar data returned directly to the user.","breadcrumbs":"Appendix » Architecture » Columnar (OLAP) result sets","id":"249","title":"Columnar (OLAP) result sets"},"25":{"body":"Endb provides a PATCH operator, similar to the PATCH function . The PATCH operator is used in conjunction with UPDATE to set fields on a document (columns on a row) in a declarative fashion. UPDATE products PATCH {price: 1.98, product_no: products.product_no + 1000} WHERE price = 2.00; PATCH is based on RFC 7386: JSON Merge Patch .","breadcrumbs":"SQL Reference » Data Manipulation » UPDATE PATCH","id":"25","title":"UPDATE PATCH"},"250":{"body":"If you're not sure what this is, think Amazon Aurora, Google AlloyDB, and Neon. Compute nodes are the classic database (Postgres, MongoDB, etc.) — in an immutable world, these are just caches. Storage is elastic object or blob storage (S3, Azure Blobs, etc.). Endatabas is built to live in the clouds, alongside infinite disk. Although the groundwork for separating storage from compute exists in Endb today, elastic storage backends are not yet implemented.","breadcrumbs":"Appendix » Architecture » Cloud: Separation of Storage from Compute","id":"250","title":"Cloud: Separation of Storage from Compute"},"251":{"body":"For more information on light and adaptive indexing, you can watch Håkan's talk from 2022: \"Light and Adaptive Indexing for Immutable Databases\" Endb does not yet support adaptive indexing.","breadcrumbs":"Appendix » Architecture » Adaptive Indexing","id":"251","title":"Adaptive Indexing"},"252":{"body":"In the near-term (Q3 2023), we expect to solidify the Endatabas SQL dialect so early users can get a taste of what it feels like to use it. You can read our high-level roadmap on GitHub .","breadcrumbs":"Appendix » Roadmap » Roadmap","id":"252","title":"Roadmap"},"253":{"body":"All Endatabas code is Copyright Håkan Råberg and licensed GNU Affero General Public License v3.0 , unless otherwise specified. To contribute to Endatabas, please refer to CONTRIBUTING .","breadcrumbs":"Appendix » License » License","id":"253","title":"License"},"26":{"body":"The SET operator permits paths on its left-hand side. The behaviour of the form UPDATE
SET = is identical to that of the path_set function. UPDATE users SET $.addresses[0].city = 'Chicago' WHERE name = 'Steven';","breadcrumbs":"SQL Reference » Data Manipulation » UPDATE SET $path","id":"26","title":"UPDATE SET $path"},"27":{"body":"The UNSET (synonym: REMOVE) operator permits paths on its left-hand side. The behaviour of the form UPDATE
UNSET = is identical to that of the path_remove function. UPDATE users UNSET $.addresses[0].city WHERE name = 'Steven';","breadcrumbs":"SQL Reference » Data Manipulation » UPDATE UNSET $path","id":"27","title":"UPDATE UNSET $path"},"28":{"body":"To delete an existing row, use the standard SQL DELETE command. DELETE FROM products WHERE price = 5.98; You may delete all rows from a table by eliding the WHERE clause: DELETE FROM products; Note: In Endb, DELETE does not remove any data. It is always possible to view data prior to the DELETE with time queries . If you need to remove data for compliance (with laws such as GDPR or PIPEDA), use ERASE .","breadcrumbs":"SQL Reference » Data Manipulation » DELETE","id":"28","title":"DELETE"},"29":{"body":"Endb provides flexible upserts with the common ON CONFLICT clause. When the INSERT command detects a conflict, it will perform the instructions in the DO clause. The following command needs to be executed twice to see the upsert effect. INSERT INTO products {name: 'Pepper', price: 9.99} ON CONFLICT (name, price) DO UPDATE SET v = 2; To specify no operation on conflict, use DO NOTHING: INSERT INTO products {name: 'Pepper', price: 9.99} ON CONFLICT (name, price) DO NOTHING; To reference the document currently being inserted, the DO clause provides a statement-local relation named excluded. INSERT INTO products {name: 'Salt', price: 6};\nINSERT INTO products {name: 'Salt', price: 7} ON CONFLICT (name) DO UPDATE SET price = excluded.price; Similarly, the existing table is still available in the DO clause to provide further filtering: INSERT INTO products {product_no: 99, name: 'Cumin', price: 3.00, v: 5};\nINSERT INTO products {product_no: 99, name: 'Cumin', price: 5.00, v: 6} ON CONFLICT (product_no, name) DO UPDATE SET price = excluded.price, v = excluded.v WHERE products.v < 6;","breadcrumbs":"SQL Reference » Data Manipulation » ON CONFLICT (Upsert)","id":"29","title":"ON CONFLICT (Upsert)"},"3":{"body":"","breadcrumbs":"Tutorial » Quickstart » Quickstart","id":"3","title":"Quickstart"},"30":{"body":"ERASE completely removes documents (rows) from visibility to any queries. Once a document has been erased, it is no longer possible to query for it at all. ERASE FROM products WHERE name = 'Salt';","breadcrumbs":"SQL Reference » Data Manipulation » ERASE","id":"30","title":"ERASE"},"31":{"body":"Parameters to DML are documented under the HTTP API .","breadcrumbs":"SQL Reference » Data Manipulation » Parameters","id":"31","title":"Parameters"},"32":{"body":"Transactions in Endb are implicit. Run multiple DML statements in a single transaction by providing multiple statements (delimited by semicolons) to a single POST to the HTTP API .","breadcrumbs":"SQL Reference » Data Manipulation » Transactions","id":"32","title":"Transactions"},"33":{"body":"Endb SQL strives to empower the query author. Basic SQL queries should be familiar. Advanced SQL queries should be simple.","breadcrumbs":"SQL Reference » Queries » Queries","id":"33","title":"Queries"},"34":{"body":"The most common hand-written SQL query tends to be the easiest: SELECT * FROM products; Without a WHERE clause (discussed below) the entire table is returned. Because Endb is schemaless, * has a special meaning. Each document (row) in Endb carries with it its own schema. As a result, * refers to the widest possible set of columns, across all the rows returned. In many SQL dialects, columns are strictly ordered. Because Endb columns cannot have a strict order, * returns them in alphabetical order. You can select the widest set of columns for a specific table with
.*: SELECT p.* FROM products p JOIN coupons c ON p.price = c.price;","breadcrumbs":"SQL Reference » Queries » SELECT *","id":"34","title":"SELECT *"},"35":{"body":"In programmatic environments, it is almost always preferable to query for specific columns by name: SELECT product_no, price FROM products; Select a list of columns by delimiting them with commas. SELECT product_no, v, price, name FROM products; Select a column with spaces by delimiting it with backticks or square braces: SELECT products['product no'] FROM products;\nSELECT `product no` FROM products; NOTE: Whether or not your Endb client respects column ordering is dependent on the content type it uses in Accept Headers. It is worth reading over the Accept Header documentation, in this regard. Limit query results to distinct rows or expand to all rows with DISTINCT and ALL. SELECT DISTINCT name FROM products;\nSELECT ALL product_no FROM products p JOIN sales s ON p.name = s.name;","breadcrumbs":"SQL Reference » Queries » SELECT","id":"35","title":"SELECT"},"36":{"body":"","breadcrumbs":"SQL Reference » Queries » FROM","id":"36","title":"FROM"},"37":{"body":"For convenience, tables can be given aliases immediately following their name in the FROM clause. SELECT p.name FROM products p; The AS operator can also (optionally) be used to provide an alias for a table. SELECT p.name FROM products AS p; More usefully, it can give a temporary table name to an expression. The temporary table name can either have anonymous columns or named columns. (The VALUES keyword is explained in the following VALUES Lists section.) SELECT p.column1 FROM (VALUES ('Paprika', 4.77)) AS p;\nSELECT p.price FROM (VALUES ('Paprika', 4.77)) AS p(name, price);","breadcrumbs":"SQL Reference » Queries » Alias Tables","id":"37","title":"Alias Tables"},"38":{"body":"The AS keyword is also used to alias columns. This is useful when column names conflict in a join. (Joins are explained below.) If the same column is specified more than once, the last reference to that column name is the one which will be returned: SELECT c.price, p.price FROM products p JOIN coupons c ON p.name = c.name; If both columns are required, AS can be used to rename one or both of the columns: SELECT p.price AS regular_price, c.price FROM products p JOIN coupons c ON p.name = c.name;","breadcrumbs":"SQL Reference » Queries » Alias Columns","id":"38","title":"Alias Columns"},"39":{"body":"Because Endb is schemaless, documents (rows) can be joined on any fields (columns) which have equivalent values. INSERT INTO coupons {name: 'Salt', price: 3.0};\nSELECT * FROM products p JOIN coupons c ON p.name = c.name; LEFT JOIN, LEFT OUTER JOIN, INNER JOIN, and CROSS JOIN are all supported.","breadcrumbs":"SQL Reference » Queries » JOIN","id":"39","title":"JOIN"},"4":{"body":"mkdir -p endb_data\ndocker pull endatabas/endb\ndocker run --rm -p 3803:3803 -v endb_data:/app/endb_data docker.io/endatabas/endb See Installation for more ways to install and build endb.","breadcrumbs":"Tutorial » Quickstart » Install Endb","id":"4","title":"Install Endb"},"40":{"body":"The UNNEST function can be thought of as the inverse of ARRAY_AGG , although it offers more power than just unlinking elements. It takes an array or object and pulls its elements into separate rows. SELECT * FROM UNNEST([1.99, 2.99, 3.99]) AS products(price); It is possible to unnest multiple arrays. If the arrays do not have the same number of elements, the shorter array(s) will have those values filled with NULL: SELECT names.* FROM (VALUES (['Leslie', 'Edgar', 'fiver2'], ['Lamport', 'Codd'])) AS x(first, last), UNNEST(x.first, x.last) AS names(first, last); When unnesting an object, keys-value pairs will be returned as per object_entries . This behaviour is useful for manipulating collections: SELECT * FROM UNNEST({original_price: 1.99, sale_price: 1.50, coupon_price: 1.40}) AS prices(price);\n-- [{'price': ['sale_price', 1.5]},\n-- {'price': ['coupon_price', 1.4]},\n-- {'price': ['original_price', 1.99]}]","breadcrumbs":"SQL Reference » Queries » UNNEST","id":"40","title":"UNNEST"},"41":{"body":"UNNEST can be suffixed with WITH ORDINALITY to append an ordinal column to the results. SELECT * FROM UNNEST([1.99, 2.99, 3.99]) WITH ORDINALITY AS products(price, n);\n-- [{'n': 0, 'price': 1.99}, {'n': 1, 'price': 2.99}, {'n': 2, 'price': 3.99}] NOTE: Endb ordinals are zero-indexed.","breadcrumbs":"SQL Reference » Queries » WITH ORDINALITY","id":"41","title":"WITH ORDINALITY"},"42":{"body":"Rather than returning the entire table, documents (rows) can be filtered with a WHERE clause. SELECT * FROM products WHERE price > 4;","breadcrumbs":"SQL Reference » Queries » WHERE (Filtering)","id":"42","title":"WHERE (Filtering)"},"43":{"body":"More advanced filters are documented in Operators and Functions .","breadcrumbs":"SQL Reference » Queries » Advanced Filtering","id":"43","title":"Advanced Filtering"},"44":{"body":"Results from queries can be ordered with standard SQL ORDER BY. SELECT * FROM products ORDER BY price; By default, ordering is ascending. For descending order, suffix the ORDER BY clause with DESC: SELECT * FROM products ORDER BY price DESC; To force ascending order, use ASC: SELECT * FROM products ORDER BY price ASC; It is also possible to order by an expression: SELECT * FROM products ORDER BY LENGTH(name);\nSELECT * FROM products ORDER BY -price; In the example above, LENGTH is an example of a function. A complete list of functions can be found in the Functions documentation.","breadcrumbs":"SQL Reference » Queries » ORDER BY (Sorting Results)","id":"44","title":"ORDER BY (Sorting Results)"},"45":{"body":"GROUP BY accepts a list of columns and creates aggregated rows based on each of those columns, in order. Each aggregate is returned as a single row. Each column returned must either be a column specified in the GROUP BY clause or a column created with an aggregate function , such as SUM. SELECT name, price FROM products GROUP BY name, price;\nSELECT name, SUM(price) FROM products GROUP BY name;","breadcrumbs":"SQL Reference » Queries » GROUP BY","id":"45","title":"GROUP BY"},"46":{"body":"HAVING adds a search condition to an aggregate query. SELECT name, SUM(price) FROM products GROUP BY name HAVING LENGTH(name) > 4; It is most often used with GROUP BY (seen above), but it is also legal with other aggregates: SELECT SUM(products.price) FROM products HAVING SUM(products.price) = 13;","breadcrumbs":"SQL Reference » Queries » HAVING","id":"46","title":"HAVING"},"47":{"body":"LIMIT specifies the maximum number of rows to be returned by the query. SELECT * FROM products LIMIT 2; It always makes sense to control the order of returned rows so LIMIT always returns the same rows for the same query -- unless you don't care which rows are returned. SELECT * FROM products ORDER BY price ASC LIMIT 2; OFFSET allows queries to skip rows before returning a limited set. SELECT * FROM products ORDER BY price ASC LIMIT 2 OFFSET 2;","breadcrumbs":"SQL Reference » Queries » LIMIT","id":"47","title":"LIMIT"},"48":{"body":"The VALUES keyword is used to create a static table of documents (rows). Each row is denoted by a pair of parentheses. All rows must have Union Compatibility which, for Endb, means they have the same number of columns. VALUES (1, 'Salt'), (2, 'Pepper'), (3, 'Vinegar'); Endb assigns anonymous columns the names column1, column2, etc. Columns can instead be given names with a table alias : SELECT * FROM (VALUES (1, 'Salt'), (2, 'Pepper'), (3, 'Vinegar')) AS t (product_no, name);","breadcrumbs":"SQL Reference » Queries » VALUES Lists","id":"48","title":"VALUES Lists"},"49":{"body":"The OBJECTS keyword is used to create a static table comprised of object literals, each representing a document (row). Each row is directly denoted by an object literal. OBJECTS lists do not require Union Compatibility , so jagged lists are permitted. OBJECTS {product_no: 1, name: 'Salt'}, {product_no: 2, name: 'Pepper', price: 3.99};\nSELECT * FROM (OBJECTS {product_no: 1, name: 'Salt'}, {product_no: 2, name: 'Pepper'}) as t;","breadcrumbs":"SQL Reference » Queries » OBJECTS Lists","id":"49","title":"OBJECTS Lists"},"5":{"body":"curl -d \"SELECT 'Hello World';\" -H \"Content-Type: application/sql\" -X POST http://localhost:3803/sql","breadcrumbs":"Tutorial » Quickstart » Run your first query","id":"5","title":"Run your first query"},"50":{"body":"The set operations union, intersection, and difference are available to the results of two queries.","breadcrumbs":"SQL Reference » Queries » Set Operations: UNION, INTERSECT, EXCEPT","id":"50","title":"Set Operations: UNION, INTERSECT, EXCEPT"},"51":{"body":"Append the results of one query to another. Duplicate rows are removed. SELECT * FROM products UNION SELECT * FROM new_products; To keep duplicate rows, use UNION ALL: SELECT * FROM products UNION ALL SELECT * FROM new_products;","breadcrumbs":"SQL Reference » Queries » UNION","id":"51","title":"UNION"},"52":{"body":"The intersection of two queries returns results which are found in both. SELECT * FROM products INTERSECT SELECT * FROM new_products;","breadcrumbs":"SQL Reference » Queries » INTERSECT","id":"52","title":"INTERSECT"},"53":{"body":"The difference of two queries returns only results from the first query which are not found in the second. Another way of thinking about this is that results of the second query are removed from the first. SELECT * FROM products EXCEPT SELECT * FROM ignored_products;","breadcrumbs":"SQL Reference » Queries » EXCEPT","id":"53","title":"EXCEPT"},"54":{"body":"\"Union Compatibility\" refers to the ability of two queries to be used in a union, intersection, or difference. Because Endb is dynamically-typed, the only constraint on union compatibility is the number of columns returned. In general, it only makes sense to use set operations on two queries which return either: (1) explicit columns, so order and naming are respected or (2) columns with the same names, so they are guaranteed to return in order, in the case of * queries. When applying set operations to * queries, keep in mind that the widest column set (across the entire history of the table) will be returned. If the queries return a different number of columns, set operations will result in an error: -> SELECT * FROM products UNION SELECT * FROM new_products;\n400 Bad Request\nNumber of UNION left columns: 3 does not match right columns: 2","breadcrumbs":"SQL Reference » Queries » Union-Compatibility","id":"54","title":"Union-Compatibility"},"55":{"body":"The WITH keyword is used to create Common Table Expressions , or CTEs. CTEs act like temporary tables or views within the context of a query or DML statement . CTEs are used in place of a sub-select to simplify the appearance of a query. WITH clauses take the form WITH AS (). WITH top_margin_products AS (SELECT product_no FROM products WHERE (price - cost) > 5.00)\nSELECT name FROM products\nWHERE product_no IN (SELECT product_no FROM top_margin_products);","breadcrumbs":"SQL Reference » Queries » WITH (Common Table Expressions)","id":"55","title":"WITH (Common Table Expressions)"},"56":{"body":"The RECURSIVE keyword can be added to WITH to create recursive CTEs which can refer to themselves. Recursive CTEs will always have the form UNION or UNION ALL . Here is a naive example, demonstrating the recursive construction of a Fibonacci Sequence: WITH RECURSIVE fib(previous, current) AS ( VALUES (0, 1) UNION ALL SELECT fib.current, fib.previous + fib.current FROM fib WHERE fib.previous + fib.current < 5000\n)\nSELECT * FROM fib; The most beneficial uses for WITH RECURSIVE are walking hierarchical and graph-shaped data sets -- capabilities ordinary SQL lacks. However, Endb recursive queries are also capable of solving Sudoku puzzles and constructing fractals, as seen in the test suite . (Credit goes to SQLite's delightful Outlandish Recursive Query Examples .)","breadcrumbs":"SQL Reference » Queries » WITH RECURSIVE","id":"56","title":"WITH RECURSIVE"},"57":{"body":"Repeatable reads are achieved in Endb by creating savepoints , which queries can return to later. When returning to a savepoint in the future, queries will return results according to the state of the database when the savepoint was captured. By default, savepoints have a 60-second lifespan, after which they expire. Use of a savepoint during its lifespan will renew its lease, allowing it to be used for another 60 seconds. Savepoints can be forcibly expired with RELEASE. Attempting to use a savepoint that has been expired or released will return No active savepoint: .","breadcrumbs":"SQL Reference » Queries » Repeatable Reads: SAVEPOINT, ROLLBACK, RELEASE","id":"57","title":"Repeatable Reads: SAVEPOINT, ROLLBACK, RELEASE"},"58":{"body":"Other SQL dialects have more transaction-specific semantics for SAVEPOINT, ROLLBACK, and RELEASE. Because this difference in behaviour may be confusing to users familiar with other databases, we provide the example below. The result of the final query returns the first two dungeons, which were inserted prior to the savepoint, but not \"Tower of Hera\". INSERT INTO dungeons {name: 'Eastern Palace'};\nINSERT INTO dungeons {name: 'Desert Palace'};\nSAVEPOINT desert_palace;\nINSERT INTO dungeons {name: 'Tower of Hera'};\nROLLBACK TO desert_palace; SELECT * FROM dungeons; NOTE: The ROLLBACK and SELECT above must be executed together, in the same transaction. (Normally this will mean executing both statements in a single HTTP request.)","breadcrumbs":"SQL Reference » Queries » Minimal Example","id":"58","title":"Minimal Example"},"59":{"body":"The SAVEPOINT operator captures a new savepoint at the time it executes. Savepoints can be named or anonymous. Anonymous savepoints are named with a UUID. The name of the savepoint is returned as an attribute named result. SAVEPOINT desert_palace;\n-- [{'result': 'desert_palace'}]\nSAVEPOINT;\n-- [{'result': '0b12de43-1c92-4d92-ab7c-51c5a5129074'}]","breadcrumbs":"SQL Reference » Queries » SAVEPOINT","id":"59","title":"SAVEPOINT"},"6":{"body":"Endb is still in early alpha. While in alpha, new versions are not guaranteed to have binary-compatible storage with previous versions. We encourage you to experiment with Endb but please do not use it in production until a General Availability release.","breadcrumbs":"Tutorial » Quickstart » Warning: Early Alpha","id":"6","title":"Warning: Early Alpha"},"60":{"body":"Inside the scope of a transaction (normally a single HTTP request), ROLLBACK is used to return to a savepoint. ROLLBACK TO returns to a named savepoint (by name) or an anonymous savepoint (by string UUID). When used without a savepoint name, ROLLBACK returns to the last anonymous savepoint. Queries executed inside such a transaction return results according to the state of the database when the savepoint was created. The use of ROLLBACK renews the lease of the associated savepoint. ROLLBACK TO desert_palace; SELECT * FROM dungeons;\nROLLBACK TO 'eab07765-de6f-4f74-8052-838dd29ee8e7'; SELECT * FROM dungeons;\nROLLBACK; SELECT * FROM dungeons;","breadcrumbs":"SQL Reference » Queries » ROLLBACK","id":"60","title":"ROLLBACK"},"61":{"body":"The RELEASE keyword expires a savepoint so it can no longer be used. Anonymous savepoints can be released by string UUID. RELEASE desert_palace;\nRELEASE 'f7c314dd-47b9-4c85-9502-b8e35c82b935';","breadcrumbs":"SQL Reference » Queries » RELEASE","id":"61","title":"RELEASE"},"62":{"body":"","breadcrumbs":"SQL Reference » SQL Data Types » SQL Data Types","id":"62","title":"SQL Data Types"},"63":{"body":"Null serves a variety of purposes in Endb. Explicit: You can provide an explicit NULL value \"Unknown\": As with any SQL, you will receive a null when 3-Valued Logic cannot determine if a statement is true or false \"Missing\": Jagged rows will return NULL for columns projected for a document which does not contain them","breadcrumbs":"SQL Reference » SQL Data Types » NULL","id":"63","title":"NULL"},"64":{"body":"Endb accepts unbounded, variable-length strings with either single or double quotes. CHAR and VARCHAR are synonyms for TEXT. INSERT INTO users (name, title) VALUES ('River', \"Prodigy\"); When casting using the CHAR synonym, an optional integer argument indicates the desired length of the resulting string, padded with spaces: SELECT CAST(123 AS CHAR(10));\n-- [{'column1': '123 '}]","breadcrumbs":"SQL Reference » SQL Data Types » TEXT (CHAR, VARCHAR)","id":"64","title":"TEXT (CHAR, VARCHAR)"},"65":{"body":"Boolean values can be TRUE, FALSE, or NULL.","breadcrumbs":"SQL Reference » SQL Data Types » BOOLEAN","id":"65","title":"BOOLEAN"},"66":{"body":"64-bit integer capable of auto-promotion to 128-bit integer.","breadcrumbs":"SQL Reference » SQL Data Types » INTEGER (BIGINT)","id":"66","title":"INTEGER (BIGINT)"},"67":{"body":"A 64-bit IEEE 754 floating point number, or double.","breadcrumbs":"SQL Reference » SQL Data Types » REAL (DOUBLE)","id":"67","title":"REAL (DOUBLE)"},"68":{"body":"Timestamps can be represented as either SQL timestamps, according to the SQL Specification, or ISO timestamps. The following are legal timestamp literals: 2007-01-01T00:00:00 2007-01-01T00:00:00.123Z 2007-01-01T00:00:00.000000Z TIMESTAMP '2007-01-01 00:00:00' TIMESTAMP '2007-01-01 00:00:00.000000Z'","breadcrumbs":"SQL Reference » SQL Data Types » TIMESTAMP","id":"68","title":"TIMESTAMP"},"69":{"body":"Dates can be represented as either SQL dates, according to the SQL Specification, or ISO dates. The following are legal date literals: 2007-01-01 DATE '2007-01-01'","breadcrumbs":"SQL Reference » SQL Data Types » DATE","id":"69","title":"DATE"},"7":{"body":"You can send SQL statements to endb over HTTP. Any HTTP client will do.","breadcrumbs":"Tutorial » Try It! » Try It!","id":"7","title":"Try It!"},"70":{"body":"Times can be represented as either SQL times, according to the SQL Specification, or ISO times. The following are legal time literals: 23:59:12 23:59:12.12345 TIME '23:59:12' TIME '23:59:12.12345'","breadcrumbs":"SQL Reference » SQL Data Types » TIME","id":"70","title":"TIME"},"71":{"body":"An interval (or duration ) is created whenever two times are subtracted. SELECT 2001-01-02 - 2001-01-01; Interval literals can be constructed with ISO 8601 syntax : PT12H30M5S P1Y2M10DT2H30M This is equivalent to the same ISO 8601 syntax provided as a string to the DURATION constructor: DURATION('PT12H30M5S') DURATION('P1Y2M10DT2H30M') Interval literals can also be constructed with the classic SQL intervals DSL: INTERVAL '1-2' YEAR TO MONTH INTERVAL '0 12:34:56.789' DAY TO SECOND","breadcrumbs":"SQL Reference » SQL Data Types » INTERVAL (DURATION)","id":"71","title":"INTERVAL (DURATION)"},"72":{"body":"Binary Large Objects can be encoded as hexidecimal literals or cast from strings. x'DEADBEEF' CAST(\"hello\" AS BLOB)","breadcrumbs":"SQL Reference » SQL Data Types » BLOB (VARBINARY)","id":"72","title":"BLOB (VARBINARY)"},"73":{"body":"Arrays can be created with array literals similar to JSON. [\"one\", \"two\", \"three\"] Alternatively, arrays can also be created using a literal syntax similar to that in the SQL Specification or a constructor function. ARRAY [\"one\", \"two\", \"three\"] ARRAY(\"one\", \"two\", \"three\") Array literals can contain the spread operator SELECT [1, 2, ...[3, 4], 5];\n-- [{'column1': [1, 2, 3, 4, 5]}] Array equality is tested lexicographically .","breadcrumbs":"SQL Reference » SQL Data Types » ARRAY","id":"73","title":"ARRAY"},"74":{"body":"Objects (which can also be thought of as documents, or rows) can be created with object literals enclosed in curly braces, similar to JSON. Keys in object literals can be quoted or unquoted. {name: \"Hanna\", birthday: 1982-12-31} {'name': \"Hanna\", 'birthday': 1982-12-31} Alternatively, objects can be created using either an OBJECT constructor keyword, similar to that in the SQL Specification. OBJECT(name: 'Hanna', birthday: 1982-12-31) Object literals can contain spreads , computed fields , shorthands , and row literals . SELECT { a: 1, ...[2, 3] };\n-- [{'column1': {'0': 2, '1': 3, 'a': 1}}]\nSELECT { foo: 2, ['foo' || 2]: 5 };\n-- [{'column1': {'foo': 2, 'foo2': 5}}]\nSELECT {p.name, c.discounted} FROM products p JOIN coupons c ON p.name = c.name;\n-- [{'column1': {'discounted': 2.99, 'name': 'Salt'}}]\nSELECT {product: {p.*}, discounted: c.discounted} FROM products p JOIN coupons c ON p.name = c.name;\n-- [{'column1': {'discounted': 2.99, 'product': {'name': 'Salt', 'price': 5.99}}}] Object equality is tested by comparing each key-value pair as an array.","breadcrumbs":"SQL Reference » SQL Data Types » OBJECT","id":"74","title":"OBJECT"},"75":{"body":"","breadcrumbs":"SQL Reference » SQL Data Types » Dynamic Literals","id":"75","title":"Dynamic Literals"},"76":{"body":"It is possible return an entire document (row) as a single literal value. The syntax is akin to Postgres ROW literals . Unlike table.*, which pads non-existent columns with NULL, a row literal returns exactly the schema specified for each individual row. { table.* } Example usage: SELECT { products.* } FROM products; As a shorthand, a table's name may be used in the SELECT clause to return entire rows as documents: -> SELECT users FROM users;\n-- [{'users': {'email': 'patrick@oracle.com', 'name': 'Patrick'}},\n-- {'users': {'email': 'preethi@shopify.ca', 'name': 'Preethi'}}] NOTE: When a table contains a column of the same name, the column takes precedence and a single column is returned, as usual: -> SELECT status FROM status;\n-- [{'status': 'error'}, {'status': 'ok'}]","breadcrumbs":"SQL Reference » SQL Data Types » Row Literals","id":"76","title":"Row Literals"},"77":{"body":"The Spread Operator (..., sometimes known as \"splat\") can be used to directly flatten/unnest one collection (an array, object, or row literal) into another. Strings are treated as character collections. SELECT [1, 2, ...[3, 4], 5];\n-- [{'column1': [1, 2, 3, 4, 5]}] SELECT [1, 2, ...\"foo\", 5];\n-- [{'column1': [1, 2, 'f', 'o', 'o', 5]}] If an array is spread into an object, its ordinals will be used as properties: SELECT { a: 1, ...{b: 2} };\n-- [{'column1': {'a': 1, 'b': 2}}] SELECT { a: 1, ...[2, 3] };\n-- [{'column1': {'0': 2, '1': 3, 'a': 1}}]","breadcrumbs":"SQL Reference » SQL Data Types » Spread","id":"77","title":"Spread"},"78":{"body":"In the key/property position, square brackets are used to construct computed fields in object literals . Computed fields are implicitly cast to string. SELECT { foo: 2, [2 + 2]: 5 };\n-- [{'column1': {'4': 5, 'foo': 2}}]\nSELECT { foo: 2, ['foo' || 2]: 5 };\n-- [{'column1': {'foo': 2, 'foo2': 5}}]","breadcrumbs":"SQL Reference » SQL Data Types » Computed Fields","id":"78","title":"Computed Fields"},"79":{"body":"Column names can be referred to in place of key-value pairs in object literals . SELECT {p.name, c.discounted} FROM products p JOIN coupons c ON p.name = c.name;\n-- [{'column1': {'discounted': 2.99, 'name': 'Salt'}}]","breadcrumbs":"SQL Reference » SQL Data Types » Shorthands","id":"79","title":"Shorthands"},"8":{"body":"Our first couple examples will use curl , which you probably already have installed. curl -d \"INSERT INTO users (name) VALUES ('Tianyu')\" -H \"Content-Type: application/sql\" -X POST http://localhost:3803/sql\ncurl -d \"SELECT * FROM users\" -H \"Content-Type: application/sql\" -X POST http://localhost:3803/sql Read more in the full HTTP API docs .","breadcrumbs":"Tutorial » Try It! » curl","id":"8","title":"curl"},"80":{"body":"Endb date/time data types currently only support times encoded as UTC.","breadcrumbs":"SQL Reference » SQL Data Types » Note on timezones","id":"80","title":"Note on timezones"},"81":{"body":"Operations performed on scalars will attempt to widen those scalars for the purpose of the operation, if reasonable. -> select 2.0 = 2;\n[{'column1': True}] This widening includes joins on scalars, but not collections (ARRAY or OBJECT): -> INSERT INTO zig {at: 2023-12-21, val: 2}\n[{'result': 1}]\n-> INSERT INTO zag {at: 2023-12-21T00:00:00, val: 2.0}\n[{'result': 1}]\n-> SELECT * FROM zig i JOIN zag a ON i.at = a.at;\n[{'at': datetime.datetime(2023, 12, 21, 0, 0, tzinfo=datetime.timezone.utc), 'val': 2.0}]\n-> SELECT * FROM zig i JOIN zag a ON i.val = a.val;\n[{'at': datetime.datetime(2023, 12, 21, 0, 0, tzinfo=datetime.timezone.utc), 'val': 2.0}]","breadcrumbs":"SQL Reference » SQL Data Types » Note on type widening","id":"81","title":"Note on type widening"},"82":{"body":"","breadcrumbs":"SQL Reference » Operators » Operators","id":"82","title":"Operators"},"83":{"body":"Two values can be compared using standard SQL comparison operators: =, == (equals) > (greater than) < (less than) >= (greater than or equal to) <= (less than or equal to) <>, != (not equal to) SELECT * FROM products WHERE NOT name = 'Coffee';\nSELECT * FROM products WHERE name = 'Coffee' AND name <> 'Kaapi';\nSELECT * FROM products WHERE name > 'Cake' AND price >= 5.00;","breadcrumbs":"SQL Reference » Operators » Comparison","id":"83","title":"Comparison"},"84":{"body":"BETWEEN returns TRUE when a value is greater-than-or-equal-to the first limit and less-than-or-equal-to the second. It has the form BETWEEN x AND y. It can be negated with the form NOT BETWEEN x AND y. SELECT * FROM products WHERE price BETWEEN 2.00 AND 4.00;\nSELECT * FROM products WHERE price NOT BETWEEN 2.00 AND 4.00; NOTE: BETWEEN can also be used with System Time .","breadcrumbs":"SQL Reference » Operators » BETWEEN","id":"84","title":"BETWEEN"},"85":{"body":"WHERE clauses can be modified and combined with standard SQL boolean operators: IS and IS NOT behave like = (==) and <> (!=) , respectively. They are usually used to augment equality checks to test for NULL, which is the third boolean value, representing \"unknown\". When both sides of IS evaluate to NULL it returns TRUE. When only one side of IS NOT evaluates to NULL it returns TRUE, When only one side of IS evaluates to NUll it returns FALSE. When both sides of IS NOT evaluates to NULL it returns FALSE. SELECT * FROM products WHERE product_no IS NULL;\nSELECT * FROM products WHERE product_no IS NOT NULL;\nSELECT * FROM products WHERE product_no IS 379; NOT can be prefixed to any clause to negate it: SELECT * FROM products WHERE NOT (name = 'Coffee'); AND returns true if two clauses both return true: SELECT * FROM products WHERE name = 'Coffee' AND price > 2.99; OR returns true if either of two clauses return true: SELECT * FROM products WHERE name = 'Coffee' OR name = 'Kaapi';","breadcrumbs":"SQL Reference » Operators » Boolean Operators","id":"85","title":"Boolean Operators"},"86":{"body":"Standard SQL mathemetical operators are available to any two numeric values: + (addition) - (subtraction) * (multiplication) / (division) % (modulo; integer remainder of division) << (left bit shift) >> (right bit shift) +NUMBER (unary plus) -NUMBER (unary minus) SELECT 1 + 3.555;\nSELECT 1 - 3.555;\nSELECT 2 * 3.555;\nSELECT 2 / 3.555;\nSELECT 2 % 3.555;\nSELECT 62 << 2;\nSELECT 62 >> 2;\nSELECT +128.5;\nSELECT -128.5; NOTE: Mathematical functions are documented under Functions .","breadcrumbs":"SQL Reference » Operators » Math","id":"86","title":"Math"},"87":{"body":"Standard SQL bitwise manipulation operators are available to any two values. & (bitwise and) | (bitwise or) The bitwise not operator is also available to a single value: ~ (bitwise not) SELECT 1 & 2;\nSELECT 1 | 2;\nSELECT ~1;","breadcrumbs":"SQL Reference » Operators » Bitwise Operators","id":"87","title":"Bitwise Operators"},"88":{"body":"LIKE is the operator equivalent of the LIKE function . LIKE returns TRUE if a string matches the supplied LIKE pattern, as defined below: A pattern can be a string literal. It can also contain underscores (_) and/or percentage symbols (%). An underscore matches exactly one character. A percentage symbol matches zero or more characters. Backslash escapes the following character to make it a literal. Use ESCAPE to override the default backslash escape character. SELECT * FROM products WHERE name LIKE 'Tofu';\nSELECT * FROM products WHERE name LIKE 'Tof_';\nSELECT * FROM products WHERE name LIKE '%of%';\nSELECT * FROM products WHERE name LIKE '\\%of\\%';\nSELECT * FROM products WHERE name LIKE 'X%ofX%' ESCAPE 'X'; NOT LIKE is used to invert the results of the match. SELECT * FROM products WHERE name NOT LIKE '%of%'; NOTE: Endb LIKE is case-sensitive.","breadcrumbs":"SQL Reference » Operators » LIKE","id":"88","title":"LIKE"},"89":{"body":"REGEXP returns TRUE if a string matches the supplied regular expression. REGEXP may be prefixed with NOT. SELECT * FROM products WHERE name REGEXP '.*ee|.*ea';\nSELECT * FROM products WHERE name NOT REGEXP '.*[fst]+.*';","breadcrumbs":"SQL Reference » Operators » REGEXP","id":"89","title":"REGEXP"},"9":{"body":"Ultimately, Endb will ship with permissively-licensed client libraries for all major languages. For now, we have provided some example code you can try: https://github.com/endatabas/endb/tree/main/examples","breadcrumbs":"Tutorial » Try It! » Example Libraries","id":"9","title":"Example Libraries"},"90":{"body":"GLOB returns TRUE if a string matches the supplied UNIX glob. GLOB may be prefixed with NOT. SELECT * FROM products WHERE name GLOB '*of*';\nSELECT * FROM avatars WHERE filename NOT GLOB '/opt/local/avatars/*/*.png'; NOTE: GLOB is case-sensitive.","breadcrumbs":"SQL Reference » Operators » GLOB","id":"90","title":"GLOB"},"91":{"body":"MATCH returns TRUE if the value on the left contains the value on the right, at the top level. Note that a top-level array to the right of the MATCH refers to a set of values that all need to match, not a literal array. The following expressions return TRUE: SELECT 'foo' MATCH 'foo';\nSELECT [1, 2, 3] MATCH [3, 1];\nSELECT {user: 'foo', age: 42} MATCH {age: 42};\nSELECT {a: [1, 2, {c: 3, x: 4}], c: 'b'} MATCH {a: [{x: 4}, 1]}; The following expressions return FALSE: SELECT [1, 2, [1, 3]] MATCH [1, 3];\nSELECT {foo: {bar: 'baz'}} MATCH {bar: 'baz'};\nSELECT {a: [1, 2, {c: 3, x: 4}], c: 'b'} MATCH {a: [{x: 4}, 3]}; NOTE: The @> operator is a synonym for MATCH. It is provided as a convenience for users accustomed to the equivalent JSON Containment Operator in Postgres .","breadcrumbs":"SQL Reference » Operators » MATCH (Containment)","id":"91","title":"MATCH (Containment)"},"92":{"body":"SOME is a synonym for ANY. ANY qualifies a subquery by comparing a single column or literal value with the result of that subquery. ANY is used in the form ANY (). It returns true if the subquery returns a one or more values for which the operator is true. The operator must return a boolean and the subquery must return a single column. SELECT 1500 < SOME (SELECT price FROM products);","breadcrumbs":"SQL Reference » Operators » ANY, SOME","id":"92","title":"ANY, SOME"},"93":{"body":"ALL qualifies a subquery by comparing a single column or literal value with the result of that subquery. ALL is used in the form ALL (). It returns true only if all values returned by the subquery are true for the operator provided. The operator must return a boolean and the subquery must return a single column. SELECT \"ok\" = ALL (SELECT status_code FROM statuses);","breadcrumbs":"SQL Reference » Operators » ALL","id":"93","title":"ALL"},"94":{"body":"EXISTS returns TRUE if the subquery which follows it returns at least one row. SELECT name FROM products WHERE EXISTS (SELECT 1 FROM coupons WHERE name = products.name);","breadcrumbs":"SQL Reference » Operators » EXISTS","id":"94","title":"EXISTS"},"95":{"body":"The standard SQL IN clause can be used to test lists and subqueries for containment of a value. SELECT * FROM products WHERE price IN (5.00, 5.99);\nSELECT * FROM products WHERE price IN (SELECT price FROM coupons); NOTE: Use MATCH to test for containment of a value in an array.","breadcrumbs":"SQL Reference » Operators » IN","id":"95","title":"IN"},"96":{"body":"The standard SQL NOT IN clause can be used to test lists and subqueries for absence of a value. SELECT * FROM products WHERE price NOT IN (5.00, 5.99);\nSELECT * FROM products WHERE price NOT IN (SELECT price FROM coupons); NOTE: Use MATCH to test for absence of a value in an array.","breadcrumbs":"SQL Reference » Operators » NOT IN","id":"96","title":"NOT IN"},"97":{"body":"The || operator concatenates two strings or arrays supplied as arguments. When concatenating to an array element: other elements, arrays, and blobs are accepted as the second argument. When concatenating to an array: arrays, blobs, and array elements are accepted as the second argument. Elements other than strings are cast to strings when concatenated with each other. Multiple operators can be chained together. SELECT \"Hello\" || \"World\";\nSELECT [1, 2, 3] || [4, 5, 6];\nSELECT 1 || 2;\nSELECT \"Hello\" || [\"World\"];\nSELECT [\"Hello\"] || \"World\";\nSELECT \"Hello\" || \"World\" || \"And\" || \"Friends\"; The Concatenation Operator is equivalent to the CONCAT function .","breadcrumbs":"SQL Reference » Operators » || (Concatenation)","id":"97","title":"|| (Concatenation)"},"98":{"body":"","breadcrumbs":"SQL Reference » Functions » Functions","id":"98","title":"Functions"},"99":{"body":"","breadcrumbs":"SQL Reference » Functions » String Functions","id":"99","title":"String Functions"}},"length":254,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"0":{":":{"0":{"0":{":":{"0":{"0":{".":{"0":{"0":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"z":{"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":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":16,"docs":{"122":{"tf":2.0},"123":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"137":{"tf":1.0},"161":{"tf":2.23606797749979},"162":{"tf":2.23606797749979},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"225":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"68":{"tf":2.6457513110645907},"69":{"tf":2.0},"71":{"tf":1.7320508075688772}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{".":{"0":{"0":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"3":{"df":0,"docs":{},"z":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"137":{"tf":1.0},"224":{"tf":1.0},"68":{"tf":1.0}},"z":{"df":5,"docs":{"123":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":3,"docs":{"161":{"tf":1.0},"162":{"tf":1.0},"71":{"tf":1.0}}},"3":{":":{"0":{"4":{":":{"0":{"5":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"162":{"tf":1.0},"163":{"tf":1.0}}},"4":{"df":9,"docs":{"161":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}}},"5":{"df":4,"docs":{"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"164":{"tf":1.0}}},"7":{"df":5,"docs":{"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0}}},"8":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"156":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"236":{"tf":1.0}}},"9":{"df":1,"docs":{"245":{"tf":1.4142135623730951}},"t":{"2":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":3,"docs":{"204":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}}}},"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":{"1":{"2":{"d":{"df":0,"docs":{},"e":{"4":{"3":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"105":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"41":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":2.0}}},"1":{",":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":6,"docs":{"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0}}}}}}}},"2":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"4":{"0":{"df":3,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"40":{"tf":1.0}}},"df":1,"docs":{"40":{"tf":1.0}}},"5":{"0":{"df":3,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"40":{"tf":1.0}}},"df":1,"docs":{"40":{"tf":1.0}}},"9":{"8":{"df":1,"docs":{"25":{"tf":1.0}}},"9":{"df":4,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"25":{"tf":1.0}}},"df":1,"docs":{"117":{"tf":1.0}}},"df":1,"docs":{"101":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"229":{"tf":1.0}}}}},"1":{"df":1,"docs":{"233":{"tf":1.0}}},"2":{"3":{"df":5,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"190":{"tf":1.0},"64":{"tf":1.0}}},"8":{".":{"5":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"66":{"tf":1.0}}},":":{"3":{"4":{":":{"5":{"6":{".":{"7":{"8":{"9":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"74":{"tf":1.7320508075688772},"81":{"tf":2.0}}},"3":{"df":1,"docs":{"46":{"tf":1.0}}},"5":{"0":{"0":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":0,"docs":{},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"9":{"2":{"8":{"df":1,"docs":{"245":{"tf":1.0}}},"9":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":1,"docs":{"233":{"tf":1.0}}},"4":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"df":2,"docs":{"233":{"tf":1.7320508075688772},"235":{"tf":1.0}}},"2":{"df":1,"docs":{"74":{"tf":1.7320508075688772}}},"5":{"df":1,"docs":{"233":{"tf":1.0}}},"6":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"0":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"9":{"2":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":29,"docs":{"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"132":{"tf":1.0},"140":{"tf":1.0},"145":{"tf":1.0},"168":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":2.23606797749979},"179":{"tf":1.4142135623730951},"201":{"tf":1.0},"205":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"77":{"tf":3.0},"81":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"91":{"tf":2.8284271247461903},"94":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"2":{",":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}},"'":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"'":{"2":{"0":{"2":{"3":{"df":5,"docs":{"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"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":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"0":{"df":2,"docs":{"25":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":1,"docs":{"81":{"tf":2.0}}},"9":{"9":{"df":7,"docs":{"217":{"tf":1.0},"23":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"1":{"df":8,"docs":{"161":{"tf":2.0},"162":{"tf":2.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"241":{"tf":1.0},"71":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"230":{"tf":1.0}}},"6":{"df":1,"docs":{"241":{"tf":1.0}}},"7":{"df":4,"docs":{"224":{"tf":1.4142135623730951},"241":{"tf":1.0},"68":{"tf":2.23606797749979},"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"1":{"0":{"df":3,"docs":{"229":{"tf":1.0},"233":{"tf":1.0},"241":{"tf":1.0}}},"1":{"df":3,"docs":{"204":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}}},"2":{"df":1,"docs":{"241":{"tf":1.0}}},"5":{"df":1,"docs":{"241":{"tf":1.0}}},"6":{"df":1,"docs":{"241":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":3,"docs":{"229":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"241":{"tf":1.0},"251":{"tf":1.0}}},"3":{"df":8,"docs":{"13":{"tf":1.4142135623730951},"156":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"225":{"tf":1.0},"233":{"tf":1.0},"252":{"tf":1.0},"81":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"134":{"tf":1.0}}},"1":{"df":1,"docs":{"81":{"tf":1.7320508075688772}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"\"":{",":{"\"":{"@":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"\"":{":":{"\"":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"d":{":":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"\"":{"df":0,"docs":{},"}":{"df":0,"docs":{},"}":{",":{"df":0,"docs":{},"{":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"1":{"\"":{":":{"1":{",":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"2":{"\"":{":":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"]":{",":{"[":{"1":{",":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"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":5,"docs":{"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0}}},"3":{":":{"3":{"0":{":":{"0":{"0":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"9":{":":{"1":{"2":{".":{"1":{"2":{"3":{"4":{"5":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"124":{"tf":1.0}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":2,"docs":{"158":{"tf":1.0},"159":{"tf":1.0}}},"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":{"179":{"tf":1.4142135623730951}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":3,"docs":{"156":{"tf":1.0},"158":{"tf":1.0},"236":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":37,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"127":{"tf":1.0},"132":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":2.23606797749979},"176":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.7320508075688772},"226":{"tf":1.0},"23":{"tf":1.0},"238":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":2.23606797749979},"77":{"tf":2.8284271247461903},"78":{"tf":2.6457513110645907},"81":{"tf":1.4142135623730951},"86":{"tf":2.23606797749979},"87":{"tf":1.4142135623730951},"91":{"tf":2.0},"97":{"tf":1.4142135623730951}}},"3":{",":{"4":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},".":{"0":{"0":{"df":1,"docs":{"29":{"tf":1.0}}},"df":1,"docs":{"39":{"tf":1.0}}},"5":{"5":{"5":{"df":1,"docs":{"86":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{"df":5,"docs":{"218":{"tf":1.0},"23":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":0,"docs":{},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"159":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"3":{"5":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"74":{"tf":1.7320508075688772}}},"7":{"9":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"3":{":":{"3":{"8":{"0":{"3":{"df":2,"docs":{"195":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"198":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":1,"docs":{"232":{"tf":1.0}}},"df":21,"docs":{"100":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"132":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.7320508075688772},"179":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.0},"48":{"tf":1.4142135623730951},"54":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"77":{"tf":2.0},"91":{"tf":2.6457513110645907},"97":{"tf":1.0}}},"4":{".":{"0":{"0":{"df":2,"docs":{"23":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"7":{"7":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"9":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"54":{"tf":1.0}}},"1":{"df":1,"docs":{"215":{"tf":1.7320508075688772}}},"9":{"a":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":3,"docs":{"179":{"tf":1.0},"224":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"5":{"6":{"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"7":{"1":{"4":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"b":{"9":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":0,"docs":{},"e":{"1":{"2":{"0":{"0":{"b":{"df":0,"docs":{},"f":{"a":{"4":{"7":{"df":1,"docs":{"144":{"tf":1.0}}},"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":{"8":{"5":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"9":{"2":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"100":{"tf":1.0},"106":{"tf":1.4142135623730951},"132":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":2.0},"178":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"42":{"tf":1.0},"46":{"tf":1.0},"73":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"91":{"tf":2.0},"97":{"tf":1.0}},"f":{"7":{"4":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"}":{"]":{".":{"a":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{".":{"0":{"0":{"df":5,"docs":{"29":{"tf":1.0},"55":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"9":{"8":{"df":2,"docs":{"24":{"tf":1.0},"28":{"tf":1.0}}},"9":{"df":5,"docs":{"139":{"tf":1.0},"23":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"c":{"5":{"a":{"5":{"1":{"2":{"9":{"0":{"7":{"4":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"101":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.4142135623730951},"29":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"77":{"tf":2.0},"78":{"tf":2.0},"97":{"tf":1.0}}},"6":{"0":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}},"4":{"/":{"1":{"2":{"8":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"224":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}},"6":{"df":1,"docs":{"108":{"tf":1.0}}},"7":{"df":1,"docs":{"108":{"tf":1.0}}},"df":2,"docs":{"29":{"tf":1.7320508075688772},"97":{"tf":1.0}},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"238":{"tf":1.0}}}}},"7":{".":{"9":{"9":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"5":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{"6":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"4":{"df":2,"docs":{"224":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":1,"docs":{"112":{"tf":1.0}}},"8":{"9":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"180":{"tf":1.7320508075688772},"29":{"tf":1.0}}},"8":{".":{"9":{"9":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"5":{"2":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{"d":{"d":{"2":{"9":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"8":{"df":0,"docs":{},"e":{"7":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"1":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"233":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"147":{"tf":1.0},"224":{"tf":1.4142135623730951}}},"9":{".":{"9":{"9":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"7":{"1":{"9":{"9":{"2":{"5":{"4":{"7":{"4":{"0":{"9":{"9":{"2":{".":{"1":{"2":{"3":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"2":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"176":{"tf":1.0}}},"7":{",":{"9":{"6":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"176":{"tf":1.0},"228":{"tf":1.0}}},"9":{"df":3,"docs":{"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"_":{"df":1,"docs":{"88":{"tf":1.0}}},"a":{".":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"b":{"7":{"c":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"120":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":10,"docs":{"10":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.0},"241":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"58":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}}}}},"c":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":17,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"208":{"tf":1.7320508075688772},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.0},"35":{"tf":1.4142135623730951},"45":{"tf":1.0},"64":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"125":{"tf":1.0},"151":{"tf":1.0},"155":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"155":{"tf":1.0},"175":{"tf":1.0}}}}}}}},"r":{"d":{"df":6,"docs":{"13":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"233":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"120":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"120":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"55":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"20":{"tf":1.0},"57":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"228":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"243":{"tf":1.0},"251":{"tf":2.0}}}}},"d":{"df":5,"docs":{"15":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.0},"46":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"183":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"245":{"tf":1.0}}}}}}},"df":0,"docs":{}},"[":{"0":{"]":{".":{"c":{"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":5,"docs":{"14":{"tf":1.0},"168":{"tf":1.0},"229":{"tf":1.4142135623730951},"238":{"tf":1.0},"56":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"33":{"tf":1.0},"43":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"253":{"tf":1.0}}}}}}},"g":{"df":1,"docs":{"91":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":5,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"134":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"16":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":2,"docs":{"228":{"tf":1.0},"241":{"tf":1.0}},"m":{"df":1,"docs":{"198":{"tf":1.0}}}},"k":{"a":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"a":{"df":3,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"a":{"df":4,"docs":{"24":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"48":{"tf":1.0}},"s":{"df":2,"docs":{"120":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":8,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"181":{"tf":1.0},"201":{"tf":1.4142135623730951},"239":{"tf":1.0},"246":{"tf":1.0},"47":{"tf":1.0},"57":{"tf":1.0}}},"y":{"d":{"b":{"df":2,"docs":{"241":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"236":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"234":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}}}},"z":{"df":0,"docs":{},"o":{"'":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":2,"docs":{"194":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":5,"docs":{"176":{"tf":1.0},"193":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}},"n":{"df":5,"docs":{"110":{"tf":1.0},"187":{"tf":1.0},"234":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":6,"docs":{"13":{"tf":1.0},"190":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"250":{"tf":1.0},"40":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":10,"docs":{"16":{"tf":1.0},"19":{"tf":1.0},"216":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0},"28":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"237":{"tf":1.0},"241":{"tf":1.4142135623730951},"250":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"245":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"239":{"tf":1.0}}}},"t":{"df":5,"docs":{"228":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"216":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":5,"docs":{"37":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"15":{"tf":1.0},"21":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"77":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"0":{"tf":1.0},"235":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"232":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"220":{"tf":2.0},"228":{"tf":1.0},"234":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":6,"docs":{"192":{"tf":1.0},"199":{"tf":1.0},"238":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"8":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"218":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"235":{"tf":1.4142135623730951},"41":{"tf":1.0},"51":{"tf":1.0}},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"203":{"tf":2.23606797749979},"204":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.7320508075688772},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0}}}}}},"l":{"d":{"+":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"204":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":14,"docs":{"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"205":{"tf":1.7320508075688772},"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},"216":{"tf":1.0},"220":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"n":{"d":{".":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"213":{"tf":1.7320508075688772},"220":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"214":{"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":{}}},"x":{"df":3,"docs":{"207":{"tf":1.7320508075688772},"211":{"tf":1.7320508075688772},"216":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"109":{"tf":1.0},"234":{"tf":1.0}}},"df":2,"docs":{"134":{"tf":1.0},"54":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"168":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"238":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"227":{"tf":1.0},"242":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"238":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"110":{"tf":1.7320508075688772},"141":{"tf":1.0},"147":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"206":{"tf":1.0},"215":{"tf":1.0},"233":{"tf":1.0},"64":{"tf":1.0},"97":{"tf":1.7320508075688772}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"109":{"tf":1.0},"127":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"16":{"tf":1.0},"230":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"(":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":1,"docs":{"40":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"132":{"tf":1.7320508075688772},"40":{"tf":1.0}}}}},"df":0,"docs":{}},"df":22,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"132":{"tf":2.23606797749979},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"180":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772},"73":{"tf":2.6457513110645907},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.0},"91":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":2.449489742783178}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"220":{"tf":3.0},"228":{"tf":1.0},"234":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.0}}}}}},"s":{"c":{"df":2,"docs":{"44":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"120":{"tf":1.0}},"h":{"df":1,"docs":{"120":{"tf":1.0}}}}},"k":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"234":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"185":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":2.449489742783178},"191":{"tf":1.7320508075688772},"20":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"10":{"tf":1.0},"206":{"tf":1.0},"220":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"2":{"df":1,"docs":{"120":{"tf":1.0}}},"df":1,"docs":{"120":{"tf":1.0}},"h":{"df":1,"docs":{"120":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"229":{"tf":1.0},"233":{"tf":1.0},"57":{"tf":1.0},"81":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"131":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":4,"docs":{"229":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.0},"215":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"215":{"tf":1.4142135623730951},"33":{"tf":1.0}}}}},"o":{"df":1,"docs":{"66":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":11,"docs":{"160":{"tf":1.0},"175":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"29":{"tf":1.0},"50":{"tf":1.0},"6":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"130":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"11":{"tf":1.0},"158":{"tf":1.0},"215":{"tf":1.0}}}},"df":1,"docs":{"237":{"tf":1.0}}},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"250":{"tf":1.0}}}}}},"b":{"'":{"1":{"5":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"]":{"[":{"'":{"a":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{".":{"[":{"'":{"a":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"169":{"tf":1.0}}},"c":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"1":{"df":0,"docs":{},"e":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}},"8":{"df":0,"docs":{},"e":{"3":{"5":{"c":{"8":{"2":{"b":{"9":{"3":{"5":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"[":{"'":{"a":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":2.6457513110645907}}}}}}},"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"13":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"229":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"235":{"tf":1.0}}}},"r":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"6":{"4":{"(":{"'":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"'":{"0":{"1":{"0":{"2":{"0":{"3":{"df":1,"docs":{"143":{"tf":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":{"143":{"tf":2.0}}},"df":0,"docs":{}},"df":11,"docs":{"120":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"225":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"25":{"tf":1.0},"45":{"tf":1.0}}},"i":{"c":{"df":6,"docs":{"11":{"tf":1.0},"186":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"215":{"tf":1.7320508075688772},"33":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"y":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":8,"docs":{"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"225":{"tf":1.0},"77":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"233":{"tf":1.0},"235":{"tf":1.0}}}}},"df":1,"docs":{"29":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"20":{"tf":1.0},"47":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"12":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"175":{"tf":1.0},"192":{"tf":1.0},"233":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"85":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"131":{"tf":1.0},"203":{"tf":1.0},"234":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"58":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"232":{"tf":1.0},"234":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":8,"docs":{"167":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"220":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"58":{"tf":1.0},"88":{"tf":1.0}}}}},"n":{"d":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"235":{"tf":1.0}}}}},"t":{"df":3,"docs":{"0":{"tf":1.0},"148":{"tf":1.0},"19":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"158":{"tf":2.23606797749979},"159":{"tf":1.4142135623730951},"233":{"tf":1.0},"84":{"tf":2.6457513110645907}}}}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":2,"docs":{"21":{"tf":1.0},"245":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"226":{"tf":1.0},"66":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"146":{"tf":1.4142135623730951},"194":{"tf":1.0},"197":{"tf":1.7320508075688772},"198":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"6":{"tf":1.0},"72":{"tf":1.0}}}}},"d":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"74":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":4,"docs":{"224":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"86":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":2.449489742783178}}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"df":9,"docs":{"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":2.0},"224":{"tf":1.0},"226":{"tf":1.0},"250":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"215":{"tf":1.0},"216":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"224":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":12,"docs":{"159":{"tf":1.0},"219":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"237":{"tf":1.0},"245":{"tf":1.0},"38":{"tf":1.4142135623730951},"52":{"tf":1.0},"58":{"tf":1.0},"85":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}}}},"x":{"df":1,"docs":{"238":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"35":{"tf":1.0},"74":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"78":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"196":{"tf":1.0}}}},"d":{"df":2,"docs":{"183":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"238":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"229":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":10,"docs":{"193":{"tf":1.0},"196":{"tf":1.0},"21":{"tf":1.0},"229":{"tf":1.4142135623730951},"231":{"tf":1.0},"234":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"247":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":3,"docs":{"241":{"tf":1.4142135623730951},"246":{"tf":1.0},"250":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":3,"docs":{"200":{"tf":1.4142135623730951},"219":{"tf":2.0},"221":{"tf":1.4142135623730951}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":5,"docs":{"230":{"tf":1.0},"233":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.7320508075688772},"241":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"221":{"tf":1.0},"23":{"tf":1.0}}}}}},"y":{"df":2,"docs":{"229":{"tf":1.0},"240":{"tf":1.0}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"101":{"tf":1.0},"146":{"tf":1.4142135623730951}}}}}},"c":{"'":{"]":{"[":{"1":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"74":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":4,"docs":{"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"74":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"34":{"tf":1.0},"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"[":{"1":{"df":1,"docs":{"173":{"tf":1.0}}},"2":{"]":{".":{"df":0,"docs":{},"f":{"df":1,"docs":{"180":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"83":{"tf":1.0}}}},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"220":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}},"a":{"d":{"a":{"'":{"df":0,"docs":{},"}":{",":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"238":{"tf":1.0},"56":{"tf":1.4142135623730951},"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"57":{"tf":1.0},"59":{"tf":1.0}}}}}},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"236":{"tf":1.0},"47":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.0},"34":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":10,"docs":{"129":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"181":{"tf":1.0},"20":{"tf":1.0},"231":{"tf":1.0},"238":{"tf":1.4142135623730951},"54":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0}}},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}},"1":{"2":{"3":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":5,"docs":{"136":{"tf":1.7320508075688772},"64":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.0},"97":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}},"d":{"c":{"df":1,"docs":{"230":{"tf":1.0}}},"df":1,"docs":{"10":{"tf":1.0}}},"df":16,"docs":{"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"168":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.7320508075688772},"177":{"tf":2.0},"178":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"91":{"tf":2.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"230":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":1,"docs":{"239":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"109":{"tf":1.0},"97":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"233":{"tf":1.0},"238":{"tf":1.0}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"c":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"20":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.4142135623730951}}}},"r":{"(":{"1":{"0":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"6":{"5":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"147":{"tf":1.7320508075688772},"77":{"tf":1.0},"88":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"_":{"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":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"100":{"tf":1.7320508075688772},"112":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":4,"docs":{"139":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"185":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"185":{"tf":1.0},"190":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"120":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":4,"docs":{"21":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"238":{"tf":1.0},"250":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":17,"docs":{"167":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":2.0},"34":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":2.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"16":{"tf":1.0},"195":{"tf":1.0},"230":{"tf":1.0}}},"r":{"df":3,"docs":{"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"10":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"215":{"tf":1.7320508075688772},"222":{"tf":1.4142135623730951},"35":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"151":{"tf":1.0},"233":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"10":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"149":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"u":{"d":{"df":1,"docs":{"250":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"141":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"d":{"'":{"df":1,"docs":{"233":{"tf":1.0}}},"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":6,"docs":{"10":{"tf":1.0},"108":{"tf":1.0},"181":{"tf":1.0},"215":{"tf":1.7320508075688772},"253":{"tf":1.0},"9":{"tf":1.0}}}},"df":1,"docs":{"120":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":4,"docs":{"23":{"tf":1.0},"24":{"tf":2.23606797749979},"83":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":2,"docs":{"230":{"tf":1.0},"232":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"120":{"tf":1.0},"179":{"tf":1.0},"225":{"tf":1.0},"40":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"234":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"205":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"222":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"1":{"\"":{",":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"2":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"1":{",":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"2":{"\"":{":":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"211":{"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":{",":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"2":{"\"":{":":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"132":{"tf":1.0},"173":{"tf":2.0},"174":{"tf":1.4142135623730951},"48":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":2.0},"77":{"tf":2.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0}}},"2":{"df":1,"docs":{"48":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"183":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"213":{"tf":1.0},"214":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"246":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951}}}},"df":35,"docs":{"128":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"155":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":2.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"220":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.7320508075688772},"246":{"tf":1.0},"25":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":2.0},"37":{"tf":1.4142135623730951},"38":{"tf":2.6457513110645907},"39":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"54":{"tf":2.6457513110645907},"63":{"tf":1.0},"76":{"tf":2.0},"79":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"205":{"tf":1.0},"215":{"tf":1.0},"221":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"230":{"tf":1.0},"241":{"tf":1.0}}},"m":{"a":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":4,"docs":{"133":{"tf":1.0},"209":{"tf":1.0},"23":{"tf":1.4142135623730951},"35":{"tf":1.0}},"n":{"d":{"df":7,"docs":{"195":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"240":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"190":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"238":{"tf":1.0},"247":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.0},"55":{"tf":1.4142135623730951}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"235":{"tf":1.0}}}},"r":{"df":6,"docs":{"234":{"tf":1.0},"238":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}}}},"t":{"df":9,"docs":{"136":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"194":{"tf":1.0},"241":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.7320508075688772},"6":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"196":{"tf":1.0},"197":{"tf":1.0},"247":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"t":{"df":5,"docs":{"0":{"tf":1.0},"207":{"tf":1.0},"241":{"tf":1.0},"30":{"tf":1.0},"44":{"tf":1.0}}},"x":{"df":4,"docs":{"229":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"13":{"tf":1.0},"228":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}},"s":{"df":1,"docs":{"21":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"49":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"228":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"250":{"tf":1.7320508075688772},"74":{"tf":1.0},"78":{"tf":1.7320508075688772}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.7320508075688772},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"109":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"97":{"tf":2.449489742783178}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"234":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"235":{"tf":1.0},"237":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"138":{"tf":1.0},"139":{"tf":1.7320508075688772},"46":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"151":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":2.8284271247461903},"38":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"232":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"185":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":2,"docs":{"185":{"tf":1.0},"54":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"78":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":17,"docs":{"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"161":{"tf":1.7320508075688772},"20":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":24,"docs":{"132":{"tf":1.0},"199":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":2.0},"204":{"tf":1.7320508075688772},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"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},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"233":{"tf":1.0},"55":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"253":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"22":{"tf":1.0},"37":{"tf":1.0},"91":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"'":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"235":{"tf":1.0}}},"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":2,"docs":{"197":{"tf":1.0},"233":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"253":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":4,"docs":{"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"233":{"tf":1.0},"245":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"247":{"tf":1.0}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"108":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"120":{"tf":1.0}}},"t":{"df":3,"docs":{"229":{"tf":1.0},"233":{"tf":1.4142135623730951},"55":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"h":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":3,"docs":{"112":{"tf":1.0},"131":{"tf":2.0},"173":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"8":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"40":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":8,"docs":{"34":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"241":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"148":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"233":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"237":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":18,"docs":{"12":{"tf":1.4142135623730951},"170":{"tf":1.0},"187":{"tf":2.449489742783178},"190":{"tf":2.23606797749979},"22":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"235":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"55":{"tf":2.23606797749979},"56":{"tf":1.4142135623730951}}}},"u":{"b":{"df":0,"docs":{},"e":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"l":{"df":23,"docs":{"10":{"tf":1.0},"199":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":2.0},"207":{"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},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"5":{"tf":1.0},"8":{"tf":2.0}},"i":{"df":1,"docs":{"74":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":2,"docs":{"125":{"tf":1.4142135623730951},"154":{"tf":1.7320508075688772}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"125":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"125":{"tf":1.4142135623730951},"13":{"tf":1.0},"152":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}},"df":9,"docs":{"13":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"29":{"tf":1.0},"56":{"tf":1.0},"80":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"125":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"d":{"2":{"6":{"8":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"15":{"tf":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":{"15":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"a":{"'":{"df":1,"docs":{"236":{"tf":1.0}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":27,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":1.4142135623730951},"155":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"181":{"tf":1.4142135623730951},"191":{"tf":1.0},"21":{"tf":1.4142135623730951},"228":{"tf":2.23606797749979},"229":{"tf":2.6457513110645907},"230":{"tf":2.0},"231":{"tf":1.7320508075688772},"232":{"tf":1.7320508075688772},"233":{"tf":3.7416573867739413},"234":{"tf":1.7320508075688772},"235":{"tf":2.0},"238":{"tf":2.449489742783178},"239":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}},"df":50,"docs":{"117":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"143":{"tf":1.0},"148":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"16":{"tf":1.7320508075688772},"167":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"192":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"208":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":2.23606797749979},"22":{"tf":2.0},"220":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"230":{"tf":1.7320508075688772},"232":{"tf":1.4142135623730951},"233":{"tf":3.3166247903554},"234":{"tf":1.0},"235":{"tf":2.8284271247461903},"236":{"tf":1.7320508075688772},"237":{"tf":1.4142135623730951},"238":{"tf":3.3166247903554},"239":{"tf":2.0},"241":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.0},"246":{"tf":1.4142135623730951},"249":{"tf":1.0},"28":{"tf":1.7320508075688772},"56":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"234":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"(":{"'":{"2":{"0":{"0":{"1":{"df":1,"docs":{"122":{"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":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"121":{"tf":1.0},"151":{"tf":1.0},"80":{"tf":1.0}}}}}},"df":11,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":2.0},"148":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.4142135623730951},"156":{"tf":1.0},"224":{"tf":1.4142135623730951},"245":{"tf":1.0},"69":{"tf":2.449489742783178}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"'":{"2":{"0":{"0":{"1":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"2":{"0":{"2":{"3":{"df":1,"docs":{"81":{"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":{}}}}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}}}},"y":{"df":4,"docs":{"124":{"tf":1.4142135623730951},"154":{"tf":1.0},"246":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"b":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":21,"docs":{"122":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"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},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.4142135623730951}},"e":{"6":{"df":0,"docs":{},"f":{"df":1,"docs":{"60":{"tf":1.0}}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}}},"c":{"a":{"d":{"df":5,"docs":{"230":{"tf":1.7320508075688772},"232":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951},"241":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"238":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"171":{"tf":1.0}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":12,"docs":{"13":{"tf":1.0},"133":{"tf":1.0},"16":{"tf":1.0},"172":{"tf":1.0},"195":{"tf":1.4142135623730951},"198":{"tf":1.7320508075688772},"208":{"tf":1.0},"228":{"tf":1.0},"236":{"tf":1.0},"44":{"tf":1.0},"57":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"190":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"215":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"88":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"120":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"13":{"tf":1.4142135623730951},"188":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":2.0},"235":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":2.8284271247461903}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"133":{"tf":1.4142135623730951},"211":{"tf":1.0},"222":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"32":{"tf":1.0},"35":{"tf":1.4142135623730951}}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"238":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"233":{"tf":1.0},"239":{"tf":1.0}}}},"t":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"131":{"tf":1.0},"154":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"167":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0}}}}},"s":{"c":{"df":2,"docs":{"132":{"tf":1.0},"44":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"a":{"c":{"df":4,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"58":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"234":{"tf":1.4142135623730951},"235":{"tf":1.0}}}},"r":{"df":4,"docs":{"187":{"tf":1.0},"233":{"tf":1.4142135623730951},"236":{"tf":1.0},"64":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"233":{"tf":2.0},"235":{"tf":1.7320508075688772}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"17":{"tf":1.0},"192":{"tf":1.0},"20":{"tf":1.0},"224":{"tf":1.0},"237":{"tf":1.0},"248":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"20":{"tf":1.0},"229":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"131":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":2.0},"245":{"tf":1.0},"252":{"tf":1.0},"34":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"225":{"tf":1.0}}}},"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"131":{"tf":1.0},"154":{"tf":1.0},"16":{"tf":1.0},"234":{"tf":1.4142135623730951},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"58":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"233":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0}},"i":{"df":2,"docs":{"15":{"tf":1.0},"238":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"132":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"232":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"198":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.4142135623730951},"249":{"tf":1.0},"49":{"tf":1.0},"77":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"197":{"tf":1.0},"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"74":{"tf":1.7320508075688772},"79":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":4,"docs":{"228":{"tf":1.4142135623730951},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"250":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"l":{"df":5,"docs":{"201":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"55":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"8":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"df":2,"docs":{"195":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":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":{"195":{"tf":1.0}}}}},"df":5,"docs":{"193":{"tf":1.7320508075688772},"195":{"tf":2.23606797749979},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"4":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":43,"docs":{"0":{"tf":1.4142135623730951},"117":{"tf":2.449489742783178},"12":{"tf":1.0},"120":{"tf":1.0},"131":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.7320508075688772},"17":{"tf":1.0},"171":{"tf":1.0},"18":{"tf":2.0},"181":{"tf":1.4142135623730951},"192":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"22":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.4142135623730951},"23":{"tf":2.23606797749979},"230":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.7320508075688772},"234":{"tf":1.0},"238":{"tf":1.7320508075688772},"24":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"15":{"tf":1.0},"16":{"tf":1.0},"176":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"197":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"22":{"tf":1.0},"247":{"tf":1.0}}}},"t":{"df":2,"docs":{"169":{"tf":1.0},"171":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"171":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"195":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"21":{"tf":1.4142135623730951},"245":{"tf":1.0}},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"228":{"tf":1.0},"235":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}},"r":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"187":{"tf":1.0},"188":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"230":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"71":{"tf":1.0}}},"m":{"df":1,"docs":{"233":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"230":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"233":{"tf":1.0},"236":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":2.23606797749979},"60":{"tf":1.7320508075688772}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"238":{"tf":1.0},"71":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"p":{"1":{"df":0,"docs":{},"y":{"2":{"df":0,"docs":{},"m":{"1":{"0":{"d":{"df":0,"docs":{},"t":{"2":{"df":0,"docs":{},"h":{"3":{"0":{"df":0,"docs":{},"m":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"1":{"2":{"df":0,"docs":{},"h":{"3":{"0":{"df":0,"docs":{},"m":{"5":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"247":{"tf":1.0},"57":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":9,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.7320508075688772},"245":{"tf":1.4142135623730951},"54":{"tf":1.0},"75":{"tf":1.0}},"o":{"d":{"b":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"b":{"0":{"7":{"7":{"6":{"5":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":20,"docs":{"127":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"187":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"221":{"tf":1.4142135623730951},"232":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"34":{"tf":1.0},"45":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"194":{"tf":1.4142135623730951},"233":{"tf":1.0},"252":{"tf":1.0},"6":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"234":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"170":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"236":{"tf":1.0},"34":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"238":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"187":{"tf":1.0},"188":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"40":{"tf":1.0}}}},"df":1,"docs":{"20":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":2.23606797749979}}}}},"df":2,"docs":{"177":{"tf":1.0},"178":{"tf":1.4142135623730951}},"e":{"df":1,"docs":{"105":{"tf":1.0}},"|":{".":{"*":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"89":{"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":3,"docs":{"110":{"tf":1.0},"237":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"228":{"tf":1.0},"250":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"179":{"tf":1.0},"40":{"tf":1.7320508075688772},"97":{"tf":2.0}}}}}}},"i":{"d":{"df":2,"docs":{"206":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"190":{"tf":1.0},"226":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}},"b":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"11":{"tf":1.0},"238":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"33":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"74":{"tf":1.0}}}}},"o":{"d":{"df":7,"docs":{"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"150":{"tf":1.0},"155":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"194":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":17,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"193":{"tf":1.0},"228":{"tf":2.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"232":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"241":{"tf":1.7320508075688772},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.4142135623730951},"250":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"df":2,"docs":{"195":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"'":{"df":8,"docs":{"148":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":1.4142135623730951},"18":{"tf":1.0},"200":{"tf":1.0},"21":{"tf":1.4142135623730951},"246":{"tf":1.0}}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{":":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"195":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"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":{"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"195":{"tf":1.4142135623730951},"198":{"tf":1.0},"4":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"198":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":72,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"13":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"16":{"tf":1.7320508075688772},"167":{"tf":1.0},"17":{"tf":1.0},"181":{"tf":2.0},"185":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.7320508075688772},"198":{"tf":2.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"20":{"tf":2.0},"202":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":2.0},"215":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"220":{"tf":1.4142135623730951},"222":{"tf":1.0},"224":{"tf":1.4142135623730951},"228":{"tf":2.23606797749979},"229":{"tf":1.0},"231":{"tf":1.4142135623730951},"234":{"tf":2.8284271247461903},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"48":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0}}},"df":11,"docs":{"106":{"tf":1.0},"149":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"192":{"tf":1.0},"2":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"228":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"231":{"tf":1.0},"233":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"215":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":8,"docs":{"157":{"tf":1.0},"21":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.0},"76":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"238":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}}},"v":{"df":1,"docs":{"198":{"tf":2.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"186":{"tf":1.0},"35":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"140":{"tf":1.0},"238":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}},"t":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"109":{"tf":1.0},"117":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"229":{"tf":1.0},"39":{"tf":1.0},"71":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":1,"docs":{"233":{"tf":1.0}},"s":{"df":5,"docs":{"13":{"tf":1.0},"228":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":2.0}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"232":{"tf":1.0},"235":{"tf":1.0},"244":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"19":{"tf":1.4142135623730951},"220":{"tf":1.0},"24":{"tf":1.0},"54":{"tf":1.0},"76":{"tf":1.0}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"110":{"tf":1.0},"88":{"tf":2.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"t":{"c":{"df":3,"docs":{"20":{"tf":1.0},"250":{"tf":1.4142135623730951},"48":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":2,"docs":{"229":{"tf":1.0},"230":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"85":{"tf":2.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"15":{"tf":1.0},"195":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0}},"t":{"df":4,"docs":{"204":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.0}},"u":{"df":1,"docs":{"233":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"232":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"165":{"tf":1.0},"166":{"tf":1.0},"76":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"213":{"tf":1.0},"214":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":18,"docs":{"10":{"tf":2.0},"13":{"tf":1.4142135623730951},"141":{"tf":1.0},"167":{"tf":1.4142135623730951},"199":{"tf":1.0},"206":{"tf":1.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"245":{"tf":1.0},"44":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"76":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.0},"129":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"149":{"tf":1.0},"29":{"tf":1.0}},"e":{"d":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"v":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":1,"docs":{"159":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"190":{"tf":1.0},"198":{"tf":1.0},"215":{"tf":1.0},"228":{"tf":1.0},"243":{"tf":1.0},"247":{"tf":1.4142135623730951},"29":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":19,"docs":{"13":{"tf":1.4142135623730951},"131":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.4142135623730951},"192":{"tf":1.0},"220":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.4142135623730951},"241":{"tf":1.0},"250":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.7320508075688772}}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"120":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"252":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":5,"docs":{"139":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.7320508075688772},"237":{"tf":1.0},"241":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"194":{"tf":1.0},"20":{"tf":1.0},"234":{"tf":1.0},"6":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"193":{"tf":1.0},"199":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"57":{"tf":1.7320508075688772},"61":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"37":{"tf":1.0},"38":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"0":{"tf":1.0},"198":{"tf":1.0}}}}}}},"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"201":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"195":{"tf":1.0},"204":{"tf":1.0},"235":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"r":{"df":1,"docs":{"238":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"195":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"127":{"tf":1.0},"132":{"tf":1.0},"140":{"tf":1.0},"17":{"tf":1.4142135623730951},"37":{"tf":1.0},"44":{"tf":1.0},"55":{"tf":1.4142135623730951},"89":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"125":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":2,"docs":{"125":{"tf":2.23606797749979},"235":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"238":{"tf":1.0}}}}}}}},"f":{"7":{"c":{"3":{"1":{"4":{"d":{"d":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"235":{"tf":1.0},"238":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"237":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"159":{"tf":1.0}}},"s":{"df":6,"docs":{"139":{"tf":1.0},"224":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"11":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"33":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"241":{"tf":1.0},"25":{"tf":1.0}}}}}},"t":{"df":3,"docs":{"228":{"tf":1.0},"237":{"tf":1.0},"243":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"237":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"17":{"tf":1.0},"230":{"tf":1.0}}}}}}},"df":10,"docs":{"180":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":2.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"220":{"tf":1.7320508075688772},"221":{"tf":2.449489742783178},"222":{"tf":1.0},"77":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"192":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"220":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":5,"docs":{"11":{"tf":1.4142135623730951},"226":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"252":{"tf":1.0}}},"t":{"df":1,"docs":{"232":{"tf":1.0}}}},"w":{"df":2,"docs":{"232":{"tf":1.0},"235":{"tf":1.0}}}},"i":{"b":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"56":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":10,"docs":{"117":{"tf":2.23606797749979},"169":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"206":{"tf":1.0},"25":{"tf":1.0},"39":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"213":{"tf":2.0},"214":{"tf":1.4142135623730951},"220":{"tf":2.6457513110645907},"235":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"40":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"134":{"tf":1.0}}}}}}},"df":4,"docs":{"134":{"tf":1.4142135623730951},"29":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":2,"docs":{"173":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"'":{"df":0,"docs":{},"}":{",":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":23,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"117":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"232":{"tf":1.4142135623730951},"234":{"tf":1.0},"238":{"tf":1.4142135623730951},"241":{"tf":1.7320508075688772},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"58":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"232":{"tf":1.0}},"r":{"2":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"219":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}},"t":{"df":1,"docs":{"238":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"233":{"tf":1.0},"238":{"tf":1.4142135623730951},"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"224":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":18,"docs":{"12":{"tf":1.0},"120":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.0},"187":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"222":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"29":{"tf":1.0},"37":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.4142135623730951},"94":{"tf":1.0}}}}}},"o":{"2":{"df":2,"docs":{"74":{"tf":1.0},"78":{"tf":1.0}}},"df":4,"docs":{"74":{"tf":1.7320508075688772},"77":{"tf":1.0},"78":{"tf":2.23606797749979},"91":{"tf":2.0}}},"r":{"c":{"df":4,"docs":{"136":{"tf":1.0},"215":{"tf":1.0},"238":{"tf":1.0},"44":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"238":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"v":{"df":2,"docs":{"0":{"tf":1.0},"232":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"122":{"tf":1.0},"144":{"tf":1.4142135623730951},"170":{"tf":1.0},"202":{"tf":1.0},"213":{"tf":1.0},"220":{"tf":1.0},"228":{"tf":1.0}}}},"df":17,"docs":{"125":{"tf":1.0},"158":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"216":{"tf":2.0},"217":{"tf":1.0},"218":{"tf":1.0},"222":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"84":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"117":{"tf":1.0},"147":{"tf":1.0},"162":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"21":{"tf":1.0},"248":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"233":{"tf":2.23606797749979}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"c":{"a":{"df":2,"docs":{"230":{"tf":1.0},"232":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"234":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"228":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.0},"8":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":64,"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},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"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.4142135623730951},"144":{"tf":1.7320508075688772},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"175":{"tf":2.6457513110645907},"186":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"73":{"tf":1.0},"86":{"tf":1.4142135623730951},"88":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"169":{"tf":1.0},"206":{"tf":1.0},"29":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"237":{"tf":1.0},"248":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":4,"docs":{"13":{"tf":1.0},"228":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"194":{"tf":1.0},"253":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"233":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"245":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":4,"docs":{"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"236":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"221":{"tf":1.0}}}}},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"243":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"213":{"tf":1.0},"214":{"tf":1.0}}}},"t":{"@":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"10":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":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":{"252":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"230":{"tf":1.0},"37":{"tf":1.0}},"n":{"df":10,"docs":{"107":{"tf":1.0},"115":{"tf":1.0},"128":{"tf":1.4142135623730951},"130":{"tf":1.0},"133":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.4142135623730951},"171":{"tf":1.0},"37":{"tf":1.0},"48":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":1,"docs":{"90":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"234":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"253":{"tf":1.0}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"21":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.0}}}},"df":1,"docs":{"232":{"tf":1.0}},"e":{"df":2,"docs":{"230":{"tf":1.0},"56":{"tf":1.0}}},"o":{"d":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"250":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"241":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":4,"docs":{"230":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"83":{"tf":1.4142135623730951},"84":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"w":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"232":{"tf":1.0},"235":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"250":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"133":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"133":{"tf":1.0},"45":{"tf":2.23606797749979},"46":{"tf":1.4142135623730951}}}},"w":{"df":1,"docs":{"231":{"tf":1.0}},"n":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"230":{"tf":1.0}}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"194":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"ö":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"245":{"tf":1.0}}}}}}}}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"229":{"tf":1.0},"230":{"tf":1.0}}}},"n":{"d":{"df":3,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"34":{"tf":1.0}},"l":{"df":2,"docs":{"237":{"tf":1.0},"238":{"tf":1.0}}}},"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"74":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"235":{"tf":1.0},"241":{"tf":1.4142135623730951}}}}}},"r":{"d":{"df":2,"docs":{"181":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":1,"docs":{"235":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"247":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"46":{"tf":2.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"241":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":22,"docs":{"122":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"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.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"5":{"tf":1.0},"8":{"tf":1.4142135623730951}},"e":{"a":{"d":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"0":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"199":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"208":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"237":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"c":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"235":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"245":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"175":{"tf":1.0},"21":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"230":{"tf":1.0}}}}}}}}},"o":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"213":{"tf":1.0}}}}}}},"df":0,"docs":{}},"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"102":{"tf":2.449489742783178},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"224":{"tf":1.0},"5":{"tf":1.0},"97":{"tf":2.0}}}},"p":{"df":3,"docs":{"148":{"tf":1.0},"170":{"tf":1.0},"198":{"tf":2.0}}}},"r":{"a":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":4,"docs":{"232":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0},"56":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"247":{"tf":1.0}}}}}}},"x":{"(":{"1":{"5":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"147":{"tf":1.4142135623730951}},"i":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"181":{"tf":1.0},"234":{"tf":1.0},"252":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"132":{"tf":1.0},"234":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"233":{"tf":1.0},"243":{"tf":1.0}},"i":{"df":11,"docs":{"0":{"tf":1.0},"157":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":2.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}}}},"o":{"c":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"228":{"tf":1.0},"239":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"241":{"tf":1.0}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"241":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"228":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"1":{".":{"1":{"df":1,"docs":{"215":{"tf":1.0}}},"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":{":":{"3":{"8":{"0":{"3":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"?":{"df":0,"docs":{},"p":{"=":{"%":{"5":{"b":{"%":{"2":{"2":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"%":{"2":{"2":{"%":{"2":{"c":{"%":{"2":{"2":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"%":{"2":{"2":{"%":{"5":{"d":{"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":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"q":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"%":{"2":{"0":{"1":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":22,"docs":{"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"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},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"5":{"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":{}},"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":1,"docs":{"198":{"tf":1.0}}}}}}},"df":16,"docs":{"10":{"tf":1.0},"192":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.449489742783178},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"215":{"tf":2.23606797749979},"31":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.0}},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"/":{"#":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"196":{"tf":1.0},"197":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"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":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"df":2,"docs":{"193":{"tf":1.4142135623730951},"195":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"238":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"220":{"tf":1.0},"233":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"233":{"tf":1.0},"246":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"å":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"251":{"tf":1.0}}},"df":1,"docs":{"253":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{".":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"m":{"df":1,"docs":{"233":{"tf":1.0}}}},"d":{"df":6,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0}},"e":{"a":{"df":4,"docs":{"148":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"233":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"224":{"tf":1.0},"67":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"131":{"tf":1.0},"147":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"235":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"f":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"139":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"245":{"tf":1.0}}}}}}}},"m":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"193":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":5,"docs":{"149":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"187":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"13":{"tf":1.7320508075688772},"155":{"tf":1.0},"22":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"235":{"tf":1.7320508075688772},"236":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.0}}}}},"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":{"21":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"241":{"tf":1.0},"250":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"232":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"224":{"tf":1.0},"32":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"15":{"tf":1.0},"78":{"tf":1.0}}}}}}},"df":1,"docs":{"232":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"149":{"tf":1.0},"206":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"231":{"tf":1.0},"238":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":11,"docs":{"106":{"tf":1.0},"173":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.4142135623730951},"241":{"tf":1.0},"243":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":2.0},"41":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":2,"docs":{"24":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"230":{"tf":1.0},"233":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"237":{"tf":1.0},"250":{"tf":1.0}}}}}},"l":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"184":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"181":{"tf":2.0},"21":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"248":{"tf":1.0},"251":{"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":{"228":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"117":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}}}},"df":25,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"168":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"199":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.7320508075688772},"222":{"tf":1.0},"23":{"tf":3.1622776601683795},"245":{"tf":1.0},"29":{"tf":2.8284271247461903},"39":{"tf":1.0},"58":{"tf":2.0},"64":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":2,"docs":{"228":{"tf":1.0},"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"158":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"167":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":1.0},"21":{"tf":2.0},"245":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.0},"4":{"tf":1.7320508075688772},"8":{"tf":1.0}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":7,"docs":{"220":{"tf":1.0},"222":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"105":{"tf":1.4142135623730951}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":8,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"119":{"tf":1.0},"136":{"tf":1.0},"224":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.7320508075688772},"86":{"tf":1.0}},"r":{"df":1,"docs":{"232":{"tf":1.0}}}},"n":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1":{"tf":1.0},"233":{"tf":1.0}}}}},"f":{"a":{"c":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":2,"docs":{"125":{"tf":1.0},"234":{"tf":1.0}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"50":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"54":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"v":{"df":3,"docs":{"148":{"tf":1.0},"224":{"tf":1.4142135623730951},"71":{"tf":2.6457513110645907}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":4,"docs":{"231":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"155":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"c":{"df":2,"docs":{"213":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.4142135623730951},"231":{"tf":1.0},"238":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":7,"docs":{"224":{"tf":2.0},"233":{"tf":1.0},"245":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"t":{"'":{"df":5,"docs":{"16":{"tf":1.0},"230":{"tf":1.4142135623730951},"234":{"tf":1.0},"235":{"tf":1.7320508075688772},"241":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"21":{"tf":1.0},"220":{"tf":1.0}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":4,"docs":{"15":{"tf":1.0},"16":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0}}},"m":{"df":1,"docs":{"221":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"18":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"a":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"18":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"245":{"tf":1.0}}}}}}},"o":{"b":{"df":3,"docs":{"237":{"tf":1.0},"239":{"tf":1.4142135623730951},"246":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"225":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"14":{"tf":2.0},"184":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":1.0},"247":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":2.6457513110645907},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.7320508075688772}}}},"y":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":21,"docs":{"17":{"tf":1.0},"175":{"tf":1.0},"203":{"tf":2.0},"204":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.7320508075688772},"216":{"tf":2.0},"217":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":3.3166247903554},"225":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"25":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"91":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"167":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"y":{"(":{"1":{"9":{"7":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"124":{"tf":1.4142135623730951},"148":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}}}}},"k":{"a":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"24":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":4,"docs":{"235":{"tf":1.0},"236":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"219":{"tf":1.0},"222":{"tf":1.0}}}}}},"df":0,"docs":{}},"y":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}}}}},"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":8,"docs":{"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"40":{"tf":1.0},"74":{"tf":1.4142135623730951},"79":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":9,"docs":{"221":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"230":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"11":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0}},"n":{"df":2,"docs":{"235":{"tf":1.0},"77":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"117":{"tf":1.0}}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"187":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"15":{"tf":1.0},"234":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"11":{"tf":1.0},"22":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"234":{"tf":2.8284271247461903},"9":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"146":{"tf":1.4142135623730951},"224":{"tf":1.0},"72":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"179":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"60":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"238":{"tf":1.0},"57":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}},"w":{"df":4,"docs":{"13":{"tf":1.0},"228":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":1.0}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"d":{"df":7,"docs":{"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"212":{"tf":1.0},"216":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"167":{"tf":1.0},"2":{"tf":1.0},"237":{"tf":1.0}}}},"s":{"df":2,"docs":{"57":{"tf":1.0},"60":{"tf":1.0}}},"v":{"df":2,"docs":{"16":{"tf":1.0},"235":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":8,"docs":{"102":{"tf":1.0},"117":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"39":{"tf":1.4142135623730951},"54":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"167":{"tf":1.0},"17":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"46":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"df":1,"docs":{"232":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"'":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":1,"docs":{"112":{"tf":1.0}}}}},"[":{"3":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"44":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":5,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.7320508075688772},"44":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}},"s":{"df":5,"docs":{"106":{"tf":1.0},"230":{"tf":1.0},"238":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.0}}}},"t":{"'":{"df":5,"docs":{"13":{"tf":1.0},"15":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"181":{"tf":1.0},"234":{"tf":1.0},"252":{"tf":1.0},"91":{"tf":1.4142135623730951}}}},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{".":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":1,"docs":{"238":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"227":{"tf":1.0},"253":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"235":{"tf":1.0}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"251":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":2.6457513110645907},"84":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"u":{"a":{"df":2,"docs":{"230":{"tf":1.0},"232":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"df":1,"docs":{"212":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"197":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":2,"docs":{"234":{"tf":1.0},"247":{"tf":1.0}}},"t":{"df":15,"docs":{"133":{"tf":1.0},"169":{"tf":1.0},"187":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":23,"docs":{"170":{"tf":2.0},"216":{"tf":1.4142135623730951},"221":{"tf":1.0},"224":{"tf":2.0},"225":{"tf":1.0},"23":{"tf":1.0},"49":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":2.0},"75":{"tf":1.0},"76":{"tf":2.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"238":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"230":{"tf":1.0},"250":{"tf":1.0}}}}},"n":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"154":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{},"g":{"1":{"0":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"120":{"tf":1.0}}},"df":4,"docs":{"120":{"tf":1.7320508075688772},"198":{"tf":1.0},"235":{"tf":1.7320508075688772},"243":{"tf":1.0}},"i":{"c":{"df":2,"docs":{"233":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"232":{"tf":1.0},"234":{"tf":1.4142135623730951},"241":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"30":{"tf":1.0},"61":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"169":{"tf":1.0},"233":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}}}}},"p":{"df":1,"docs":{"233":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"237":{"tf":1.0}}},"t":{"df":2,"docs":{"13":{"tf":1.0},"243":{"tf":1.0}}}},"t":{"df":2,"docs":{"231":{"tf":1.0},"232":{"tf":1.0}}},"w":{"df":1,"docs":{"233":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"103":{"tf":1.4142135623730951},"181":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.7320508075688772}}}}}},"y":{"df":1,"docs":{"16":{"tf":1.0}}}},"m":{")":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":3,"docs":{"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951}}}}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"237":{"tf":1.0}}}}},"o":{"df":1,"docs":{"197":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"243":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"196":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"229":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"9":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":11,"docs":{"13":{"tf":1.0},"148":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"220":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":12,"docs":{"17":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.0},"231":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.0},"34":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":6,"docs":{"117":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.4142135623730951},"238":{"tf":1.0},"40":{"tf":1.0},"87":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"237":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":1,"docs":{"225":{"tf":1.0}}},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"231":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"233":{"tf":1.7320508075688772},"235":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":13,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"20":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":2.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":3.4641016151377544},"95":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"187":{"tf":1.0},"241":{"tf":1.0}}}}},"h":{"df":2,"docs":{"120":{"tf":1.7320508075688772},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}}}}}},"x":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"127":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}}}}},"df":4,"docs":{"122":{"tf":1.4142135623730951},"147":{"tf":1.0},"200":{"tf":1.0},"219":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":10,"docs":{"149":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}}},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"247":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"247":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"221":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"25":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"220":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"238":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"241":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"54":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":1,"docs":{"127":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"127":{"tf":1.4142135623730951}}}}}},"u":{"df":1,"docs":{"86":{"tf":1.0}},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"224":{"tf":1.0},"63":{"tf":1.0}}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"195":{"tf":1.4142135623730951},"4":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"149":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"235":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"187":{"tf":1.0},"85":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"86":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.7320508075688772}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"d":{"b":{"df":4,"docs":{"234":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"71":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":20,"docs":{"15":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"221":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.7320508075688772},"238":{"tf":1.4142135623730951},"245":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"58":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"197":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"206":{"tf":1.7320508075688772},"216":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":12,"docs":{"151":{"tf":1.0},"180":{"tf":1.0},"222":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"231":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":1.4142135623730951},"40":{"tf":1.0},"86":{"tf":1.0},"97":{"tf":1.0}}}}}}},"n":{"d":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"233":{"tf":1.0},"235":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"56":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":60,"docs":{"110":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.0},"155":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":2.0},"18":{"tf":1.4142135623730951},"181":{"tf":1.0},"187":{"tf":2.23606797749979},"188":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":2.0},"205":{"tf":1.0},"206":{"tf":1.0},"217":{"tf":2.8284271247461903},"218":{"tf":1.4142135623730951},"219":{"tf":2.449489742783178},"220":{"tf":2.23606797749979},"221":{"tf":2.23606797749979},"222":{"tf":1.0},"23":{"tf":2.23606797749979},"24":{"tf":2.449489742783178},"26":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":3.3166247903554},"30":{"tf":1.0},"35":{"tf":1.7320508075688772},"37":{"tf":2.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":2.0},"46":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":2.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":2.0},"60":{"tf":1.7320508075688772},"64":{"tf":1.0},"74":{"tf":2.0},"76":{"tf":2.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.0},"83":{"tf":2.0},"85":{"tf":2.0},"88":{"tf":2.449489742783178},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"94":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"220":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"222":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":7,"docs":{"167":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"120":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":5,"docs":{"167":{"tf":1.4142135623730951},"169":{"tf":2.0},"170":{"tf":1.0},"175":{"tf":1.0},"20":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"211":{"tf":1.7320508075688772}}}}}}},"df":2,"docs":{"225":{"tf":1.0},"41":{"tf":2.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"252":{"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":{"234":{"tf":1.0},"235":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"205":{"tf":1.0}}}}}}},"df":1,"docs":{"235":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":9,"docs":{"12":{"tf":1.0},"190":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"226":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}},"g":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"84":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"250":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.4142135623730951},"21":{"tf":1.0},"219":{"tf":1.0},"238":{"tf":2.6457513110645907},"241":{"tf":1.0},"245":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"237":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"234":{"tf":1.0},"240":{"tf":1.0}}}}},"w":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":13,"docs":{"176":{"tf":1.7320508075688772},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"194":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.7320508075688772},"235":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"211":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"224":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":8,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.7320508075688772},"133":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.4142135623730951},"187":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":5,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"233":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"155":{"tf":1.0},"158":{"tf":1.0},"175":{"tf":1.0},"190":{"tf":1.0},"238":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"169":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":35,"docs":{"112":{"tf":1.0},"120":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.7320508075688772},"131":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"154":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"28":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"58":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0}}},"h":{"df":2,"docs":{"179":{"tf":1.0},"29":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"df":11,"docs":{"13":{"tf":1.0},"151":{"tf":1.4142135623730951},"156":{"tf":1.0},"16":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"241":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"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":14,"docs":{"117":{"tf":1.4142135623730951},"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"133":{"tf":1.0},"141":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"40":{"tf":1.0},"63":{"tf":2.23606797749979},"65":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"f":{"(":{"1":{"df":1,"docs":{"140":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"140":{"tf":1.4142135623730951}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"100":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"145":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.7320508075688772},"179":{"tf":1.0},"180":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"233":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.7320508075688772},"67":{"tf":1.0},"86":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"118":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"86":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.4142135623730951}}}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"115":{"tf":1.0},"40":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"[":{"[":{"'":{"a":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"113":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"113":{"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":{"114":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":27,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"146":{"tf":1.4142135623730951},"167":{"tf":1.0},"168":{"tf":1.7320508075688772},"17":{"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},"217":{"tf":1.0},"221":{"tf":2.449489742783178},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"23":{"tf":1.0},"233":{"tf":1.0},"250":{"tf":1.0},"40":{"tf":1.4142135623730951},"49":{"tf":2.6457513110645907},"72":{"tf":1.0},"74":{"tf":2.8284271247461903},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"207":{"tf":1.0},"235":{"tf":1.0}}}}}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"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":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"101":{"tf":1.7320508075688772}}}}}}}}},"df":1,"docs":{"101":{"tf":1.0}}}}}},"df":1,"docs":{"77":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"167":{"tf":1.0},"207":{"tf":1.0},"238":{"tf":1.0},"40":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}}}}},"k":{"df":2,"docs":{"76":{"tf":1.0},"93":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"228":{"tf":1.0},"233":{"tf":1.0},"249":{"tf":1.0}}}},"d":{"df":2,"docs":{"13":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":4,"docs":{"228":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"157":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":5,"docs":{"23":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":1.0}}},"df":27,"docs":{"125":{"tf":1.0},"132":{"tf":1.0},"17":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"230":{"tf":1.7320508075688772},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":2.23606797749979},"235":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"243":{"tf":1.0},"38":{"tf":1.4142135623730951},"51":{"tf":1.0},"73":{"tf":1.4142135623730951},"77":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"233":{"tf":1.0},"238":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"238":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"235":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"149":{"tf":1.4142135623730951},"228":{"tf":1.0},"240":{"tf":1.0},"245":{"tf":1.4142135623730951}}},"r":{"df":40,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"132":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"187":{"tf":1.0},"192":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"219":{"tf":1.4142135623730951},"231":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"50":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"59":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772},"97":{"tf":1.7320508075688772}}}},"t":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"*":{"/":{"*":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"106":{"tf":1.0},"110":{"tf":1.0},"133":{"tf":1.0},"147":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.4142135623730951},"200":{"tf":1.0},"37":{"tf":1.0},"64":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"110":{"tf":1.0},"132":{"tf":1.4142135623730951},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"218":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.0},"247":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.0},"44":{"tf":3.605551275463989},"45":{"tf":1.0},"47":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":2,"docs":{"41":{"tf":2.23606797749979},"77":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"13":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"180":{"tf":1.0},"253":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"229":{"tf":1.0},"240":{"tf":1.0}}}}}}},"t":{"df":4,"docs":{"0":{"tf":1.0},"146":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"199":{"tf":1.0},"241":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"213":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"228":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"0":{"tf":1.0},"199":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"35":{"tf":1.0},"7":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"149":{"tf":1.0},"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"133":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"176":{"tf":1.0}}}}}}}}}},"p":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}}},")":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":6,"docs":{"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"74":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"34":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"1":{"df":0,"docs":{},"y":{"2":{"df":0,"docs":{},"m":{"1":{"0":{"d":{"df":0,"docs":{},"t":{"2":{"df":0,"docs":{},"h":{"3":{"0":{"df":0,"docs":{},"m":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"\"":{"[":{"[":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"221":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"'":{"[":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"df":2,"docs":{"206":{"tf":1.0},"218":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"[":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"@":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{";":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"=":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"d":{".":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"220":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"d":{"df":2,"docs":{"64":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"21":{"tf":1.0},"233":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":8,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"147":{"tf":1.0},"224":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0}}}},"l":{"a":{"c":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"a":{"df":3,"docs":{"203":{"tf":1.0},"217":{"tf":1.0},"37":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"217":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":22,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"144":{"tf":1.0},"147":{"tf":2.0},"199":{"tf":1.0},"200":{"tf":2.0},"205":{"tf":1.7320508075688772},"216":{"tf":2.23606797749979},"217":{"tf":2.23606797749979},"218":{"tf":2.23606797749979},"219":{"tf":1.7320508075688772},"220":{"tf":2.0},"221":{"tf":2.0},"222":{"tf":1.0},"31":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"187":{"tf":1.0},"224":{"tf":1.0},"48":{"tf":1.0}}}}}}}},"t":{"df":3,"docs":{"162":{"tf":1.0},"216":{"tf":1.0},"232":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"236":{"tf":1.0},"239":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"136":{"tf":1.0},"21":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":1,"docs":{"234":{"tf":1.0}},"q":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"234":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"215":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"198":{"tf":1.4142135623730951},"215":{"tf":2.0}}},"df":0,"docs":{}}}}},"t":{"df":3,"docs":{"13":{"tf":1.0},"236":{"tf":1.0},"241":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"117":{"tf":2.449489742783178},"25":{"tf":2.6457513110645907}}}},"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"180":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":1,"docs":{"180":{"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":{},"{":{"a":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"178":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"179":{"tf":1.0},"27":{"tf":1.0}},"e":{"(":{"[":{"0":{",":{"1":{",":{"2":{",":{"3":{",":{"4":{"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":{}},"df":0,"docs":{},"{":{"df":0,"docs":{},"x":{"df":1,"docs":{"179":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"177":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"177":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"176":{"tf":1.0},"26":{"tf":1.0}}}}}},"df":18,"docs":{"167":{"tf":2.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"17":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":2.0},"172":{"tf":3.1622776601683795},"173":{"tf":2.8284271247461903},"174":{"tf":2.0},"175":{"tf":3.0},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":2.0},"20":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"27":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"@":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"110":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":18,"docs":{"14":{"tf":1.0},"184":{"tf":1.0},"195":{"tf":2.23606797749979},"198":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"79":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"29":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951}}}}}},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"232":{"tf":1.0},"238":{"tf":1.0},"40":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"29":{"tf":1.0},"81":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"d":{"df":9,"docs":{"149":{"tf":1.7320508075688772},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"238":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"9":{"tf":1.0}}}},"t":{"df":8,"docs":{"13":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"201":{"tf":1.0},"235":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"49":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"i":{"df":1,"docs":{"120":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"236":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"232":{"tf":1.7320508075688772},"234":{"tf":1.7320508075688772},"241":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"d":{"a":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"233":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}}}}}},"l":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"231":{"tf":1.0},"55":{"tf":1.0},"79":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"217":{"tf":1.0},"218":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":4,"docs":{"194":{"tf":1.0},"21":{"tf":1.0},"253":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"u":{"df":1,"docs":{"86":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"224":{"tf":1.0},"67":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"198":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"125":{"tf":2.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"200":{"tf":1.0},"218":{"tf":1.7320508075688772},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"78":{"tf":1.0}}},"x":{"df":1,"docs":{"234":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":19,"docs":{"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":27,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"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},"216":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"32":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"df":6,"docs":{"229":{"tf":1.0},"233":{"tf":1.0},"241":{"tf":1.0},"250":{"tf":1.0},"76":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}}}}}}}}}},"w":{"df":1,"docs":{"120":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"120":{"tf":1.0},"167":{"tf":1.0},"21":{"tf":1.4142135623730951},"231":{"tf":1.0},"40":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"149":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"76":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"224":{"tf":1.0},"226":{"tf":1.0},"234":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":3,"docs":{"149":{"tf":1.0},"160":{"tf":1.4142135623730951},"238":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{".":{"c":{"a":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"76":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"10":{"tf":1.0},"207":{"tf":1.0},"220":{"tf":1.4142135623730951},"35":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":3,"docs":{"85":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":6,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"194":{"tf":1.0},"233":{"tf":1.0},"6":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":32,"docs":{"112":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"23":{"tf":2.449489742783178},"238":{"tf":1.0},"24":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":3.1622776601683795},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"44":{"tf":2.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"55":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772}},"s":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"155":{"tf":1.0},"28":{"tf":1.0},"58":{"tf":1.0}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"235":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"234":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"229":{"tf":1.0},"235":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"64":{"tf":1.0}}}}},"u":{"c":{"df":1,"docs":{"239":{"tf":1.0}},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":10,"docs":{"112":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"25":{"tf":1.0},"29":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":2.0},"55":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772}}}}},"df":60,"docs":{"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.4142135623730951},"194":{"tf":1.0},"203":{"tf":1.7320508075688772},"206":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"221":{"tf":2.0},"229":{"tf":1.0},"23":{"tf":2.23606797749979},"236":{"tf":1.4142135623730951},"24":{"tf":2.23606797749979},"240":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":2.449489742783178},"30":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":2.6457513110645907},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":2.23606797749979},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"6":{"tf":1.0},"74":{"tf":2.0},"76":{"tf":1.4142135623730951},"79":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"85":{"tf":2.449489742783178},"88":{"tf":2.449489742783178},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"40":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}}}}},".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"25":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":1,"docs":{"29":{"tf":1.0}}}},"[":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"234":{"tf":1.0},"241":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"220":{"tf":1.0},"238":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"233":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.0},"77":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":32,"docs":{"10":{"tf":1.0},"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"17":{"tf":1.0},"180":{"tf":1.4142135623730951},"186":{"tf":1.0},"19":{"tf":1.0},"198":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"215":{"tf":1.0},"220":{"tf":1.0},"228":{"tf":2.0},"231":{"tf":1.0},"234":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.7320508075688772},"32":{"tf":1.0},"37":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"t":{"1":{"2":{"df":0,"docs":{},"h":{"3":{"0":{"df":0,"docs":{},"m":{"5":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}}},"4":{"df":0,"docs":{},"m":{"5":{"6":{".":{"7":{"8":{"9":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"230":{"tf":1.0},"233":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"195":{"tf":1.4142135623730951},"231":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":5,"docs":{"110":{"tf":1.0},"224":{"tf":1.0},"246":{"tf":1.0},"63":{"tf":1.0},"81":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"193":{"tf":1.0}}}},"z":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"c":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"213":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"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":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}},"q":{")":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"200":{"tf":1.0}}}}}}},"3":{"df":1,"docs":{"252":{"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":8,"docs":{"205":{"tf":1.0},"206":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"%":{"2":{"0":{"*":{"%":{"2":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"%":{"2":{"0":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"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":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"200":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"92":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":49,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"148":{"tf":1.4142135623730951},"15":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"16":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"220":{"tf":1.0},"228":{"tf":1.7320508075688772},"229":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":2.23606797749979},"234":{"tf":2.449489742783178},"236":{"tf":1.7320508075688772},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":2.0},"28":{"tf":1.0},"30":{"tf":1.4142135623730951},"33":{"tf":2.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.7320508075688772},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":2.23606797749979},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"60":{"tf":1.0}}},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"235":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"233":{"tf":1.7320508075688772},"238":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"2":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"234":{"tf":1.0},"241":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"64":{"tf":1.0},"74":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"r":{"a":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"3":{"2":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"146":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":2,"docs":{"119":{"tf":2.0},"146":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"w":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"106":{"tf":1.0},"241":{"tf":1.0}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"192":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"239":{"tf":1.4142135623730951},"245":{"tf":1.0},"252":{"tf":1.0},"35":{"tf":1.0},"57":{"tf":1.4142135623730951},"8":{"tf":1.0}},"i":{"df":2,"docs":{"0":{"tf":1.0},"238":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"224":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"67":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"238":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"207":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"81":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"215":{"tf":1.0},"220":{"tf":1.0},"63":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"193":{"tf":1.0},"205":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"240":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"d":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"13":{"tf":1.4142135623730951},"155":{"tf":1.0},"16":{"tf":1.0},"212":{"tf":1.0},"228":{"tf":1.0},"235":{"tf":1.4142135623730951},"239":{"tf":1.0},"243":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"237":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":7,"docs":{"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"245":{"tf":1.0},"56":{"tf":3.3166247903554}}}}}},"d":{"df":2,"docs":{"219":{"tf":1.0},"222":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"u":{"c":{"df":2,"docs":{"231":{"tf":1.0},"237":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"187":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"17":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"233":{"tf":1.0},"253":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"79":{"tf":1.0},"91":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":2.23606797749979}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"203":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"df":1,"docs":{"104":{"tf":1.0}},"t":{"df":9,"docs":{"103":{"tf":1.0},"148":{"tf":1.4142135623730951},"167":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"230":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"238":{"tf":1.0},"29":{"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":2,"docs":{"14":{"tf":1.0},"238":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"194":{"tf":1.0},"20":{"tf":1.0},"241":{"tf":2.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":2.23606797749979}}}},"df":0,"docs":{},"v":{"df":2,"docs":{"157":{"tf":1.0},"234":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":11,"docs":{"117":{"tf":1.0},"13":{"tf":1.0},"179":{"tf":1.4142135623730951},"191":{"tf":1.0},"235":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"30":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"57":{"tf":1.0},"60":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":1,"docs":{"104":{"tf":1.7320508075688772}},"e":{"(":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"a":{"df":2,"docs":{"237":{"tf":1.0},"239":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"195":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":10,"docs":{"115":{"tf":1.0},"149":{"tf":1.0},"170":{"tf":1.0},"179":{"tf":1.0},"217":{"tf":1.0},"49":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"54":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":13,"docs":{"186":{"tf":1.0},"197":{"tf":1.0},"215":{"tf":1.4142135623730951},"22":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":2.23606797749979},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"203":{"tf":1.0},"204":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"127":{"tf":1.0},"241":{"tf":1.0},"35":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"181":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"t":{"df":3,"docs":{"10":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":25,"docs":{"132":{"tf":1.4142135623730951},"16":{"tf":1.0},"215":{"tf":1.0},"222":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"249":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"64":{"tf":1.0},"81":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"246":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":73,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":2.0},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"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},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.7320508075688772},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"220":{"tf":1.0},"222":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"238":{"tf":1.0},"249":{"tf":1.0},"34":{"tf":1.7320508075688772},"38":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":2.23606797749979},"57":{"tf":2.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":2.0},"63":{"tf":1.0},"76":{"tf":2.0},"84":{"tf":1.0},"85":{"tf":2.8284271247461903},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.7320508075688772},"92":{"tf":2.0},"93":{"tf":2.0},"94":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"233":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"110":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}}}}}}},"f":{"c":{"df":2,"docs":{"215":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"234":{"tf":1.0}}}},"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":7,"docs":{"102":{"tf":1.0},"230":{"tf":1.4142135623730951},"232":{"tf":1.0},"239":{"tf":1.0},"54":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"m":{"df":2,"docs":{"195":{"tf":1.7320508075688772},"4":{"tf":1.0}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"227":{"tf":1.0},"248":{"tf":1.0},"252":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"57":{"tf":1.0},"58":{"tf":1.7320508075688772},"60":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"230":{"tf":1.0}}},"t":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"187":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":1,"docs":{"120":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"w":{"df":30,"docs":{"159":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":2.23606797749979},"18":{"tf":1.0},"181":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"228":{"tf":1.4142135623730951},"232":{"tf":1.0},"238":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"245":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"63":{"tf":1.0},"74":{"tf":1.4142135623730951},"76":{"tf":2.449489742783178},"77":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"229":{"tf":1.0}}}},"n":{"df":9,"docs":{"0":{"tf":1.0},"13":{"tf":1.0},"154":{"tf":1.0},"195":{"tf":2.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"32":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0}}}},"å":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"253":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"3":{"df":2,"docs":{"241":{"tf":1.0},"250":{"tf":1.0}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.0},"244":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"13":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"40":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":4,"docs":{"131":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"35":{"tf":1.0}},"s":{"_":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":10,"docs":{"117":{"tf":1.7320508075688772},"203":{"tf":1.0},"218":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"39":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"79":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":14,"docs":{"110":{"tf":1.0},"158":{"tf":1.0},"197":{"tf":1.0},"220":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"220":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"u":{"c":{"df":4,"docs":{"205":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"235":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"57":{"tf":3.1622776601683795},"58":{"tf":1.7320508075688772},"59":{"tf":2.8284271247461903},"60":{"tf":2.8284271247461903},"61":{"tf":1.4142135623730951}}}}}}}}},"w":{"df":2,"docs":{"233":{"tf":1.0},"241":{"tf":1.0}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"180":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"216":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"81":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"237":{"tf":1.0}}}},"n":{"df":1,"docs":{"171":{"tf":1.0}}},"r":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":10,"docs":{"181":{"tf":2.449489742783178},"186":{"tf":1.0},"20":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":2.8284271247461903},"24":{"tf":1.0},"34":{"tf":1.0},"76":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"12":{"tf":1.0},"167":{"tf":1.0},"181":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.4142135623730951},"24":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"230":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"60":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"21":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":3,"docs":{"122":{"tf":1.0},"184":{"tf":1.0},"35":{"tf":1.0}},"e":{"a":{"df":2,"docs":{"117":{"tf":1.0},"230":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"tf":1.0}}}}},"df":20,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"117":{"tf":1.7320508075688772},"123":{"tf":1.0},"133":{"tf":1.4142135623730951},"139":{"tf":1.0},"147":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"238":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"71":{"tf":1.0},"84":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"148":{"tf":1.0},"37":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":14,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"170":{"tf":1.0},"204":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0}},"m":{"df":1,"docs":{"16":{"tf":1.0}}},"n":{"df":5,"docs":{"155":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"46":{"tf":1.0},"56":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":143,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"102":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":2.449489742783178},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"13":{"tf":2.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":2.23606797749979},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":2.0},"15":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"16":{"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},"169":{"tf":1.7320508075688772},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":2.23606797749979},"173":{"tf":2.0},"174":{"tf":1.7320508075688772},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"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.4142135623730951},"185":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"19":{"tf":1.0},"190":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"205":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"218":{"tf":1.0},"220":{"tf":1.0},"222":{"tf":1.4142135623730951},"23":{"tf":1.0},"236":{"tf":1.4142135623730951},"245":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":3.0},"37":{"tf":2.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":2.23606797749979},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":2.23606797749979},"56":{"tf":2.449489742783178},"58":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"64":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":2.0},"76":{"tf":2.0},"77":{"tf":2.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"85":{"tf":2.449489742783178},"86":{"tf":3.0},"87":{"tf":1.7320508075688772},"88":{"tf":2.449489742783178},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":2.6457513110645907},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"97":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"f":{"df":2,"docs":{"198":{"tf":1.0},"237":{"tf":1.0}}},"l":{"df":1,"docs":{"240":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"58":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"222":{"tf":1.4142135623730951},"32":{"tf":1.0}}}}}}},"df":5,"docs":{"15":{"tf":1.0},"167":{"tf":1.0},"233":{"tf":1.4142135623730951},"238":{"tf":1.0},"245":{"tf":1.0}}}},"n":{"d":{"df":4,"docs":{"199":{"tf":1.4142135623730951},"202":{"tf":1.0},"222":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"13":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"88":{"tf":1.0},"90":{"tf":1.0}}}}},"t":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"209":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.7320508075688772},"24":{"tf":1.0},"250":{"tf":1.4142135623730951},"40":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"233":{"tf":1.0}}},"n":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"235":{"tf":1.0}},"s":{"df":1,"docs":{"235":{"tf":1.0}}}}}},"v":{"df":4,"docs":{"110":{"tf":1.0},"231":{"tf":1.0},"246":{"tf":1.0},"63":{"tf":1.0}}}},"t":{"df":15,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"175":{"tf":1.0},"219":{"tf":1.0},"24":{"tf":2.23606797749979},"249":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":2.0},"29":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"54":{"tf":2.0},"56":{"tf":1.0},"91":{"tf":1.0}}}},"h":{"a":{"1":{"(":{"'":{"2":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"145":{"tf":1.4142135623730951}}},"df":1,"docs":{"145":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}},"p":{"df":1,"docs":{"9":{"tf":1.0}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"40":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"139":{"tf":1.0},"22":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"w":{"df":1,"docs":{"13":{"tf":1.0}},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"233":{"tf":1.0},"236":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"85":{"tf":2.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":1,"docs":{"120":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"159":{"tf":1.0},"25":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"169":{"tf":1.0},"221":{"tf":1.0},"233":{"tf":1.0},"29":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"201":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"238":{"tf":1.0},"33":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"187":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"230":{"tf":1.0},"233":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.0},"55":{"tf":1.0}}}}}}}},"n":{"df":1,"docs":{"120":{"tf":1.0}},"g":{"df":0,"docs":{},"l":{"df":16,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"180":{"tf":1.0},"201":{"tf":1.0},"213":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":1.4142135623730951},"45":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"76":{"tf":1.4142135623730951},"87":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}},"h":{"df":1,"docs":{"120":{"tf":1.0}}}},"t":{"df":1,"docs":{"234":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"247":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"d":{"a":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"184":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"252":{"tf":1.0}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"19":{"tf":1.0},"230":{"tf":1.0}}}},"v":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"241":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"229":{"tf":1.0},"77":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"235":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":4,"docs":{"106":{"tf":1.0},"21":{"tf":1.0},"228":{"tf":1.0},"240":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"228":{"tf":1.0},"235":{"tf":1.0},"35":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"238":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"155":{"tf":1.0},"34":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":12,"docs":{"21":{"tf":1.7320508075688772},"233":{"tf":1.0},"234":{"tf":1.0},"241":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"58":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}},"i":{"df":15,"docs":{"117":{"tf":1.4142135623730951},"120":{"tf":1.0},"131":{"tf":1.0},"179":{"tf":1.0},"195":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"229":{"tf":1.0},"253":{"tf":1.0},"29":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"76":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"l":{"'":{"df":1,"docs":{"21":{"tf":1.0}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"167":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0}}}}}}},":":{"2":{"0":{"1":{"1":{"df":8,"docs":{"149":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"233":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"241":{"tf":1.0},"245":{"tf":1.0}}},"6":{"df":3,"docs":{"238":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}},"2":{"3":{"df":4,"docs":{"233":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{"df":2,"docs":{"238":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":54,"docs":{"0":{"tf":1.0},"10":{"tf":1.4142135623730951},"11":{"tf":2.449489742783178},"12":{"tf":1.0},"120":{"tf":1.7320508075688772},"131":{"tf":1.0},"148":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":2.449489742783178},"200":{"tf":1.0},"21":{"tf":3.0},"216":{"tf":1.4142135623730951},"22":{"tf":1.0},"220":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":3.4641016151377544},"234":{"tf":4.69041575982343},"238":{"tf":2.449489742783178},"24":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":2.0},"246":{"tf":1.0},"252":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"44":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"'":{"df":4,"docs":{"120":{"tf":1.0},"175":{"tf":1.0},"234":{"tf":1.0},"56":{"tf":1.0}}},"df":5,"docs":{"110":{"tf":1.0},"21":{"tf":1.4142135623730951},"234":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"35":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"229":{"tf":1.0}}},"i":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"193":{"tf":1.0},"199":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"'":{"df":1,"docs":{"149":{"tf":1.0}}},"df":18,"docs":{"120":{"tf":1.4142135623730951},"160":{"tf":1.0},"169":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"44":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":10,"docs":{"106":{"tf":1.0},"12":{"tf":1.0},"149":{"tf":1.4142135623730951},"159":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"204":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"234":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":7,"docs":{"13":{"tf":1.0},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"233":{"tf":1.7320508075688772},"245":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"18":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"220":{"tf":1.4142135623730951},"222":{"tf":2.23606797749979},"228":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"55":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.0}}}}}}},"i":{"c":{"df":5,"docs":{"186":{"tf":1.0},"220":{"tf":1.0},"238":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"215":{"tf":1.4142135623730951},"76":{"tf":2.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"93":{"tf":1.0}}}}},"y":{"df":1,"docs":{"238":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"190":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"16":{"tf":1.0},"194":{"tf":1.0},"230":{"tf":1.4142135623730951},"238":{"tf":1.0},"29":{"tf":1.0},"6":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":1,"docs":{"229":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":11,"docs":{"194":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":2.6457513110645907},"234":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":2.0},"241":{"tf":1.0},"246":{"tf":1.0},"250":{"tf":2.23606797749979},"6":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":11,"docs":{"0":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"235":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0}}},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"214":{"tf":1.4142135623730951},"220":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0}},"e":{"d":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"214":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"'":{"%":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":1.0}}},"y":{"/":{"%":{"df":0,"docs":{},"m":{"/":{"%":{"d":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"122":{"tf":1.4142135623730951},"148":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"241":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"185":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":30,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"145":{"tf":1.0},"147":{"tf":2.23606797749979},"222":{"tf":1.4142135623730951},"224":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.7320508075688772},"99":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"33":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"21":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"15":{"tf":1.0},"167":{"tf":1.0},"181":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"238":{"tf":1.0},"245":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"u":{"b":{"df":2,"docs":{"169":{"tf":1.0},"55":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"205":{"tf":1.0},"220":{"tf":1.7320508075688772}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"92":{"tf":2.23606797749979},"93":{"tf":2.23606797749979},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"175":{"tf":1.0},"203":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"217":{"tf":1.0},"218":{"tf":1.0}}}}}},"r":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"105":{"tf":1.0},"106":{"tf":2.449489742783178}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"71":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"149":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"233":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"222":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":7,"docs":{"148":{"tf":1.0},"181":{"tf":1.4142135623730951},"22":{"tf":1.0},"220":{"tf":1.0},"28":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"13":{"tf":1.0}},"i":{"df":2,"docs":{"229":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":3,"docs":{"157":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"m":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"128":{"tf":1.0},"134":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"128":{"tf":2.0},"129":{"tf":1.0},"45":{"tf":1.0}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":10,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"140":{"tf":1.0},"156":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":15,"docs":{"150":{"tf":1.0},"175":{"tf":1.0},"186":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.0},"39":{"tf":1.0},"80":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"197":{"tf":1.0},"230":{"tf":1.0},"250":{"tf":1.0}}},"f":{"a":{"c":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":7,"docs":{"106":{"tf":1.0},"112":{"tf":1.4142135623730951},"172":{"tf":1.0},"27":{"tf":1.0},"64":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"x":{"df":7,"docs":{"125":{"tf":1.0},"158":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"245":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":7,"docs":{"13":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"236":{"tf":1.0}}}}}},"df":7,"docs":{"155":{"tf":1.7320508075688772},"158":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.0},"235":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"t":{"1":{"df":6,"docs":{"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0}}},"a":{"b":{"df":0,"docs":{},"l":{"df":29,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"157":{"tf":1.0},"168":{"tf":1.4142135623730951},"170":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"185":{"tf":1.0},"190":{"tf":1.4142135623730951},"216":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.4142135623730951},"238":{"tf":2.0},"247":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.7320508075688772},"37":{"tf":2.23606797749979},"42":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772}},"e":{"'":{"df":1,"docs":{"76":{"tf":1.0}}},"_":{"c":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":3,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"182":{"tf":1.7320508075688772},"183":{"tf":1.0},"184":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":3,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":19,"docs":{"117":{"tf":1.0},"130":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.7320508075688772},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"40":{"tf":1.0},"55":{"tf":1.0},"76":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"231":{"tf":1.0},"251":{"tf":1.0}}}},"n":{"df":1,"docs":{"120":{"tf":1.0}},"h":{"df":1,"docs":{"120":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"df":2,"docs":{"197":{"tf":1.0},"215":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"21":{"tf":1.0}}},"t":{"df":1,"docs":{"252":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"234":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"23":{"tf":1.0}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"230":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"241":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"231":{"tf":1.0},"234":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"37":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}},"df":4,"docs":{"149":{"tf":1.0},"230":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0}}}}}},"n":{"d":{"df":1,"docs":{"34":{"tf":1.0}}},"df":1,"docs":{"230":{"tf":1.0}},"t":{"a":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"231":{"tf":1.0},"252":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"56":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":2,"docs":{"201":{"tf":1.0},"209":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":6,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.0},"224":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"13":{"tf":1.0},"232":{"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":2,"docs":{"132":{"tf":1.0},"56":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"0":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":3,"docs":{"229":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"228":{"tf":1.0},"229":{"tf":1.0}}},"k":{"df":3,"docs":{"243":{"tf":1.0},"250":{"tf":1.0},"53":{"tf":1.0}}}},"r":{"d":{"df":6,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"139":{"tf":1.0},"234":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"117":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"81":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"15":{"tf":1.0},"172":{"tf":1.0},"205":{"tf":1.0},"241":{"tf":1.0}},"t":{"df":2,"docs":{"40":{"tf":1.0},"74":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"21":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":2,"docs":{"232":{"tf":1.0},"73":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"2":{"tf":1.0},"234":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"df":2,"docs":{"199":{"tf":1.0},"8":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":31,"docs":{"11":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.7320508075688772},"13":{"tf":2.0},"148":{"tf":2.23606797749979},"149":{"tf":1.7320508075688772},"150":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"20":{"tf":1.0},"224":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"230":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":3.0},"236":{"tf":1.4142135623730951},"238":{"tf":2.0},"241":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":2.6457513110645907},"71":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"232":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":7,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"148":{"tf":1.0},"156":{"tf":1.0},"224":{"tf":1.4142135623730951},"68":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"150":{"tf":1.0},"80":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"64":{"tf":1.0}}}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"241":{"tf":1.4142135623730951},"250":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"_":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":2,"docs":{"23":{"tf":1.0},"88":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"230":{"tf":1.0},"234":{"tf":1.0},"58":{"tf":1.0},"97":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"237":{"tf":1.0}}}}},"m":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"235":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":4,"docs":{"10":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0}}}},"p":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"21":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"235":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"r":{"a":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"229":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"243":{"tf":1.0},"246":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"/":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"13":{"tf":1.0},"156":{"tf":1.4142135623730951},"228":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.4142135623730951},"238":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"156":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"169":{"tf":1.0}}}},"i":{"df":9,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"168":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"7":{"tf":1.0},"9":{"tf":1.0}},"m":{"df":1,"docs":{"102":{"tf":2.0}}},"p":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"232":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"237":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"df":24,"docs":{"139":{"tf":1.0},"140":{"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},"206":{"tf":1.0},"219":{"tf":1.4142135623730951},"229":{"tf":1.0},"230":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.449489742783178},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"244":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"235":{"tf":1.0},"238":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"2":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"210":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"147":{"tf":1.7320508075688772},"235":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"10":{"tf":1.0},"2":{"tf":1.4142135623730951}}}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"'":{"df":1,"docs":{"224":{"tf":1.0}}},"df":18,"docs":{"117":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.4142135623730951},"140":{"tf":1.0},"159":{"tf":1.0},"233":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"58":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.7320508075688772},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"97":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"228":{"tf":1.0},"238":{"tf":1.0}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":46,"docs":{"11":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.4142135623730951},"167":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.7320508075688772},"20":{"tf":1.0},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":2.23606797749979},"204":{"tf":2.0},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":2.23606797749979},"226":{"tf":1.4142135623730951},"228":{"tf":1.0},"234":{"tf":2.0},"245":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"2":{"df":0,"docs":{},"u":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}}},"1":{".":{"1":{"2":{"3":{"4":{"5":{"6":{"7":{"8":{"9":{"0":{"1":{"2":{"3":{"4":{"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":{}},"df":0,"docs":{}},"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":{"0":{"1":{"8":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"185":{"tf":1.0},"190":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"137":{"tf":1.4142135623730951}}}}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"=":{"d":{"a":{"df":0,"docs":{},"t":{"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":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"df":1,"docs":{"14":{"tf":1.0}},"i":{"df":1,"docs":{"245":{"tf":1.0}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"246":{"tf":1.0},"9":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"235":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"224":{"tf":1.0}}}}},"r":{"df":11,"docs":{"120":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"20":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.0},"31":{"tf":1.0},"86":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"234":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"0":{"tf":1.0},"228":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"233":{"tf":1.0},"237":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"(":{"'":{"3":{"1":{"3":{"5":{"df":1,"docs":{"147":{"tf":1.0}},"z":{"df":0,"docs":{},"z":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"147":{"tf":2.0}}}}},"i":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"100":{"tf":1.0},"107":{"tf":1.7320508075688772}},"e":{"(":{"'":{"a":{"d":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":2.0},"54":{"tf":2.449489742783178},"56":{"tf":1.7320508075688772}}}},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}},"t":{"df":1,"docs":{"245":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"144":{"tf":1.0},"229":{"tf":1.0}}}}}},"x":{"df":2,"docs":{"123":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{"'":{"2":{"0":{"2":{"3":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"9":{"7":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"123":{"tf":1.4142135623730951},"148":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"237":{"tf":1.0},"63":{"tf":1.0},"85":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"235":{"tf":1.0},"253":{"tf":1.0},"47":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":3,"docs":{"220":{"tf":1.0},"238":{"tf":1.0},"76":{"tf":1.0}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"[":{"1":{".":{"9":{"9":{"df":2,"docs":{"40":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"40":{"tf":2.0},"41":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}},"df":2,"docs":{"24":{"tf":2.449489742783178},"27":{"tf":2.0}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.7320508075688772}}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"194":{"tf":1.0},"6":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"230":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":13,"docs":{"117":{"tf":1.0},"13":{"tf":2.23606797749979},"16":{"tf":1.0},"175":{"tf":1.4142135623730951},"190":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":3.0},"243":{"tf":1.0},"25":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"27":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":5,"docs":{"149":{"tf":1.0},"16":{"tf":1.0},"195":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"103":{"tf":1.4142135623730951},"147":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.7320508075688772}}}}}}},"r":{"d":{"df":0,"docs":{},"u":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"226":{"tf":1.0}}},"l":{"df":2,"docs":{"201":{"tf":1.0},"216":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"207":{"tf":1.7320508075688772},"216":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"198":{"tf":1.4142135623730951},"76":{"tf":1.0}}}},"df":69,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"148":{"tf":1.0},"18":{"tf":1.0},"181":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":2.23606797749979},"221":{"tf":1.0},"226":{"tf":1.7320508075688772},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"231":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"25":{"tf":1.0},"252":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"40":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}},"df":30,"docs":{"10":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"15":{"tf":2.0},"16":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"220":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"244":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.0},"252":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0},"76":{"tf":2.0},"8":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"198":{"tf":1.4142135623730951},"215":{"tf":2.0}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"[":{"1":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"_":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"76":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":6,"docs":{"124":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":2,"docs":{"147":{"tf":1.0},"224":{"tf":1.0}}}},"u":{"df":0,"docs":{},"i":{"d":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"'":{"d":{"2":{"c":{"df":0,"docs":{},"e":{"2":{"1":{"c":{"9":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"'":{"d":{"2":{"c":{"df":0,"docs":{},"e":{"2":{"1":{"c":{"9":{"d":{"2":{"6":{"8":{"4":{"0":{"9":{"a":{"b":{"1":{"df":0,"docs":{},"e":{"0":{"4":{"9":{"df":0,"docs":{},"e":{"1":{"2":{"0":{"0":{"b":{"df":0,"docs":{},"f":{"a":{"4":{"7":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{"'":{"d":{"2":{"c":{"df":0,"docs":{},"e":{"2":{"1":{"c":{"9":{"d":{"2":{"6":{"8":{"4":{"0":{"9":{"a":{"b":{"1":{"df":0,"docs":{},"e":{"0":{"4":{"9":{"df":0,"docs":{},"e":{"1":{"2":{"0":{"0":{"b":{"df":0,"docs":{},"f":{"a":{"4":{"7":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"'":{"d":{"2":{"c":{"df":0,"docs":{},"e":{"2":{"1":{"c":{"9":{"d":{"2":{"6":{"8":{"4":{"0":{"9":{"a":{"b":{"1":{"df":0,"docs":{},"e":{"0":{"4":{"9":{"df":0,"docs":{},"e":{"1":{"2":{"0":{"0":{"b":{"df":0,"docs":{},"f":{"a":{"4":{"7":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"144":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"144":{"tf":2.449489742783178},"226":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"3":{".":{"0":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"81":{"tf":2.0}},"i":{"d":{"df":2,"docs":{"12":{"tf":1.0},"167":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":67,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.0},"127":{"tf":1.7320508075688772},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"145":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"180":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"224":{"tf":1.0},"23":{"tf":1.7320508075688772},"233":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"37":{"tf":2.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"48":{"tf":2.0},"56":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"/":{"@":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"226":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}},"t":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}},"df":5,"docs":{"195":{"tf":1.7320508075688772},"198":{"tf":1.0},"29":{"tf":2.0},"35":{"tf":1.0},"4":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"df":2,"docs":{"199":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":5,"docs":{"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"241":{"tf":1.4142135623730951}}},"s":{"a":{"df":2,"docs":{"143":{"tf":1.0},"18":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"110":{"tf":1.0},"13":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"230":{"tf":1.0}},"i":{"df":1,"docs":{"230":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"143":{"tf":1.0},"18":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"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":{"184":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"184":{"tf":1.0},"186":{"tf":1.4142135623730951},"187":{"tf":3.0},"188":{"tf":2.0},"20":{"tf":1.0},"28":{"tf":1.0},"55":{"tf":1.0}}}},"k":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"16":{"tf":1.0}}},"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"13":{"tf":1.4142135623730951},"157":{"tf":1.0},"236":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":3,"docs":{"171":{"tf":1.0},"2":{"tf":1.0},"56":{"tf":1.0}}},"l":{"df":1,"docs":{"233":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"167":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"236":{"tf":1.4142135623730951},"24":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"194":{"tf":1.0},"6":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"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":{"233":{"tf":1.0}}}}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":8,"docs":{"0":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"220":{"tf":1.0},"236":{"tf":1.4142135623730951},"238":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"13":{"tf":1.0},"199":{"tf":1.0},"238":{"tf":1.0}}}},"r":{"df":1,"docs":{"230":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"238":{"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":2,"docs":{"231":{"tf":1.0},"234":{"tf":1.4142135623730951}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"71":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"131":{"tf":1.4142135623730951},"233":{"tf":1.0},"35":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"102":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"174":{"tf":1.7320508075688772},"175":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"132":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"55":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"16":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"34":{"tf":1.0},"60":{"tf":1.0}}}}}}}},"o":{"b":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":5,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0}}},"l":{"d":{"df":7,"docs":{"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"238":{"tf":2.0},"250":{"tf":1.0},"5":{"tf":1.0},"97":{"tf":2.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"10":{"tf":1.0},"221":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"215":{"tf":1.0},"228":{"tf":1.0},"34":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"207":{"tf":1.7320508075688772},"216":{"tf":1.0}}}}},"x":{"%":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"'":{"d":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"224":{"tf":1.0},"72":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":30,"docs":{"110":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"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},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"88":{"tf":1.0},"91":{"tf":2.0}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"238":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"21":{"tf":1.0},"241":{"tf":1.4142135623730951}}}}}}},"s":{"d":{":":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"224":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"224":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"204":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"224":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"224":{"tf":1.0}}}}},"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":2,"docs":{"224":{"tf":1.0},"226":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"224":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"216":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":3,"docs":{"158":{"tf":1.0},"179":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"229":{"tf":1.0},"230":{"tf":1.4142135623730951},"241":{"tf":1.0},"71":{"tf":1.0}}}},"df":1,"docs":{"234":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"219":{"tf":1.0},"222":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"13":{"tf":1.0},"195":{"tf":1.0},"234":{"tf":1.0}}}},"r":{"df":2,"docs":{"0":{"tf":1.0},"250":{"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":{"167":{"tf":1.0}}}}}}}}}},"z":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"141":{"tf":1.0},"215":{"tf":1.0},"81":{"tf":1.7320508075688772}}}},"df":1,"docs":{"147":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"3":{"2":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"146":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":4,"docs":{"146":{"tf":1.0},"225":{"tf":1.0},"41":{"tf":1.0},"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"z":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"140":{"tf":1.0},"141":{"tf":1.4142135623730951},"215":{"tf":1.0},"81":{"tf":1.7320508075688772}}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"0":{":":{"0":{"0":{":":{"0":{"0":{".":{"0":{"0":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"z":{"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":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":16,"docs":{"122":{"tf":2.0},"123":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"137":{"tf":1.0},"161":{"tf":2.23606797749979},"162":{"tf":2.23606797749979},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"225":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"68":{"tf":2.6457513110645907},"69":{"tf":2.0},"71":{"tf":1.7320508075688772}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{".":{"0":{"0":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"3":{"df":0,"docs":{},"z":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"137":{"tf":1.0},"224":{"tf":1.0},"68":{"tf":1.0}},"z":{"df":5,"docs":{"123":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":3,"docs":{"161":{"tf":1.0},"162":{"tf":1.0},"71":{"tf":1.0}}},"3":{":":{"0":{"4":{":":{"0":{"5":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"162":{"tf":1.0},"163":{"tf":1.0}}},"4":{"df":9,"docs":{"161":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}}},"5":{"df":4,"docs":{"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"164":{"tf":1.0}}},"7":{"df":5,"docs":{"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0}}},"8":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"156":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"236":{"tf":1.0}}},"9":{"df":1,"docs":{"245":{"tf":1.4142135623730951}},"t":{"2":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":3,"docs":{"204":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}}}},"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":{"1":{"2":{"d":{"df":0,"docs":{},"e":{"4":{"3":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"105":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"41":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":2.0}}},"1":{",":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":6,"docs":{"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0}}}}}}}},"2":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"4":{"0":{"df":3,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"40":{"tf":1.0}}},"df":1,"docs":{"40":{"tf":1.0}}},"5":{"0":{"df":3,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"40":{"tf":1.0}}},"df":1,"docs":{"40":{"tf":1.0}}},"9":{"8":{"df":1,"docs":{"25":{"tf":1.0}}},"9":{"df":4,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"25":{"tf":1.0}}},"df":1,"docs":{"117":{"tf":1.0}}},"df":1,"docs":{"101":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"229":{"tf":1.0}}}}},"1":{"df":1,"docs":{"233":{"tf":1.0}}},"2":{"3":{"df":5,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"190":{"tf":1.0},"64":{"tf":1.0}}},"8":{".":{"5":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"66":{"tf":1.0}}},":":{"3":{"4":{":":{"5":{"6":{".":{"7":{"8":{"9":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"74":{"tf":1.7320508075688772},"81":{"tf":2.0}}},"3":{"df":1,"docs":{"46":{"tf":1.0}}},"5":{"0":{"0":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":0,"docs":{},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"9":{"2":{"8":{"df":1,"docs":{"245":{"tf":1.0}}},"9":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":1,"docs":{"233":{"tf":1.0}}},"4":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"df":2,"docs":{"233":{"tf":1.7320508075688772},"235":{"tf":1.0}}},"2":{"df":1,"docs":{"74":{"tf":1.7320508075688772}}},"5":{"df":1,"docs":{"233":{"tf":1.0}}},"6":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"0":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"9":{"2":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":29,"docs":{"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"132":{"tf":1.0},"140":{"tf":1.0},"145":{"tf":1.0},"168":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":2.23606797749979},"179":{"tf":1.4142135623730951},"201":{"tf":1.0},"205":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"77":{"tf":3.0},"81":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"91":{"tf":2.8284271247461903},"94":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"2":{",":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}},"'":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"'":{"2":{"0":{"2":{"3":{"df":5,"docs":{"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"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":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"0":{"df":2,"docs":{"25":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":1,"docs":{"81":{"tf":2.0}}},"9":{"9":{"df":7,"docs":{"217":{"tf":1.0},"23":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"1":{"df":8,"docs":{"161":{"tf":2.0},"162":{"tf":2.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"241":{"tf":1.0},"71":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"230":{"tf":1.0}}},"6":{"df":1,"docs":{"241":{"tf":1.0}}},"7":{"df":4,"docs":{"224":{"tf":1.4142135623730951},"241":{"tf":1.0},"68":{"tf":2.23606797749979},"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"1":{"0":{"df":3,"docs":{"229":{"tf":1.0},"233":{"tf":1.0},"241":{"tf":1.0}}},"1":{"df":3,"docs":{"204":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}}},"2":{"df":1,"docs":{"241":{"tf":1.0}}},"5":{"df":1,"docs":{"241":{"tf":1.0}}},"6":{"df":1,"docs":{"241":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":3,"docs":{"229":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"241":{"tf":1.0},"251":{"tf":1.0}}},"3":{"df":8,"docs":{"13":{"tf":1.4142135623730951},"156":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"225":{"tf":1.0},"233":{"tf":1.0},"252":{"tf":1.0},"81":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"134":{"tf":1.0}}},"1":{"df":1,"docs":{"81":{"tf":1.7320508075688772}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"\"":{",":{"\"":{"@":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"\"":{":":{"\"":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"d":{":":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"\"":{"df":0,"docs":{},"}":{"df":0,"docs":{},"}":{",":{"df":0,"docs":{},"{":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"1":{"\"":{":":{"1":{",":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"2":{"\"":{":":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"]":{",":{"[":{"1":{",":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"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":5,"docs":{"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0}}},"3":{":":{"3":{"0":{":":{"0":{"0":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"9":{":":{"1":{"2":{".":{"1":{"2":{"3":{"4":{"5":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"124":{"tf":1.0}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":2,"docs":{"158":{"tf":1.0},"159":{"tf":1.0}}},"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":{"179":{"tf":1.4142135623730951}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":3,"docs":{"156":{"tf":1.0},"158":{"tf":1.0},"236":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":37,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"127":{"tf":1.0},"132":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":2.23606797749979},"176":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.7320508075688772},"226":{"tf":1.0},"23":{"tf":1.0},"238":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":2.23606797749979},"77":{"tf":2.8284271247461903},"78":{"tf":2.6457513110645907},"81":{"tf":1.4142135623730951},"86":{"tf":2.23606797749979},"87":{"tf":1.4142135623730951},"91":{"tf":2.0},"97":{"tf":1.4142135623730951}}},"3":{",":{"4":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},".":{"0":{"0":{"df":1,"docs":{"29":{"tf":1.0}}},"df":1,"docs":{"39":{"tf":1.0}}},"5":{"5":{"5":{"df":1,"docs":{"86":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{"df":5,"docs":{"218":{"tf":1.0},"23":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":0,"docs":{},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"159":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"3":{"5":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"74":{"tf":1.7320508075688772}}},"7":{"9":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"3":{":":{"3":{"8":{"0":{"3":{"df":2,"docs":{"195":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"198":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":1,"docs":{"232":{"tf":1.0}}},"df":21,"docs":{"100":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"132":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.7320508075688772},"179":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.0},"48":{"tf":1.4142135623730951},"54":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"77":{"tf":2.0},"91":{"tf":2.6457513110645907},"97":{"tf":1.0}}},"4":{".":{"0":{"0":{"df":2,"docs":{"23":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"7":{"7":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"9":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"54":{"tf":1.0}}},"1":{"df":1,"docs":{"215":{"tf":1.7320508075688772}}},"9":{"a":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":3,"docs":{"179":{"tf":1.0},"224":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"5":{"6":{"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"7":{"1":{"4":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"b":{"9":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":0,"docs":{},"e":{"1":{"2":{"0":{"0":{"b":{"df":0,"docs":{},"f":{"a":{"4":{"7":{"df":1,"docs":{"144":{"tf":1.0}}},"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":{"8":{"5":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"9":{"2":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"100":{"tf":1.0},"106":{"tf":1.4142135623730951},"132":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":2.0},"178":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"42":{"tf":1.0},"46":{"tf":1.0},"73":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"91":{"tf":2.0},"97":{"tf":1.0}},"f":{"7":{"4":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"}":{"]":{".":{"a":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{".":{"0":{"0":{"df":5,"docs":{"29":{"tf":1.0},"55":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"9":{"8":{"df":2,"docs":{"24":{"tf":1.0},"28":{"tf":1.0}}},"9":{"df":5,"docs":{"139":{"tf":1.0},"23":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"c":{"5":{"a":{"5":{"1":{"2":{"9":{"0":{"7":{"4":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"101":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.4142135623730951},"29":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"77":{"tf":2.0},"78":{"tf":2.0},"97":{"tf":1.0}}},"6":{"0":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}},"4":{"/":{"1":{"2":{"8":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"224":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}},"6":{"df":1,"docs":{"108":{"tf":1.0}}},"7":{"df":1,"docs":{"108":{"tf":1.0}}},"df":2,"docs":{"29":{"tf":1.7320508075688772},"97":{"tf":1.0}},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"238":{"tf":1.0}}}}},"7":{".":{"9":{"9":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"5":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{"6":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"4":{"df":2,"docs":{"224":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":1,"docs":{"112":{"tf":1.0}}},"8":{"9":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"180":{"tf":1.7320508075688772},"29":{"tf":1.0}}},"8":{".":{"9":{"9":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"5":{"2":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{"d":{"d":{"2":{"9":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"8":{"df":0,"docs":{},"e":{"7":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"1":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"233":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"147":{"tf":1.0},"224":{"tf":1.4142135623730951}}},"9":{".":{"9":{"9":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"7":{"1":{"9":{"9":{"2":{"5":{"4":{"7":{"4":{"0":{"9":{"9":{"2":{".":{"1":{"2":{"3":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"2":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"176":{"tf":1.0}}},"7":{",":{"9":{"6":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"176":{"tf":1.0},"228":{"tf":1.0}}},"9":{"df":3,"docs":{"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"_":{"df":1,"docs":{"88":{"tf":1.0}}},"a":{".":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"b":{"7":{"c":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"120":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":10,"docs":{"10":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.0},"241":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"58":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}}}}},"c":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":17,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"208":{"tf":2.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},"220":{"tf":1.0},"35":{"tf":1.4142135623730951},"45":{"tf":1.0},"64":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"125":{"tf":1.0},"151":{"tf":1.0},"155":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"155":{"tf":1.0},"175":{"tf":1.0}}}}}}}},"r":{"d":{"df":6,"docs":{"13":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"233":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"120":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"120":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"55":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"20":{"tf":1.0},"57":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"228":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"243":{"tf":1.0},"251":{"tf":2.23606797749979}}}}},"d":{"df":5,"docs":{"15":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.0},"46":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"183":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"245":{"tf":1.0}}}}}}},"df":0,"docs":{}},"[":{"0":{"]":{".":{"c":{"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":5,"docs":{"14":{"tf":1.0},"168":{"tf":1.0},"229":{"tf":1.4142135623730951},"238":{"tf":1.0},"56":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"33":{"tf":1.0},"43":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"253":{"tf":1.0}}}}}}},"g":{"df":1,"docs":{"91":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":5,"docs":{"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"134":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"16":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":2,"docs":{"228":{"tf":1.0},"241":{"tf":1.0}},"m":{"df":1,"docs":{"198":{"tf":1.0}}}},"k":{"a":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"a":{"df":3,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"a":{"df":4,"docs":{"24":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.7320508075688772},"48":{"tf":1.0}},"s":{"df":2,"docs":{"120":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":8,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"181":{"tf":1.0},"201":{"tf":1.4142135623730951},"239":{"tf":1.0},"246":{"tf":1.0},"47":{"tf":1.0},"57":{"tf":1.0}}},"y":{"d":{"b":{"df":2,"docs":{"241":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"236":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"234":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}}}},"z":{"df":0,"docs":{},"o":{"'":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":2,"docs":{"194":{"tf":2.0},"6":{"tf":2.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":5,"docs":{"176":{"tf":1.0},"193":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}},"n":{"df":5,"docs":{"110":{"tf":1.0},"187":{"tf":1.0},"234":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":6,"docs":{"13":{"tf":1.0},"190":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"250":{"tf":1.0},"40":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":10,"docs":{"16":{"tf":1.0},"19":{"tf":1.0},"216":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0},"28":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"237":{"tf":1.0},"241":{"tf":1.4142135623730951},"250":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"245":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"239":{"tf":1.0}}}},"t":{"df":5,"docs":{"228":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"246":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"216":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":5,"docs":{"37":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"15":{"tf":1.0},"21":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"77":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"0":{"tf":1.0},"235":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"232":{"tf":1.4142135623730951},"234":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"220":{"tf":2.23606797749979},"228":{"tf":1.0},"234":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":29,"docs":{"192":{"tf":1.0},"199":{"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.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},"238":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"8":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"218":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"235":{"tf":1.4142135623730951},"41":{"tf":1.0},"51":{"tf":1.0}},"i":{"df":0,"docs":{},"x":{"df":27,"docs":{"227":{"tf":1.7320508075688772},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"203":{"tf":2.449489742783178},"204":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":2.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0}}}}}},"l":{"d":{"+":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"204":{"tf":2.0},"212":{"tf":2.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":14,"docs":{"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"205":{"tf":2.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},"216":{"tf":1.0},"220":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"n":{"d":{".":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"213":{"tf":2.0},"220":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"214":{"tf":2.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":3,"docs":{"207":{"tf":2.0},"211":{"tf":2.0},"216":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"109":{"tf":1.0},"234":{"tf":1.0}}},"df":2,"docs":{"134":{"tf":1.0},"54":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"168":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"238":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":11,"docs":{"227":{"tf":1.0},"242":{"tf":1.7320508075688772},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"238":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"110":{"tf":1.7320508075688772},"141":{"tf":1.0},"147":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"206":{"tf":1.0},"215":{"tf":1.0},"233":{"tf":1.0},"64":{"tf":1.0},"97":{"tf":1.7320508075688772}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"109":{"tf":1.0},"127":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"16":{"tf":1.0},"230":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"(":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":1,"docs":{"40":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"132":{"tf":2.0},"40":{"tf":1.0}}}}},"df":0,"docs":{}},"df":22,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"132":{"tf":2.23606797749979},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"180":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772},"73":{"tf":2.8284271247461903},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.0},"91":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":2.449489742783178}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"220":{"tf":3.1622776601683795},"228":{"tf":1.0},"234":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.0}}}}}},"s":{"c":{"df":2,"docs":{"44":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"120":{"tf":1.0}},"h":{"df":1,"docs":{"120":{"tf":1.0}}}}},"k":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"234":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"185":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":2.8284271247461903},"191":{"tf":2.23606797749979},"20":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"10":{"tf":1.0},"206":{"tf":1.0},"220":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"2":{"df":1,"docs":{"120":{"tf":1.0}}},"df":1,"docs":{"120":{"tf":1.0}},"h":{"df":1,"docs":{"120":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"229":{"tf":1.0},"233":{"tf":1.0},"57":{"tf":1.0},"81":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"131":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":4,"docs":{"229":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.0},"215":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"215":{"tf":1.4142135623730951},"33":{"tf":1.0}}}}},"o":{"df":1,"docs":{"66":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":11,"docs":{"160":{"tf":1.0},"175":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"29":{"tf":1.0},"50":{"tf":1.0},"6":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"130":{"tf":1.7320508075688772}}},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"11":{"tf":1.0},"158":{"tf":1.0},"215":{"tf":1.0}}}},"df":1,"docs":{"237":{"tf":1.0}}},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"250":{"tf":1.0}}}}}},"b":{"'":{"1":{"5":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"]":{"[":{"'":{"a":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{".":{"[":{"'":{"a":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"169":{"tf":1.0}}},"c":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"1":{"df":0,"docs":{},"e":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}},"8":{"df":0,"docs":{},"e":{"3":{"5":{"c":{"8":{"2":{"b":{"9":{"3":{"5":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"[":{"'":{"a":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":2.6457513110645907}}}}}}},"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"13":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"229":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"235":{"tf":1.0}}}},"r":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"6":{"4":{"(":{"'":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"'":{"0":{"1":{"0":{"2":{"0":{"3":{"df":1,"docs":{"143":{"tf":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":{"143":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":11,"docs":{"120":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"225":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"25":{"tf":1.0},"45":{"tf":1.0}}},"i":{"c":{"df":14,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"215":{"tf":2.0},"33":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"y":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":8,"docs":{"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"225":{"tf":1.0},"77":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"233":{"tf":1.0},"235":{"tf":1.0}}}}},"df":1,"docs":{"29":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"20":{"tf":1.0},"47":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"12":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"175":{"tf":1.0},"192":{"tf":1.0},"233":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"85":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"131":{"tf":1.0},"203":{"tf":1.0},"234":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"58":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"232":{"tf":1.0},"234":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":8,"docs":{"167":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"220":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"58":{"tf":1.0},"88":{"tf":1.0}}}}},"n":{"d":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"235":{"tf":1.0}}}}},"t":{"df":3,"docs":{"0":{"tf":1.0},"148":{"tf":1.0},"19":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"158":{"tf":2.449489742783178},"159":{"tf":1.4142135623730951},"233":{"tf":1.0},"84":{"tf":2.8284271247461903}}}}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":2,"docs":{"21":{"tf":1.0},"245":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"226":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"146":{"tf":1.4142135623730951},"194":{"tf":1.0},"197":{"tf":2.0},"198":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"6":{"tf":1.0},"72":{"tf":1.0}}}}},"d":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"74":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":4,"docs":{"224":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"86":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":2.6457513110645907}}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"df":9,"docs":{"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":2.0},"224":{"tf":1.0},"226":{"tf":1.0},"250":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"215":{"tf":1.0},"216":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"224":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"85":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":12,"docs":{"159":{"tf":1.0},"219":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"237":{"tf":1.0},"245":{"tf":1.0},"38":{"tf":1.4142135623730951},"52":{"tf":1.0},"58":{"tf":1.0},"85":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}}}},"x":{"df":1,"docs":{"238":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"35":{"tf":1.0},"74":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"78":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"196":{"tf":1.0}}}},"d":{"df":2,"docs":{"183":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"238":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"229":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":10,"docs":{"193":{"tf":1.0},"196":{"tf":1.0},"21":{"tf":1.0},"229":{"tf":1.4142135623730951},"231":{"tf":1.0},"234":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"247":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":3,"docs":{"241":{"tf":1.4142135623730951},"246":{"tf":1.0},"250":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":3,"docs":{"200":{"tf":1.4142135623730951},"219":{"tf":2.23606797749979},"221":{"tf":1.7320508075688772}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":5,"docs":{"230":{"tf":1.0},"233":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.7320508075688772},"241":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"221":{"tf":1.0},"23":{"tf":1.0}}}}}},"y":{"df":2,"docs":{"229":{"tf":1.0},"240":{"tf":1.0}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"101":{"tf":1.0},"146":{"tf":1.4142135623730951}}}}}},"c":{"'":{"]":{"[":{"1":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"74":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":4,"docs":{"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"74":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"34":{"tf":1.0},"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"[":{"1":{"df":1,"docs":{"173":{"tf":1.0}}},"2":{"]":{".":{"df":0,"docs":{},"f":{"df":1,"docs":{"180":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"83":{"tf":1.0}}}},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"220":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}},"a":{"d":{"a":{"'":{"df":0,"docs":{},"}":{",":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"238":{"tf":1.0},"56":{"tf":1.4142135623730951},"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"57":{"tf":1.0},"59":{"tf":1.0}}}}}},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"236":{"tf":1.0},"47":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.0},"34":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":10,"docs":{"129":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"181":{"tf":1.0},"20":{"tf":1.0},"231":{"tf":1.0},"238":{"tf":1.4142135623730951},"54":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0}}},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}},"1":{"2":{"3":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":5,"docs":{"136":{"tf":2.0},"64":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.0},"97":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}},"d":{"c":{"df":1,"docs":{"230":{"tf":1.0}}},"df":1,"docs":{"10":{"tf":1.0}}},"df":16,"docs":{"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"168":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.7320508075688772},"177":{"tf":2.0},"178":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"91":{"tf":2.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"230":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":1,"docs":{"239":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"109":{"tf":1.0},"97":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"233":{"tf":1.0},"238":{"tf":1.0}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"c":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"20":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.4142135623730951}}}},"r":{"(":{"1":{"0":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"6":{"5":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"147":{"tf":1.7320508075688772},"77":{"tf":1.0},"88":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"_":{"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":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"100":{"tf":2.0},"112":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.7320508075688772},"64":{"tf":2.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":4,"docs":{"139":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"185":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"185":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"172":{"tf":1.7320508075688772},"173":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"120":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":4,"docs":{"21":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"238":{"tf":1.0},"250":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":17,"docs":{"167":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":2.0},"34":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":2.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"16":{"tf":1.0},"195":{"tf":1.0},"230":{"tf":1.0}}},"r":{"df":3,"docs":{"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"10":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"215":{"tf":1.7320508075688772},"222":{"tf":1.4142135623730951},"35":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"151":{"tf":1.0},"233":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"10":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"149":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"u":{"d":{"df":1,"docs":{"250":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"141":{"tf":1.7320508075688772}},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"d":{"'":{"df":1,"docs":{"233":{"tf":1.0}}},"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":6,"docs":{"10":{"tf":1.0},"108":{"tf":1.0},"181":{"tf":1.0},"215":{"tf":1.7320508075688772},"253":{"tf":1.0},"9":{"tf":1.0}}}},"df":1,"docs":{"120":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":4,"docs":{"23":{"tf":1.0},"24":{"tf":2.23606797749979},"83":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":2,"docs":{"230":{"tf":1.0},"232":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"120":{"tf":1.0},"179":{"tf":1.0},"225":{"tf":1.4142135623730951},"40":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"234":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"205":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"222":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"1":{"\"":{",":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"2":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"1":{",":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"2":{"\"":{":":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"211":{"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":{",":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"2":{"\"":{":":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"132":{"tf":1.0},"173":{"tf":2.0},"174":{"tf":1.4142135623730951},"48":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":2.0},"77":{"tf":2.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0}}},"2":{"df":1,"docs":{"48":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"183":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"213":{"tf":1.0},"214":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"246":{"tf":1.7320508075688772},"249":{"tf":1.7320508075688772}}}},"df":35,"docs":{"128":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"155":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.4142135623730951},"187":{"tf":2.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"220":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.7320508075688772},"246":{"tf":1.0},"25":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":2.0},"37":{"tf":1.4142135623730951},"38":{"tf":2.8284271247461903},"39":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"54":{"tf":2.6457513110645907},"63":{"tf":1.0},"76":{"tf":2.0},"79":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"205":{"tf":1.0},"215":{"tf":1.0},"221":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"230":{"tf":1.0},"241":{"tf":1.0}}},"m":{"a":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":4,"docs":{"133":{"tf":1.0},"209":{"tf":1.0},"23":{"tf":1.4142135623730951},"35":{"tf":1.0}},"n":{"d":{"df":7,"docs":{"195":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"240":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"190":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"238":{"tf":1.0},"247":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.0},"55":{"tf":1.7320508075688772}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"235":{"tf":1.0}}}},"r":{"df":6,"docs":{"234":{"tf":1.0},"238":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.7320508075688772}}}}}}},"t":{"df":9,"docs":{"136":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"194":{"tf":1.0},"241":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":2.0},"6":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"196":{"tf":1.0},"197":{"tf":1.0},"247":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"t":{"df":5,"docs":{"0":{"tf":1.0},"207":{"tf":1.0},"241":{"tf":1.0},"30":{"tf":1.0},"44":{"tf":1.0}}},"x":{"df":4,"docs":{"229":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"13":{"tf":1.0},"228":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}},"s":{"df":1,"docs":{"21":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"49":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"228":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"237":{"tf":2.0},"250":{"tf":2.0},"74":{"tf":1.0},"78":{"tf":2.0}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":2.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"109":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"97":{"tf":2.6457513110645907}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"234":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"235":{"tf":1.0},"237":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"138":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"46":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"151":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":3.0},"38":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"232":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":2.0}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"185":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":2,"docs":{"185":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"78":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":17,"docs":{"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"161":{"tf":2.0},"20":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":2.0},"95":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":24,"docs":{"132":{"tf":1.0},"199":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951},"202":{"tf":1.7320508075688772},"203":{"tf":2.0},"204":{"tf":1.7320508075688772},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"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},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"233":{"tf":1.0},"55":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"253":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"22":{"tf":1.0},"37":{"tf":1.0},"91":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"'":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"235":{"tf":1.0}}},"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":2,"docs":{"197":{"tf":1.0},"233":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"253":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":4,"docs":{"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"233":{"tf":1.0},"245":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"247":{"tf":1.0}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"108":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"120":{"tf":1.0}}},"t":{"df":3,"docs":{"229":{"tf":1.0},"233":{"tf":1.4142135623730951},"55":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"h":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":3,"docs":{"112":{"tf":1.0},"131":{"tf":2.23606797749979},"173":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"8":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"40":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":8,"docs":{"34":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"241":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"148":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"233":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"237":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":18,"docs":{"12":{"tf":1.4142135623730951},"170":{"tf":1.0},"187":{"tf":2.6457513110645907},"190":{"tf":2.449489742783178},"22":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"235":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"55":{"tf":2.23606797749979},"56":{"tf":1.4142135623730951}}}},"u":{"b":{"df":0,"docs":{},"e":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"l":{"df":23,"docs":{"10":{"tf":1.0},"199":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":2.0},"207":{"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},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"5":{"tf":1.0},"8":{"tf":2.23606797749979}},"i":{"df":1,"docs":{"74":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":2,"docs":{"125":{"tf":1.4142135623730951},"154":{"tf":2.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"125":{"tf":1.4142135623730951},"153":{"tf":2.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"125":{"tf":1.4142135623730951},"13":{"tf":1.0},"152":{"tf":2.0}}}}},"df":0,"docs":{}}}}}}}},"df":9,"docs":{"13":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"29":{"tf":1.0},"56":{"tf":1.0},"80":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"125":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"d":{"2":{"6":{"8":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"15":{"tf":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":{"15":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"a":{"'":{"df":1,"docs":{"236":{"tf":1.0}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":27,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":1.4142135623730951},"155":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"181":{"tf":1.4142135623730951},"191":{"tf":1.0},"21":{"tf":1.4142135623730951},"228":{"tf":2.23606797749979},"229":{"tf":2.8284271247461903},"230":{"tf":2.23606797749979},"231":{"tf":1.7320508075688772},"232":{"tf":1.7320508075688772},"233":{"tf":3.7416573867739413},"234":{"tf":1.7320508075688772},"235":{"tf":2.0},"238":{"tf":2.449489742783178},"239":{"tf":1.7320508075688772},"241":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}},"df":79,"docs":{"117":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"143":{"tf":1.0},"148":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772},"16":{"tf":2.0},"167":{"tf":1.0},"17":{"tf":1.4142135623730951},"170":{"tf":1.0},"192":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":2.0},"208":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":2.23606797749979},"22":{"tf":2.449489742783178},"220":{"tf":1.0},"223":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.7320508075688772},"232":{"tf":1.4142135623730951},"233":{"tf":3.3166247903554},"234":{"tf":1.0},"235":{"tf":2.8284271247461903},"236":{"tf":1.7320508075688772},"237":{"tf":1.4142135623730951},"238":{"tf":3.3166247903554},"239":{"tf":2.0},"24":{"tf":1.0},"241":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.0},"246":{"tf":1.4142135623730951},"249":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":2.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.7320508075688772},"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.4142135623730951},"81":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"234":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"(":{"'":{"2":{"0":{"0":{"1":{"df":1,"docs":{"122":{"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":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"121":{"tf":1.4142135623730951},"151":{"tf":1.0},"80":{"tf":1.0}}}}}},"df":11,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":2.0},"148":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.4142135623730951},"156":{"tf":1.0},"224":{"tf":1.4142135623730951},"245":{"tf":1.0},"69":{"tf":2.6457513110645907}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"'":{"2":{"0":{"0":{"1":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"2":{"0":{"2":{"3":{"df":1,"docs":{"81":{"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":{}}}}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}}}},"y":{"df":4,"docs":{"124":{"tf":1.4142135623730951},"154":{"tf":1.0},"246":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"b":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":21,"docs":{"122":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"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},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.4142135623730951}},"e":{"6":{"df":0,"docs":{},"f":{"df":1,"docs":{"60":{"tf":1.0}}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}}},"c":{"a":{"d":{"df":5,"docs":{"230":{"tf":1.7320508075688772},"232":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951},"241":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"238":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"171":{"tf":1.0}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":12,"docs":{"13":{"tf":1.0},"133":{"tf":1.0},"16":{"tf":1.0},"172":{"tf":1.0},"195":{"tf":1.4142135623730951},"198":{"tf":1.7320508075688772},"208":{"tf":1.0},"228":{"tf":1.0},"236":{"tf":1.0},"44":{"tf":1.0},"57":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"190":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"215":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"88":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"120":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"13":{"tf":1.4142135623730951},"188":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":2.0},"235":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":3.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"133":{"tf":1.4142135623730951},"211":{"tf":1.0},"222":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"32":{"tf":1.0},"35":{"tf":1.4142135623730951}}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"238":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"233":{"tf":1.0},"239":{"tf":1.0}}}},"t":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"131":{"tf":1.0},"154":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"167":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0}}}}},"s":{"c":{"df":2,"docs":{"132":{"tf":1.0},"44":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"a":{"c":{"df":4,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"58":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"234":{"tf":1.4142135623730951},"235":{"tf":1.0}}}},"r":{"df":4,"docs":{"187":{"tf":1.0},"233":{"tf":1.4142135623730951},"236":{"tf":1.0},"64":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"233":{"tf":2.0},"235":{"tf":1.7320508075688772}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"17":{"tf":1.0},"192":{"tf":1.0},"20":{"tf":1.0},"224":{"tf":1.0},"237":{"tf":1.0},"248":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"20":{"tf":1.0},"229":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"131":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":2.0},"245":{"tf":1.0},"252":{"tf":1.0},"34":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"225":{"tf":1.0}}}},"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"131":{"tf":1.0},"154":{"tf":1.0},"16":{"tf":1.0},"234":{"tf":1.4142135623730951},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"58":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"233":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0}},"i":{"df":2,"docs":{"15":{"tf":1.0},"238":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"132":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"232":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"198":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.4142135623730951},"249":{"tf":1.0},"49":{"tf":1.0},"77":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"197":{"tf":1.0},"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"74":{"tf":1.7320508075688772},"79":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":4,"docs":{"228":{"tf":1.4142135623730951},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"250":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"l":{"df":5,"docs":{"201":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"55":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"8":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"df":2,"docs":{"195":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":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":{"195":{"tf":1.0}}}}},"df":5,"docs":{"193":{"tf":1.7320508075688772},"195":{"tf":2.449489742783178},"196":{"tf":1.7320508075688772},"197":{"tf":1.0},"4":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":43,"docs":{"0":{"tf":1.4142135623730951},"117":{"tf":2.449489742783178},"12":{"tf":1.0},"120":{"tf":1.0},"131":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.7320508075688772},"17":{"tf":1.0},"171":{"tf":1.0},"18":{"tf":2.23606797749979},"181":{"tf":1.4142135623730951},"192":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"22":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.4142135623730951},"23":{"tf":2.23606797749979},"230":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.7320508075688772},"234":{"tf":1.0},"238":{"tf":2.0},"24":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"15":{"tf":1.0},"16":{"tf":1.0},"176":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"197":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"22":{"tf":1.0},"247":{"tf":1.0}}}},"t":{"df":2,"docs":{"169":{"tf":1.0},"171":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"171":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"195":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"21":{"tf":1.4142135623730951},"245":{"tf":1.0}},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"228":{"tf":1.0},"235":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}},"r":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"187":{"tf":1.0},"188":{"tf":2.0},"191":{"tf":1.7320508075688772},"230":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"71":{"tf":1.0}}},"m":{"df":1,"docs":{"233":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"230":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"233":{"tf":1.0},"236":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":2.23606797749979},"60":{"tf":1.7320508075688772}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"238":{"tf":1.0},"71":{"tf":2.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"p":{"1":{"df":0,"docs":{},"y":{"2":{"df":0,"docs":{},"m":{"1":{"0":{"d":{"df":0,"docs":{},"t":{"2":{"df":0,"docs":{},"h":{"3":{"0":{"df":0,"docs":{},"m":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"1":{"2":{"df":0,"docs":{},"h":{"3":{"0":{"df":0,"docs":{},"m":{"5":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"247":{"tf":1.0},"57":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":9,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.7320508075688772},"15":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.7320508075688772},"245":{"tf":1.7320508075688772},"54":{"tf":1.0},"75":{"tf":1.4142135623730951}},"o":{"d":{"b":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"b":{"0":{"7":{"7":{"6":{"5":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":20,"docs":{"127":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"187":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"221":{"tf":1.4142135623730951},"232":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"34":{"tf":1.0},"45":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"194":{"tf":1.7320508075688772},"233":{"tf":1.0},"252":{"tf":1.0},"6":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"234":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"170":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"236":{"tf":1.0},"34":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"238":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"187":{"tf":1.0},"188":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"40":{"tf":1.0}}}},"df":1,"docs":{"20":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":2.23606797749979}}}}},"df":2,"docs":{"177":{"tf":1.0},"178":{"tf":1.4142135623730951}},"e":{"df":1,"docs":{"105":{"tf":1.0}},"|":{".":{"*":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"89":{"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":3,"docs":{"110":{"tf":1.0},"237":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"228":{"tf":1.0},"250":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"179":{"tf":1.0},"40":{"tf":1.7320508075688772},"97":{"tf":2.0}}}}}}},"i":{"d":{"df":2,"docs":{"206":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"190":{"tf":1.0},"226":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}},"b":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"11":{"tf":1.0},"238":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"33":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"74":{"tf":1.0}}}}},"o":{"d":{"df":7,"docs":{"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"150":{"tf":1.0},"155":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"194":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":17,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"193":{"tf":1.0},"228":{"tf":2.23606797749979},"230":{"tf":1.4142135623730951},"231":{"tf":2.0},"232":{"tf":2.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"241":{"tf":1.7320508075688772},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.4142135623730951},"250":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"df":2,"docs":{"195":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"'":{"df":8,"docs":{"148":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":1.4142135623730951},"18":{"tf":1.0},"200":{"tf":1.0},"21":{"tf":1.4142135623730951},"246":{"tf":1.0}}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{":":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"195":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"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":{"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"195":{"tf":1.4142135623730951},"198":{"tf":1.0},"4":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"198":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":74,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":2.23606797749979},"12":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"16":{"tf":2.0},"167":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"181":{"tf":2.0},"185":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.4142135623730951},"192":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.7320508075688772},"198":{"tf":2.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"20":{"tf":2.0},"202":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":2.0},"215":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"220":{"tf":1.4142135623730951},"222":{"tf":1.0},"224":{"tf":1.4142135623730951},"228":{"tf":2.23606797749979},"229":{"tf":1.0},"231":{"tf":1.4142135623730951},"234":{"tf":2.8284271247461903},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.7320508075688772},"41":{"tf":1.0},"48":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0}}},"df":11,"docs":{"106":{"tf":1.0},"149":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"192":{"tf":1.0},"2":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"228":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"231":{"tf":1.0},"233":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"215":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":8,"docs":{"157":{"tf":1.0},"21":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.0},"76":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"238":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}}},"v":{"df":1,"docs":{"198":{"tf":2.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"186":{"tf":1.0},"35":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"140":{"tf":1.0},"238":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}},"t":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"109":{"tf":1.0},"117":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"229":{"tf":1.0},"39":{"tf":1.0},"71":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":1,"docs":{"233":{"tf":1.0}},"s":{"df":5,"docs":{"13":{"tf":1.0},"228":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":2.23606797749979}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"232":{"tf":1.0},"235":{"tf":1.0},"244":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"19":{"tf":1.7320508075688772},"220":{"tf":1.0},"24":{"tf":1.0},"54":{"tf":1.0},"76":{"tf":1.0}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"110":{"tf":1.0},"88":{"tf":2.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"t":{"c":{"df":3,"docs":{"20":{"tf":1.0},"250":{"tf":1.4142135623730951},"48":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":2,"docs":{"229":{"tf":1.0},"230":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"85":{"tf":2.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"15":{"tf":1.0},"195":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0}},"t":{"df":4,"docs":{"204":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.0}},"u":{"df":1,"docs":{"233":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"232":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"165":{"tf":1.0},"166":{"tf":1.0},"76":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"213":{"tf":1.0},"214":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":18,"docs":{"10":{"tf":2.23606797749979},"13":{"tf":1.4142135623730951},"141":{"tf":1.0},"167":{"tf":1.4142135623730951},"199":{"tf":1.0},"206":{"tf":1.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"245":{"tf":1.0},"44":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"76":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.7320508075688772}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.0},"129":{"tf":1.0},"50":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"149":{"tf":1.0},"29":{"tf":1.0}},"e":{"d":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"v":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":1,"docs":{"159":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"190":{"tf":1.0},"198":{"tf":1.0},"215":{"tf":1.0},"228":{"tf":1.0},"243":{"tf":1.0},"247":{"tf":1.7320508075688772},"29":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":19,"docs":{"13":{"tf":1.4142135623730951},"131":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.4142135623730951},"192":{"tf":1.0},"220":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.4142135623730951},"241":{"tf":1.0},"250":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":2.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"120":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"252":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":5,"docs":{"139":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.7320508075688772},"237":{"tf":1.0},"241":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"194":{"tf":1.0},"20":{"tf":1.0},"234":{"tf":1.0},"6":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"193":{"tf":1.0},"199":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"57":{"tf":1.7320508075688772},"61":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"37":{"tf":1.0},"38":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"0":{"tf":1.0},"198":{"tf":1.0}}}}}}},"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"201":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"195":{"tf":1.0},"204":{"tf":1.0},"235":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"r":{"df":1,"docs":{"238":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"195":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"127":{"tf":1.0},"132":{"tf":1.0},"140":{"tf":1.0},"17":{"tf":1.4142135623730951},"37":{"tf":1.0},"44":{"tf":1.0},"55":{"tf":1.7320508075688772},"89":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"125":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":2,"docs":{"125":{"tf":2.449489742783178},"235":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"238":{"tf":1.0}}}}}}}},"f":{"7":{"c":{"3":{"1":{"4":{"d":{"d":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"235":{"tf":1.0},"238":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"237":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"159":{"tf":1.0}}},"s":{"df":6,"docs":{"139":{"tf":1.0},"224":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"11":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"33":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"241":{"tf":1.0},"25":{"tf":1.0}}}}}},"t":{"df":3,"docs":{"228":{"tf":1.0},"237":{"tf":1.0},"243":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"237":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"17":{"tf":1.0},"230":{"tf":1.0}}}}}}},"df":10,"docs":{"180":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":2.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"220":{"tf":1.7320508075688772},"221":{"tf":2.449489742783178},"222":{"tf":1.0},"77":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"192":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"220":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":5,"docs":{"11":{"tf":1.4142135623730951},"226":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"252":{"tf":1.0}}},"t":{"df":1,"docs":{"232":{"tf":1.0}}}},"w":{"df":2,"docs":{"232":{"tf":1.0},"235":{"tf":1.0}}}},"i":{"b":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"56":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":10,"docs":{"117":{"tf":2.23606797749979},"169":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"206":{"tf":1.0},"25":{"tf":1.0},"39":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":2.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"213":{"tf":2.0},"214":{"tf":1.4142135623730951},"220":{"tf":2.8284271247461903},"235":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"40":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"134":{"tf":1.0}}}}}}},"df":4,"docs":{"134":{"tf":1.7320508075688772},"29":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.7320508075688772}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":2,"docs":{"173":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"'":{"df":0,"docs":{},"}":{",":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":23,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"117":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"232":{"tf":1.4142135623730951},"234":{"tf":1.0},"238":{"tf":1.4142135623730951},"241":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"58":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"232":{"tf":1.0}},"r":{"2":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"219":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}},"t":{"df":1,"docs":{"238":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"233":{"tf":1.0},"238":{"tf":1.4142135623730951},"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"224":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":18,"docs":{"12":{"tf":1.0},"120":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.0},"187":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"222":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"29":{"tf":1.0},"37":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.4142135623730951},"94":{"tf":1.0}}}}}},"o":{"2":{"df":2,"docs":{"74":{"tf":1.0},"78":{"tf":1.0}}},"df":4,"docs":{"74":{"tf":1.7320508075688772},"77":{"tf":1.0},"78":{"tf":2.23606797749979},"91":{"tf":2.0}}},"r":{"c":{"df":4,"docs":{"136":{"tf":1.0},"215":{"tf":1.0},"238":{"tf":1.0},"44":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"238":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"v":{"df":2,"docs":{"0":{"tf":1.0},"232":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"122":{"tf":1.0},"144":{"tf":1.4142135623730951},"170":{"tf":1.0},"202":{"tf":1.0},"213":{"tf":1.0},"220":{"tf":1.0},"228":{"tf":1.0}}}},"df":17,"docs":{"125":{"tf":1.0},"158":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":2.0},"216":{"tf":2.0},"217":{"tf":1.0},"218":{"tf":1.0},"222":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"84":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"117":{"tf":1.0},"147":{"tf":1.0},"162":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"21":{"tf":1.0},"248":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"233":{"tf":2.23606797749979}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"c":{"a":{"df":2,"docs":{"230":{"tf":1.0},"232":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"234":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"228":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"241":{"tf":1.0},"8":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":69,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":2.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"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.7320508075688772},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"143":{"tf":1.7320508075688772},"144":{"tf":2.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"148":{"tf":1.0},"175":{"tf":2.8284271247461903},"186":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"73":{"tf":1.0},"86":{"tf":1.4142135623730951},"88":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"169":{"tf":1.0},"206":{"tf":1.0},"29":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"237":{"tf":1.0},"248":{"tf":1.7320508075688772},"57":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":4,"docs":{"13":{"tf":1.0},"228":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"194":{"tf":1.0},"253":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"233":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"245":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":4,"docs":{"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"236":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"221":{"tf":1.0}}}}},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"243":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"213":{"tf":1.0},"214":{"tf":1.0}}}},"t":{"@":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"10":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":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":{"252":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"230":{"tf":1.0},"37":{"tf":1.0}},"n":{"df":10,"docs":{"107":{"tf":1.0},"115":{"tf":1.0},"128":{"tf":1.4142135623730951},"130":{"tf":1.0},"133":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.4142135623730951},"171":{"tf":1.0},"37":{"tf":1.0},"48":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":1,"docs":{"90":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"234":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"253":{"tf":1.0}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"21":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.0}}}},"df":1,"docs":{"232":{"tf":1.0}},"e":{"df":2,"docs":{"230":{"tf":1.0},"56":{"tf":1.0}}},"o":{"d":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"250":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"241":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":4,"docs":{"230":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"83":{"tf":1.4142135623730951},"84":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"w":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"232":{"tf":1.0},"235":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"250":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"133":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"133":{"tf":1.0},"45":{"tf":2.449489742783178},"46":{"tf":1.4142135623730951}}}},"w":{"df":1,"docs":{"231":{"tf":1.0}},"n":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"230":{"tf":1.0}}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"194":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"ö":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"245":{"tf":1.0}}}}}}}}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"229":{"tf":1.0},"230":{"tf":1.0}}}},"n":{"d":{"df":3,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"34":{"tf":1.0}},"l":{"df":2,"docs":{"237":{"tf":1.0},"238":{"tf":1.0}}}},"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"74":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"235":{"tf":1.0},"241":{"tf":1.4142135623730951}}}}}},"r":{"d":{"df":2,"docs":{"181":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":1,"docs":{"235":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"247":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"46":{"tf":2.23606797749979}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"241":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":22,"docs":{"122":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"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.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"5":{"tf":1.0},"8":{"tf":1.4142135623730951}},"e":{"a":{"d":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"0":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"199":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"208":{"tf":2.0},"35":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"237":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"c":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"235":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"245":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"175":{"tf":1.0},"21":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"230":{"tf":1.0}}}}}}}}},"o":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"213":{"tf":1.0}}}}}}},"df":0,"docs":{}},"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"102":{"tf":2.449489742783178},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"224":{"tf":1.0},"5":{"tf":1.0},"97":{"tf":2.0}}}},"p":{"df":3,"docs":{"148":{"tf":1.0},"170":{"tf":1.0},"198":{"tf":2.0}}}},"r":{"a":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":4,"docs":{"232":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0},"56":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"247":{"tf":1.0}}}}}}},"x":{"(":{"1":{"5":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"147":{"tf":1.7320508075688772}},"i":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"181":{"tf":1.0},"234":{"tf":1.0},"252":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"132":{"tf":1.0},"234":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"233":{"tf":1.0},"243":{"tf":1.0}},"i":{"df":11,"docs":{"0":{"tf":1.0},"157":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":2.23606797749979},"234":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}}}},"o":{"c":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"228":{"tf":1.0},"239":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"241":{"tf":1.0}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"241":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"228":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"1":{".":{"1":{"df":1,"docs":{"215":{"tf":1.0}}},"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":{":":{"3":{"8":{"0":{"3":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"?":{"df":0,"docs":{},"p":{"=":{"%":{"5":{"b":{"%":{"2":{"2":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"%":{"2":{"2":{"%":{"2":{"c":{"%":{"2":{"2":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"%":{"2":{"2":{"%":{"5":{"d":{"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":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"q":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"%":{"2":{"0":{"1":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":22,"docs":{"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"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},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"5":{"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":{}},"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":1,"docs":{"198":{"tf":1.0}}}}}}},"df":33,"docs":{"10":{"tf":1.0},"192":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.8284271247461903},"200":{"tf":2.0},"201":{"tf":1.7320508075688772},"202":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"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":2.6457513110645907},"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},"31":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.0}},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"/":{"#":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"196":{"tf":1.0},"197":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"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":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"df":2,"docs":{"193":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"238":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"220":{"tf":1.0},"233":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"233":{"tf":1.0},"246":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"å":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"251":{"tf":1.0}}},"df":1,"docs":{"253":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{".":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"m":{"df":1,"docs":{"233":{"tf":1.0}}}},"d":{"df":6,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0}},"e":{"a":{"df":4,"docs":{"148":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"233":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"224":{"tf":1.0},"67":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"131":{"tf":1.0},"147":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"235":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"f":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"139":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"245":{"tf":1.0}}}}}}}},"m":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"193":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":5,"docs":{"149":{"tf":1.4142135623730951},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"187":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"13":{"tf":2.0},"155":{"tf":1.0},"22":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"235":{"tf":1.7320508075688772},"236":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"250":{"tf":1.0},"251":{"tf":1.0}}}}},"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":{"21":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"241":{"tf":1.0},"250":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"232":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"224":{"tf":1.0},"32":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"15":{"tf":1.0},"78":{"tf":1.0}}}}}}},"df":1,"docs":{"232":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"149":{"tf":1.0},"206":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"231":{"tf":1.0},"238":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":11,"docs":{"106":{"tf":1.0},"173":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.4142135623730951},"241":{"tf":1.0},"243":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":2.23606797749979},"41":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":2,"docs":{"24":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"230":{"tf":1.0},"233":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"237":{"tf":1.0},"250":{"tf":1.0}}}}}},"l":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"184":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"181":{"tf":2.0},"21":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"248":{"tf":1.0},"251":{"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":{"228":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"117":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}}}},"df":25,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"168":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"199":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":2.0},"222":{"tf":1.0},"23":{"tf":3.3166247903554},"245":{"tf":1.0},"29":{"tf":2.8284271247461903},"39":{"tf":1.0},"58":{"tf":2.0},"64":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":2,"docs":{"228":{"tf":1.0},"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"158":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"167":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":1.0},"21":{"tf":2.0},"245":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"192":{"tf":1.0},"193":{"tf":2.0},"194":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":1.7320508075688772},"197":{"tf":1.7320508075688772},"2":{"tf":1.0},"4":{"tf":2.0},"8":{"tf":1.0}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":7,"docs":{"220":{"tf":1.0},"222":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"105":{"tf":1.7320508075688772}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":8,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"119":{"tf":1.0},"136":{"tf":1.0},"224":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":2.0},"86":{"tf":1.0}},"r":{"df":1,"docs":{"232":{"tf":1.0}}}},"n":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1":{"tf":1.0},"233":{"tf":1.0}}}}},"f":{"a":{"c":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":2,"docs":{"125":{"tf":1.0},"234":{"tf":1.0}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"50":{"tf":1.7320508075688772},"52":{"tf":2.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"v":{"df":3,"docs":{"148":{"tf":1.0},"224":{"tf":1.4142135623730951},"71":{"tf":2.8284271247461903}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":4,"docs":{"231":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951}},"t":{"df":2,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"155":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"c":{"df":2,"docs":{"213":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.4142135623730951},"231":{"tf":1.0},"238":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":7,"docs":{"224":{"tf":2.0},"233":{"tf":1.0},"245":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"t":{"'":{"df":5,"docs":{"16":{"tf":1.0},"230":{"tf":1.4142135623730951},"234":{"tf":1.0},"235":{"tf":1.7320508075688772},"241":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"21":{"tf":1.0},"220":{"tf":1.0}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":4,"docs":{"15":{"tf":1.0},"16":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0}}},"m":{"df":1,"docs":{"221":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"18":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"a":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"18":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"245":{"tf":1.0}}}}}}},"o":{"b":{"df":3,"docs":{"237":{"tf":1.0},"239":{"tf":1.4142135623730951},"246":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"225":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"14":{"tf":2.23606797749979},"184":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":1.0},"247":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":2.8284271247461903},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.7320508075688772}}}},"y":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":21,"docs":{"17":{"tf":1.0},"175":{"tf":1.0},"203":{"tf":2.0},"204":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.7320508075688772},"216":{"tf":2.0},"217":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":3.3166247903554},"225":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"25":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"91":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"167":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"y":{"(":{"1":{"9":{"7":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"124":{"tf":1.7320508075688772},"148":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}}}}},"k":{"a":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"24":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":4,"docs":{"235":{"tf":1.0},"236":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"219":{"tf":1.0},"222":{"tf":1.0}}}}}},"df":0,"docs":{}},"y":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}}}}},"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":8,"docs":{"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"40":{"tf":1.0},"74":{"tf":1.4142135623730951},"79":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":9,"docs":{"221":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"230":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"11":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0}},"n":{"df":2,"docs":{"235":{"tf":1.0},"77":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"117":{"tf":1.0}}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"187":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"15":{"tf":1.0},"234":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"11":{"tf":1.0},"22":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"234":{"tf":2.8284271247461903},"9":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"146":{"tf":1.4142135623730951},"224":{"tf":1.0},"72":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"179":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"60":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"238":{"tf":1.0},"57":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}},"w":{"df":4,"docs":{"13":{"tf":1.0},"228":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":1.0}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"d":{"df":7,"docs":{"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"212":{"tf":1.0},"216":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"167":{"tf":1.0},"2":{"tf":1.0},"237":{"tf":1.0}}}},"s":{"df":2,"docs":{"57":{"tf":1.0},"60":{"tf":1.0}}},"v":{"df":2,"docs":{"16":{"tf":1.0},"235":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":8,"docs":{"102":{"tf":1.0},"117":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"39":{"tf":1.4142135623730951},"54":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"167":{"tf":1.0},"17":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"46":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"df":1,"docs":{"232":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"'":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":1,"docs":{"112":{"tf":1.0}}}}},"[":{"3":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"44":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":5,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":2.0},"44":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}},"s":{"df":5,"docs":{"106":{"tf":1.0},"230":{"tf":1.0},"238":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.0}}}},"t":{"'":{"df":5,"docs":{"13":{"tf":1.0},"15":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"181":{"tf":1.0},"234":{"tf":1.0},"252":{"tf":1.0},"91":{"tf":1.4142135623730951}}}},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{".":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":1,"docs":{"238":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"227":{"tf":1.0},"253":{"tf":2.23606797749979},"9":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"235":{"tf":1.0}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"251":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":2.8284271247461903},"84":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"u":{"a":{"df":2,"docs":{"230":{"tf":1.0},"232":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"df":1,"docs":{"212":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"197":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":2,"docs":{"234":{"tf":1.0},"247":{"tf":1.0}}},"t":{"df":15,"docs":{"133":{"tf":1.0},"169":{"tf":1.0},"187":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":2.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":23,"docs":{"170":{"tf":2.23606797749979},"216":{"tf":1.4142135623730951},"221":{"tf":1.0},"224":{"tf":2.0},"225":{"tf":1.0},"23":{"tf":1.0},"49":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":2.0},"75":{"tf":1.4142135623730951},"76":{"tf":2.23606797749979},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"238":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"230":{"tf":1.0},"250":{"tf":1.0}}}}},"n":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"154":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{},"g":{"1":{"0":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"120":{"tf":1.0}}},"df":4,"docs":{"120":{"tf":1.7320508075688772},"198":{"tf":1.0},"235":{"tf":1.7320508075688772},"243":{"tf":1.0}},"i":{"c":{"df":2,"docs":{"233":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"232":{"tf":1.0},"234":{"tf":1.4142135623730951},"241":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"30":{"tf":1.0},"61":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"169":{"tf":1.0},"233":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}}}}},"p":{"df":1,"docs":{"233":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"237":{"tf":1.0}}},"t":{"df":2,"docs":{"13":{"tf":1.0},"243":{"tf":1.0}}}},"t":{"df":2,"docs":{"231":{"tf":1.0},"232":{"tf":1.0}}},"w":{"df":1,"docs":{"233":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"103":{"tf":1.7320508075688772},"181":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":2.0}}}}}},"y":{"df":1,"docs":{"16":{"tf":1.0}}}},"m":{")":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":3,"docs":{"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951}}}}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"237":{"tf":1.0}}}}},"o":{"df":1,"docs":{"197":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"243":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"196":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"229":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"9":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":11,"docs":{"13":{"tf":1.0},"148":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"220":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":12,"docs":{"17":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.0},"231":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.0},"34":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":16,"docs":{"117":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":2.0},"23":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"40":{"tf":1.0},"87":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"237":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":1,"docs":{"225":{"tf":1.0}}},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"231":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"233":{"tf":1.7320508075688772},"235":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":13,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"20":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":2.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":3.605551275463989},"95":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"187":{"tf":1.0},"241":{"tf":1.0}}}}},"h":{"df":2,"docs":{"120":{"tf":2.0},"86":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}}}}}},"x":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"127":{"tf":2.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}}}}},"df":4,"docs":{"122":{"tf":1.4142135623730951},"147":{"tf":1.0},"200":{"tf":1.0},"219":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":10,"docs":{"149":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}}},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"247":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"247":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"221":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"25":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"19":{"tf":1.7320508075688772},"220":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"238":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"241":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"54":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":1,"docs":{"127":{"tf":2.0}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"127":{"tf":1.4142135623730951}}}}}},"u":{"df":1,"docs":{"86":{"tf":1.0}},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"224":{"tf":1.0},"63":{"tf":1.0}}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"195":{"tf":1.4142135623730951},"4":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"149":{"tf":1.7320508075688772},"17":{"tf":1.0},"18":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"235":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"187":{"tf":1.0},"85":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"86":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.7320508075688772}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"d":{"b":{"df":4,"docs":{"234":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"71":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":20,"docs":{"15":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"221":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.7320508075688772},"238":{"tf":1.4142135623730951},"245":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"58":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"197":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"206":{"tf":2.0},"216":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":12,"docs":{"151":{"tf":1.0},"180":{"tf":1.0},"222":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"231":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":1.4142135623730951},"40":{"tf":1.0},"86":{"tf":1.0},"97":{"tf":1.0}}}}}}},"n":{"d":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"233":{"tf":1.0},"235":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"56":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":60,"docs":{"110":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.0},"155":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":2.23606797749979},"18":{"tf":1.4142135623730951},"181":{"tf":1.0},"187":{"tf":2.23606797749979},"188":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":2.0},"205":{"tf":1.0},"206":{"tf":1.0},"217":{"tf":3.0},"218":{"tf":1.4142135623730951},"219":{"tf":2.449489742783178},"220":{"tf":2.23606797749979},"221":{"tf":2.23606797749979},"222":{"tf":1.0},"23":{"tf":2.23606797749979},"24":{"tf":2.449489742783178},"26":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":3.3166247903554},"30":{"tf":1.0},"35":{"tf":1.7320508075688772},"37":{"tf":2.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":2.0},"46":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":2.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":2.0},"60":{"tf":1.7320508075688772},"64":{"tf":1.0},"74":{"tf":2.0},"76":{"tf":2.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.0},"83":{"tf":2.0},"85":{"tf":2.0},"88":{"tf":2.449489742783178},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"94":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"220":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"222":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":7,"docs":{"167":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"120":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":15,"docs":{"167":{"tf":2.0},"168":{"tf":1.0},"169":{"tf":2.449489742783178},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"20":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"211":{"tf":2.0}}}}}}},"df":2,"docs":{"225":{"tf":1.0},"41":{"tf":2.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"252":{"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":{"234":{"tf":1.0},"235":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"205":{"tf":1.0}}}}}}},"df":1,"docs":{"235":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":9,"docs":{"12":{"tf":1.0},"190":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"226":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}},"g":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"84":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"250":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"167":{"tf":1.0},"168":{"tf":1.7320508075688772},"169":{"tf":1.0},"17":{"tf":1.7320508075688772},"21":{"tf":1.0},"219":{"tf":1.0},"238":{"tf":2.6457513110645907},"241":{"tf":1.0},"245":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"237":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"234":{"tf":1.0},"240":{"tf":1.0}}}}},"w":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":13,"docs":{"176":{"tf":1.7320508075688772},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"194":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.7320508075688772},"235":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"211":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"224":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":8,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.7320508075688772},"133":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.4142135623730951},"187":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":5,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"233":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"155":{"tf":1.0},"158":{"tf":1.0},"175":{"tf":1.0},"190":{"tf":1.0},"238":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"169":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":35,"docs":{"112":{"tf":1.0},"120":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.7320508075688772},"131":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"154":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"28":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"58":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"84":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0}}},"h":{"df":2,"docs":{"179":{"tf":1.0},"29":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"df":11,"docs":{"13":{"tf":1.0},"151":{"tf":1.7320508075688772},"156":{"tf":1.0},"16":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"241":{"tf":1.7320508075688772},"9":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"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":14,"docs":{"117":{"tf":1.4142135623730951},"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"133":{"tf":1.0},"141":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"40":{"tf":1.0},"63":{"tf":2.449489742783178},"65":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"f":{"(":{"1":{"df":1,"docs":{"140":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"140":{"tf":1.7320508075688772}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"100":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"145":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":2.0},"179":{"tf":1.0},"180":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"233":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.7320508075688772},"67":{"tf":1.0},"86":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"118":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":1.0},"86":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.4142135623730951}}}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"40":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"(":{"[":{"[":{"'":{"a":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"113":{"tf":1.7320508075688772}},"s":{"(":{"df":0,"docs":{},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"113":{"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":{"114":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":27,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"146":{"tf":1.4142135623730951},"167":{"tf":1.0},"168":{"tf":2.0},"17":{"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},"217":{"tf":1.0},"221":{"tf":2.449489742783178},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"23":{"tf":1.0},"233":{"tf":1.0},"250":{"tf":1.0},"40":{"tf":1.4142135623730951},"49":{"tf":2.8284271247461903},"72":{"tf":1.0},"74":{"tf":3.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"207":{"tf":1.0},"235":{"tf":1.0}}}}}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"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":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"101":{"tf":2.0}}}}}}}}},"df":1,"docs":{"101":{"tf":1.0}}}}}},"df":1,"docs":{"77":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"167":{"tf":1.0},"207":{"tf":1.0},"238":{"tf":1.0},"40":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}}}}},"k":{"df":2,"docs":{"76":{"tf":1.0},"93":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"228":{"tf":1.0},"233":{"tf":1.0},"249":{"tf":1.4142135623730951}}}},"d":{"df":2,"docs":{"13":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":4,"docs":{"228":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"157":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":5,"docs":{"23":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":1.0}}},"df":27,"docs":{"125":{"tf":1.0},"132":{"tf":1.0},"17":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"230":{"tf":2.0},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":2.23606797749979},"235":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"243":{"tf":1.0},"38":{"tf":1.4142135623730951},"51":{"tf":1.0},"73":{"tf":1.4142135623730951},"77":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"233":{"tf":1.0},"238":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"238":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"235":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"149":{"tf":1.7320508075688772},"228":{"tf":1.0},"240":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951}}},"r":{"df":46,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"132":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"187":{"tf":1.0},"192":{"tf":1.0},"198":{"tf":1.7320508075688772},"20":{"tf":1.0},"21":{"tf":1.0},"219":{"tf":1.4142135623730951},"231":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"50":{"tf":1.7320508075688772},"54":{"tf":1.7320508075688772},"59":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":2.0},"86":{"tf":1.4142135623730951},"87":{"tf":2.23606797749979},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.7320508075688772},"92":{"tf":2.0},"93":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":2.0}}}},"t":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"*":{"/":{"*":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"106":{"tf":1.0},"110":{"tf":1.0},"133":{"tf":1.0},"147":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.4142135623730951},"200":{"tf":1.0},"37":{"tf":1.0},"64":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"110":{"tf":1.0},"132":{"tf":1.4142135623730951},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"218":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.0},"247":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.0},"44":{"tf":3.7416573867739413},"45":{"tf":1.0},"47":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":2,"docs":{"41":{"tf":2.449489742783178},"77":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"13":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"180":{"tf":1.0},"253":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"229":{"tf":1.0},"240":{"tf":1.0}}}}}}},"t":{"df":4,"docs":{"0":{"tf":1.0},"146":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"199":{"tf":1.0},"241":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"213":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"228":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"0":{"tf":1.0},"199":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"35":{"tf":1.0},"7":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"149":{"tf":1.0},"162":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"133":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"176":{"tf":1.0}}}}}}}}}},"p":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}}},")":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":6,"docs":{"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"74":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"34":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"1":{"df":0,"docs":{},"y":{"2":{"df":0,"docs":{},"m":{"1":{"0":{"d":{"df":0,"docs":{},"t":{"2":{"df":0,"docs":{},"h":{"3":{"0":{"df":0,"docs":{},"m":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"\"":{"[":{"[":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"221":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"'":{"[":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"df":2,"docs":{"206":{"tf":1.0},"218":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"[":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"@":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{";":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"=":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"d":{".":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"220":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"d":{"df":2,"docs":{"64":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"21":{"tf":1.0},"233":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":8,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"147":{"tf":1.0},"224":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0}}}},"l":{"a":{"c":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"a":{"df":3,"docs":{"203":{"tf":1.0},"217":{"tf":1.0},"37":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"217":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":22,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"144":{"tf":1.0},"147":{"tf":2.0},"199":{"tf":1.0},"200":{"tf":2.23606797749979},"205":{"tf":1.7320508075688772},"216":{"tf":2.449489742783178},"217":{"tf":2.449489742783178},"218":{"tf":2.449489742783178},"219":{"tf":2.0},"220":{"tf":2.23606797749979},"221":{"tf":2.0},"222":{"tf":1.0},"31":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"187":{"tf":1.0},"224":{"tf":1.0},"48":{"tf":1.0}}}}}}}},"t":{"df":3,"docs":{"162":{"tf":1.0},"216":{"tf":1.0},"232":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"236":{"tf":1.0},"239":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"136":{"tf":1.0},"21":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":1,"docs":{"234":{"tf":1.0}},"q":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"234":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"215":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"198":{"tf":1.4142135623730951},"215":{"tf":2.0}}},"df":0,"docs":{}}}}},"t":{"df":3,"docs":{"13":{"tf":1.0},"236":{"tf":1.0},"241":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"117":{"tf":2.6457513110645907},"25":{"tf":2.8284271247461903}}}},"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"180":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":1,"docs":{"180":{"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":{},"{":{"a":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"178":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"179":{"tf":1.4142135623730951},"27":{"tf":1.0}},"e":{"(":{"[":{"0":{",":{"1":{",":{"2":{",":{"3":{",":{"4":{"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":{}},"df":0,"docs":{},"{":{"df":0,"docs":{},"x":{"df":1,"docs":{"179":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"177":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"177":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"176":{"tf":1.4142135623730951},"26":{"tf":1.0}}}}}},"df":18,"docs":{"167":{"tf":2.449489742783178},"168":{"tf":1.7320508075688772},"169":{"tf":1.7320508075688772},"17":{"tf":1.0},"170":{"tf":1.7320508075688772},"171":{"tf":2.449489742783178},"172":{"tf":3.3166247903554},"173":{"tf":3.0},"174":{"tf":2.23606797749979},"175":{"tf":3.3166247903554},"176":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"178":{"tf":1.7320508075688772},"179":{"tf":1.7320508075688772},"180":{"tf":2.23606797749979},"20":{"tf":1.4142135623730951},"26":{"tf":2.0},"27":{"tf":2.0}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"@":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"110":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":18,"docs":{"14":{"tf":1.0},"184":{"tf":1.0},"195":{"tf":2.23606797749979},"198":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"79":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"29":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951}}}}}},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"232":{"tf":1.0},"238":{"tf":1.0},"40":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"29":{"tf":1.0},"81":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"d":{"df":9,"docs":{"149":{"tf":2.0},"160":{"tf":1.7320508075688772},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"238":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"9":{"tf":1.0}}}},"t":{"df":8,"docs":{"13":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"201":{"tf":1.0},"235":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"49":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"i":{"df":1,"docs":{"120":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"236":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"232":{"tf":1.7320508075688772},"234":{"tf":1.7320508075688772},"241":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"d":{"a":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"233":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}}}}}},"l":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"231":{"tf":1.0},"55":{"tf":1.0},"79":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"217":{"tf":1.0},"218":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":4,"docs":{"194":{"tf":1.0},"21":{"tf":1.0},"253":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"u":{"df":1,"docs":{"86":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"224":{"tf":1.0},"67":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"198":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"125":{"tf":2.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"200":{"tf":1.0},"218":{"tf":2.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"78":{"tf":1.0}}},"x":{"df":1,"docs":{"234":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":19,"docs":{"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":27,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"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},"216":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"32":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"df":6,"docs":{"229":{"tf":1.0},"233":{"tf":1.0},"241":{"tf":1.0},"250":{"tf":1.0},"76":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}}}}}}}}}},"w":{"df":1,"docs":{"120":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"120":{"tf":1.0},"167":{"tf":1.0},"21":{"tf":1.4142135623730951},"231":{"tf":1.0},"40":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"149":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"165":{"tf":1.7320508075688772},"76":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"224":{"tf":1.0},"226":{"tf":1.0},"234":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":3,"docs":{"149":{"tf":1.0},"160":{"tf":1.7320508075688772},"238":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{".":{"c":{"a":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"76":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"10":{"tf":1.0},"207":{"tf":1.0},"220":{"tf":1.4142135623730951},"35":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":3,"docs":{"85":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":6,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"194":{"tf":1.0},"233":{"tf":1.0},"6":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":32,"docs":{"112":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"23":{"tf":2.449489742783178},"238":{"tf":1.0},"24":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":3.1622776601683795},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"44":{"tf":2.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"55":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772}},"s":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"155":{"tf":1.0},"28":{"tf":1.0},"58":{"tf":1.0}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"235":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"234":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"229":{"tf":1.0},"235":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"246":{"tf":1.7320508075688772}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"64":{"tf":1.0}}}}},"u":{"c":{"df":1,"docs":{"239":{"tf":1.0}},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":10,"docs":{"112":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"25":{"tf":1.0},"29":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":2.0},"55":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772}}}}},"df":60,"docs":{"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.4142135623730951},"194":{"tf":1.0},"203":{"tf":1.7320508075688772},"206":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"221":{"tf":2.0},"229":{"tf":1.0},"23":{"tf":2.23606797749979},"236":{"tf":1.4142135623730951},"24":{"tf":2.23606797749979},"240":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":2.449489742783178},"30":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":2.6457513110645907},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":2.23606797749979},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"6":{"tf":1.0},"74":{"tf":2.0},"76":{"tf":1.4142135623730951},"79":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"85":{"tf":2.449489742783178},"88":{"tf":2.449489742783178},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"40":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}}}}},".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"25":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":1,"docs":{"29":{"tf":1.0}}}},"[":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"234":{"tf":1.0},"241":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"220":{"tf":1.0},"238":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"233":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.0},"77":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":32,"docs":{"10":{"tf":1.0},"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"17":{"tf":1.0},"180":{"tf":1.4142135623730951},"186":{"tf":1.0},"19":{"tf":1.0},"198":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"215":{"tf":1.0},"220":{"tf":1.0},"228":{"tf":2.0},"231":{"tf":1.0},"234":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.7320508075688772},"32":{"tf":1.0},"37":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"t":{"1":{"2":{"df":0,"docs":{},"h":{"3":{"0":{"df":0,"docs":{},"m":{"5":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}}},"4":{"df":0,"docs":{},"m":{"5":{"6":{".":{"7":{"8":{"9":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"230":{"tf":1.0},"233":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"195":{"tf":1.4142135623730951},"231":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":5,"docs":{"110":{"tf":1.0},"224":{"tf":1.0},"246":{"tf":1.0},"63":{"tf":1.0},"81":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"193":{"tf":1.0}}}},"z":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"c":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"213":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"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":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}},"q":{")":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"200":{"tf":1.0}}}}}}},"3":{"df":1,"docs":{"252":{"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":8,"docs":{"205":{"tf":1.0},"206":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"%":{"2":{"0":{"*":{"%":{"2":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"%":{"2":{"0":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"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":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"200":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"92":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":76,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"148":{"tf":2.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.4142135623730951},"155":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"157":{"tf":1.7320508075688772},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"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},"181":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":2.0},"205":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"220":{"tf":1.0},"228":{"tf":1.7320508075688772},"229":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":2.23606797749979},"234":{"tf":2.449489742783178},"236":{"tf":1.7320508075688772},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":2.23606797749979},"28":{"tf":1.0},"30":{"tf":1.4142135623730951},"33":{"tf":2.449489742783178},"34":{"tf":1.4142135623730951},"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.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":2.0},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":2.0},"54":{"tf":2.449489742783178},"55":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0}}},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"235":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"233":{"tf":1.7320508075688772},"238":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"2":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"0":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.7320508075688772},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"234":{"tf":1.0},"241":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"64":{"tf":1.0},"74":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"r":{"a":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"3":{"2":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"146":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":2,"docs":{"119":{"tf":2.23606797749979},"146":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"w":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"106":{"tf":1.0},"241":{"tf":1.0}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"192":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"239":{"tf":1.4142135623730951},"245":{"tf":1.0},"252":{"tf":1.0},"35":{"tf":1.0},"57":{"tf":1.7320508075688772},"8":{"tf":1.0}},"i":{"df":2,"docs":{"0":{"tf":1.0},"238":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"224":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"67":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"238":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"207":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"81":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"215":{"tf":1.0},"220":{"tf":1.0},"63":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"193":{"tf":1.0},"205":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"240":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"d":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"13":{"tf":1.4142135623730951},"155":{"tf":1.0},"16":{"tf":1.0},"212":{"tf":1.0},"228":{"tf":1.0},"235":{"tf":1.4142135623730951},"239":{"tf":1.0},"243":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"237":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":7,"docs":{"171":{"tf":1.7320508075688772},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"245":{"tf":1.0},"56":{"tf":3.4641016151377544}}}}}},"d":{"df":2,"docs":{"219":{"tf":1.0},"222":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"u":{"c":{"df":2,"docs":{"231":{"tf":1.0},"237":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"187":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":210,"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},"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},"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.4142135623730951},"191":{"tf":1.0},"192":{"tf":2.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},"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},"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},"224":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"253":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"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},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"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.4142135623730951},"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.4142135623730951},"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}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":2.449489742783178}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"203":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"df":1,"docs":{"104":{"tf":1.0}},"t":{"df":9,"docs":{"103":{"tf":1.0},"148":{"tf":1.4142135623730951},"167":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"230":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"238":{"tf":1.0},"29":{"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":2,"docs":{"14":{"tf":1.0},"238":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"194":{"tf":1.0},"20":{"tf":1.0},"241":{"tf":2.0},"57":{"tf":2.0},"58":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":2.449489742783178}}}},"df":0,"docs":{},"v":{"df":2,"docs":{"157":{"tf":1.0},"234":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":11,"docs":{"117":{"tf":1.0},"13":{"tf":1.0},"179":{"tf":1.4142135623730951},"191":{"tf":1.0},"235":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"30":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"57":{"tf":1.0},"60":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.7320508075688772}},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":1,"docs":{"104":{"tf":2.0}},"e":{"(":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"a":{"df":2,"docs":{"237":{"tf":1.0},"239":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"195":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":10,"docs":{"115":{"tf":1.0},"149":{"tf":1.0},"170":{"tf":1.0},"179":{"tf":1.0},"217":{"tf":1.0},"49":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"54":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":13,"docs":{"186":{"tf":1.0},"197":{"tf":1.0},"215":{"tf":1.4142135623730951},"22":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":2.23606797749979},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"203":{"tf":1.0},"204":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"127":{"tf":1.0},"241":{"tf":1.0},"35":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"181":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"t":{"df":3,"docs":{"10":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":25,"docs":{"132":{"tf":1.4142135623730951},"16":{"tf":1.0},"215":{"tf":1.0},"222":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"249":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"64":{"tf":1.0},"81":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"246":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":73,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":2.0},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"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},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.7320508075688772},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"220":{"tf":1.0},"222":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"238":{"tf":1.0},"249":{"tf":1.0},"34":{"tf":1.7320508075688772},"38":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":2.23606797749979},"57":{"tf":2.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":2.0},"63":{"tf":1.0},"76":{"tf":2.0},"84":{"tf":1.0},"85":{"tf":2.8284271247461903},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.7320508075688772},"92":{"tf":2.0},"93":{"tf":2.0},"94":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"233":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"110":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}}}}}}},"f":{"c":{"df":2,"docs":{"215":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"234":{"tf":1.0}}}},"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":7,"docs":{"102":{"tf":1.0},"230":{"tf":1.4142135623730951},"232":{"tf":1.0},"239":{"tf":1.0},"54":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"m":{"df":2,"docs":{"195":{"tf":1.7320508075688772},"4":{"tf":1.0}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"227":{"tf":1.0},"248":{"tf":1.0},"252":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"57":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"60":{"tf":3.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"230":{"tf":1.0}}},"t":{"df":1,"docs":{"169":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"187":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":1,"docs":{"120":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"w":{"df":30,"docs":{"159":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":2.449489742783178},"18":{"tf":1.0},"181":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"228":{"tf":1.4142135623730951},"232":{"tf":1.0},"238":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"245":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"63":{"tf":1.0},"74":{"tf":1.4142135623730951},"76":{"tf":2.6457513110645907},"77":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":2.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"229":{"tf":1.0}}}},"n":{"df":9,"docs":{"0":{"tf":1.0},"13":{"tf":1.0},"154":{"tf":1.0},"195":{"tf":2.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"32":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.4142135623730951}}}},"å":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"253":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"3":{"df":2,"docs":{"241":{"tf":1.0},"250":{"tf":1.0}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.0},"244":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"13":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"40":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":4,"docs":{"131":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"35":{"tf":1.0}},"s":{"_":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":10,"docs":{"117":{"tf":1.7320508075688772},"203":{"tf":1.0},"218":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"39":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"79":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":14,"docs":{"110":{"tf":1.0},"158":{"tf":1.0},"197":{"tf":1.0},"220":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"220":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"u":{"c":{"df":4,"docs":{"205":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"235":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"57":{"tf":3.3166247903554},"58":{"tf":1.7320508075688772},"59":{"tf":3.0},"60":{"tf":2.8284271247461903},"61":{"tf":1.4142135623730951}}}}}}}}},"w":{"df":2,"docs":{"233":{"tf":1.0},"241":{"tf":1.0}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"180":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"216":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"228":{"tf":1.0},"81":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"237":{"tf":1.0}}}},"n":{"df":1,"docs":{"171":{"tf":1.0}}},"r":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":14,"docs":{"181":{"tf":2.8284271247461903},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"20":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":2.8284271247461903},"24":{"tf":1.0},"34":{"tf":1.0},"76":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"12":{"tf":1.0},"167":{"tf":1.0},"181":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.4142135623730951},"24":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"230":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"60":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"21":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":3,"docs":{"122":{"tf":1.0},"184":{"tf":1.0},"35":{"tf":1.0}},"e":{"a":{"df":2,"docs":{"117":{"tf":1.0},"230":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"tf":1.0}}}}},"df":20,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"117":{"tf":1.7320508075688772},"123":{"tf":1.0},"133":{"tf":1.4142135623730951},"139":{"tf":1.0},"147":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"238":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"71":{"tf":1.0},"84":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"148":{"tf":1.0},"37":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":14,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"170":{"tf":1.0},"204":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0}},"m":{"df":1,"docs":{"16":{"tf":1.0}}},"n":{"df":5,"docs":{"155":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"46":{"tf":1.0},"56":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":143,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"102":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":2.449489742783178},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"13":{"tf":2.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":2.23606797749979},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":2.0},"15":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"16":{"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},"169":{"tf":1.7320508075688772},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":2.23606797749979},"173":{"tf":2.0},"174":{"tf":1.7320508075688772},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"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.4142135623730951},"185":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"19":{"tf":1.0},"190":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"205":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"218":{"tf":1.0},"220":{"tf":1.0},"222":{"tf":1.4142135623730951},"23":{"tf":1.0},"236":{"tf":1.4142135623730951},"245":{"tf":1.0},"34":{"tf":2.23606797749979},"35":{"tf":3.1622776601683795},"37":{"tf":2.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":2.23606797749979},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":2.23606797749979},"56":{"tf":2.449489742783178},"58":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"64":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":2.0},"76":{"tf":2.0},"77":{"tf":2.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"85":{"tf":2.449489742783178},"86":{"tf":3.0},"87":{"tf":1.7320508075688772},"88":{"tf":2.449489742783178},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":2.6457513110645907},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"97":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"f":{"df":2,"docs":{"198":{"tf":1.0},"237":{"tf":1.0}}},"l":{"df":1,"docs":{"240":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"58":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"222":{"tf":1.4142135623730951},"32":{"tf":1.0}}}}}}},"df":5,"docs":{"15":{"tf":1.4142135623730951},"167":{"tf":1.0},"233":{"tf":1.4142135623730951},"238":{"tf":1.0},"245":{"tf":1.0}}}},"n":{"d":{"df":4,"docs":{"199":{"tf":1.4142135623730951},"202":{"tf":1.0},"222":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"13":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"88":{"tf":1.0},"90":{"tf":1.0}}}}},"t":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"209":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":2.0},"24":{"tf":1.0},"250":{"tf":1.7320508075688772},"40":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"233":{"tf":1.0}}},"n":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"235":{"tf":1.0}},"s":{"df":1,"docs":{"235":{"tf":1.0}}}}}},"v":{"df":4,"docs":{"110":{"tf":1.0},"231":{"tf":1.0},"246":{"tf":1.0},"63":{"tf":1.0}}}},"t":{"df":15,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"175":{"tf":1.0},"219":{"tf":1.0},"24":{"tf":2.23606797749979},"249":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":2.23606797749979},"29":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"47":{"tf":1.0},"50":{"tf":1.7320508075688772},"54":{"tf":2.0},"56":{"tf":1.0},"91":{"tf":1.0}}}},"h":{"a":{"1":{"(":{"'":{"2":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"145":{"tf":1.7320508075688772}}},"df":1,"docs":{"145":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}},"p":{"df":1,"docs":{"9":{"tf":1.0}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"40":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"139":{"tf":1.0},"22":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"w":{"df":1,"docs":{"13":{"tf":1.0}},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"233":{"tf":1.0},"236":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"85":{"tf":2.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":1,"docs":{"120":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"159":{"tf":1.0},"25":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"169":{"tf":1.0},"221":{"tf":1.0},"233":{"tf":1.0},"29":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"201":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"238":{"tf":1.0},"33":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"187":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"230":{"tf":1.0},"233":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.0},"55":{"tf":1.0}}}}}}}},"n":{"df":1,"docs":{"120":{"tf":1.0}},"g":{"df":0,"docs":{},"l":{"df":16,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"180":{"tf":1.0},"201":{"tf":1.0},"213":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":1.4142135623730951},"45":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"76":{"tf":1.4142135623730951},"87":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}},"h":{"df":1,"docs":{"120":{"tf":1.0}}}},"t":{"df":1,"docs":{"234":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"247":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"229":{"tf":1.0},"233":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"d":{"a":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"184":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"252":{"tf":1.0}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"19":{"tf":1.0},"230":{"tf":1.0}}}},"v":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"241":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"229":{"tf":1.0},"77":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"235":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":4,"docs":{"106":{"tf":1.0},"21":{"tf":1.0},"228":{"tf":1.0},"240":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"228":{"tf":1.0},"235":{"tf":1.0},"35":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"238":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"155":{"tf":1.0},"34":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":12,"docs":{"21":{"tf":1.7320508075688772},"233":{"tf":1.0},"234":{"tf":1.0},"241":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"58":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}},"i":{"df":15,"docs":{"117":{"tf":1.4142135623730951},"120":{"tf":1.0},"131":{"tf":1.0},"179":{"tf":1.0},"195":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"229":{"tf":1.0},"253":{"tf":1.0},"29":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"76":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"l":{"'":{"df":1,"docs":{"21":{"tf":1.0}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"167":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0}}}}}}},":":{"2":{"0":{"1":{"1":{"df":8,"docs":{"149":{"tf":1.7320508075688772},"156":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"233":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"241":{"tf":1.0},"245":{"tf":1.0}}},"6":{"df":3,"docs":{"238":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}},"2":{"3":{"df":4,"docs":{"233":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{"df":2,"docs":{"238":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":203,"docs":{"0":{"tf":1.0},"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":2.8284271247461903},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.4142135623730951},"120":{"tf":2.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.4142135623730951},"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},"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.7320508075688772},"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.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.4142135623730951},"17":{"tf":1.4142135623730951},"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},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":2.8284271247461903},"200":{"tf":1.0},"21":{"tf":3.1622776601683795},"216":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":3.4641016151377544},"234":{"tf":4.795831523312719},"238":{"tf":2.449489742783178},"24":{"tf":1.4142135623730951},"241":{"tf":1.0},"245":{"tf":2.23606797749979},"246":{"tf":1.0},"25":{"tf":1.0},"252":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":2.0},"34":{"tf":1.7320508075688772},"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.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":2.0},"69":{"tf":2.0},"7":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"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.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"'":{"df":4,"docs":{"120":{"tf":1.0},"175":{"tf":1.0},"234":{"tf":1.0},"56":{"tf":1.0}}},"df":5,"docs":{"110":{"tf":1.0},"21":{"tf":1.4142135623730951},"234":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"35":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"229":{"tf":1.0}}},"i":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"193":{"tf":1.0},"199":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"'":{"df":1,"docs":{"149":{"tf":1.0}}},"df":18,"docs":{"120":{"tf":1.4142135623730951},"160":{"tf":1.0},"169":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"44":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":10,"docs":{"106":{"tf":1.0},"12":{"tf":1.0},"149":{"tf":1.4142135623730951},"159":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"204":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"234":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":7,"docs":{"13":{"tf":1.0},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"233":{"tf":1.7320508075688772},"245":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"18":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"220":{"tf":1.4142135623730951},"222":{"tf":2.449489742783178},"228":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"55":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.0}}}}}}},"i":{"c":{"df":5,"docs":{"186":{"tf":1.0},"220":{"tf":1.0},"238":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"215":{"tf":1.4142135623730951},"76":{"tf":2.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"93":{"tf":1.0}}}}},"y":{"df":1,"docs":{"238":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"190":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"16":{"tf":1.0},"194":{"tf":1.0},"230":{"tf":1.4142135623730951},"238":{"tf":1.0},"29":{"tf":1.0},"6":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":1,"docs":{"229":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":11,"docs":{"194":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":2.6457513110645907},"234":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":2.23606797749979},"241":{"tf":1.0},"246":{"tf":1.0},"250":{"tf":2.449489742783178},"6":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":11,"docs":{"0":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"235":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0}}},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"214":{"tf":1.4142135623730951},"220":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0}},"e":{"d":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"214":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"'":{"%":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":1.0}}},"y":{"/":{"%":{"df":0,"docs":{},"m":{"/":{"%":{"d":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"122":{"tf":1.7320508075688772},"148":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"241":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"185":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":30,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"145":{"tf":1.0},"147":{"tf":2.23606797749979},"222":{"tf":1.4142135623730951},"224":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"33":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"21":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"15":{"tf":1.4142135623730951},"167":{"tf":1.0},"181":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"238":{"tf":1.0},"245":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"u":{"b":{"df":2,"docs":{"169":{"tf":1.0},"55":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"205":{"tf":1.0},"220":{"tf":1.7320508075688772}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"92":{"tf":2.23606797749979},"93":{"tf":2.23606797749979},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"175":{"tf":1.0},"203":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"217":{"tf":1.0},"218":{"tf":1.0}}}}}},"r":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"105":{"tf":1.0},"106":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"71":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"149":{"tf":1.4142135623730951},"164":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"233":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"222":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":7,"docs":{"148":{"tf":1.0},"181":{"tf":1.4142135623730951},"22":{"tf":1.0},"220":{"tf":1.0},"28":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"13":{"tf":1.0}},"i":{"df":2,"docs":{"229":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":3,"docs":{"157":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"m":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"128":{"tf":1.0},"134":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"128":{"tf":2.23606797749979},"129":{"tf":1.0},"45":{"tf":1.0}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":10,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"140":{"tf":1.0},"156":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":15,"docs":{"150":{"tf":1.0},"175":{"tf":1.0},"186":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.0},"39":{"tf":1.0},"80":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"197":{"tf":1.0},"230":{"tf":1.0},"250":{"tf":1.0}}},"f":{"a":{"c":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":7,"docs":{"106":{"tf":1.0},"112":{"tf":1.4142135623730951},"172":{"tf":1.0},"27":{"tf":1.0},"64":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"x":{"df":7,"docs":{"125":{"tf":1.0},"158":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"245":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":7,"docs":{"13":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"236":{"tf":1.0}}}}}},"df":7,"docs":{"155":{"tf":2.0},"158":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.0},"235":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"t":{"1":{"df":6,"docs":{"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0}}},"a":{"b":{"df":0,"docs":{},"l":{"df":29,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"157":{"tf":1.0},"168":{"tf":1.4142135623730951},"170":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"185":{"tf":1.0},"190":{"tf":1.4142135623730951},"216":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.4142135623730951},"238":{"tf":2.0},"247":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.7320508075688772},"37":{"tf":2.449489742783178},"42":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.0},"76":{"tf":1.7320508075688772}},"e":{"'":{"df":1,"docs":{"76":{"tf":1.0}}},"_":{"c":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":3,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"182":{"tf":1.7320508075688772},"183":{"tf":1.0},"184":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":3,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":19,"docs":{"117":{"tf":1.0},"130":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.7320508075688772},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"40":{"tf":1.0},"55":{"tf":1.0},"76":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"231":{"tf":1.0},"251":{"tf":1.0}}}},"n":{"df":1,"docs":{"120":{"tf":1.0}},"h":{"df":1,"docs":{"120":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"df":2,"docs":{"197":{"tf":1.0},"215":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"21":{"tf":1.0}}},"t":{"df":1,"docs":{"252":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"234":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"23":{"tf":1.0}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"230":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"241":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"231":{"tf":1.0},"234":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"37":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}},"df":4,"docs":{"149":{"tf":1.0},"230":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0}}}}}},"n":{"d":{"df":1,"docs":{"34":{"tf":1.0}}},"df":1,"docs":{"230":{"tf":1.0}},"t":{"a":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"231":{"tf":1.0},"252":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"56":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":2,"docs":{"201":{"tf":1.0},"209":{"tf":2.0}}}}},"df":0,"docs":{}},"df":6,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.0},"224":{"tf":1.0},"64":{"tf":1.7320508075688772}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"13":{"tf":1.0},"232":{"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":2,"docs":{"132":{"tf":1.0},"56":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"0":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":3,"docs":{"229":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"228":{"tf":1.0},"229":{"tf":1.0}}},"k":{"df":3,"docs":{"243":{"tf":1.0},"250":{"tf":1.0},"53":{"tf":1.0}}}},"r":{"d":{"df":6,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"139":{"tf":1.0},"234":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"117":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"81":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"15":{"tf":1.0},"172":{"tf":1.0},"205":{"tf":1.0},"241":{"tf":1.0}},"t":{"df":2,"docs":{"40":{"tf":1.0},"74":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"21":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":2,"docs":{"232":{"tf":1.0},"73":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"2":{"tf":1.0},"234":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"df":2,"docs":{"199":{"tf":1.0},"8":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":39,"docs":{"11":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.7320508075688772},"13":{"tf":2.0},"148":{"tf":2.6457513110645907},"149":{"tf":2.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":2.23606797749979},"156":{"tf":2.23606797749979},"157":{"tf":2.0},"158":{"tf":1.7320508075688772},"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},"20":{"tf":1.0},"224":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"230":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":3.0},"236":{"tf":1.4142135623730951},"238":{"tf":2.0},"241":{"tf":1.0},"244":{"tf":1.0},"28":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":2.8284271247461903},"71":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"232":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":2.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":7,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"148":{"tf":1.0},"156":{"tf":1.0},"224":{"tf":1.4142135623730951},"68":{"tf":2.8284271247461903}}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"150":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}}}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"64":{"tf":1.0}}}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"241":{"tf":1.4142135623730951},"250":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"_":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":2,"docs":{"23":{"tf":1.0},"88":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"230":{"tf":1.0},"234":{"tf":1.0},"58":{"tf":1.0},"97":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"237":{"tf":1.0}}}}},"m":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"235":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":4,"docs":{"10":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0}}}},"p":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"21":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":1.7320508075688772},"235":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"r":{"a":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"229":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"243":{"tf":1.0},"246":{"tf":1.7320508075688772},"32":{"tf":2.0},"58":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"/":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"13":{"tf":1.0},"156":{"tf":1.7320508075688772},"228":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.4142135623730951},"238":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"156":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"169":{"tf":1.0}}}},"i":{"df":10,"docs":{"0":{"tf":1.0},"10":{"tf":1.4142135623730951},"168":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"7":{"tf":1.7320508075688772},"8":{"tf":1.0},"9":{"tf":1.4142135623730951}},"m":{"df":1,"docs":{"102":{"tf":2.23606797749979}}},"p":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"232":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"237":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"df":24,"docs":{"139":{"tf":1.0},"140":{"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},"206":{"tf":1.0},"219":{"tf":1.4142135623730951},"229":{"tf":1.0},"230":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.449489742783178},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"244":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"235":{"tf":1.0},"238":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"2":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"210":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"147":{"tf":1.7320508075688772},"235":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":18,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":2.0},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"'":{"df":1,"docs":{"224":{"tf":1.0}}},"df":18,"docs":{"117":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.4142135623730951},"140":{"tf":1.0},"159":{"tf":1.0},"233":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"58":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.7320508075688772},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"97":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"228":{"tf":1.0},"238":{"tf":1.0}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":64,"docs":{"11":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.4142135623730951},"167":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.7320508075688772},"20":{"tf":1.0},"201":{"tf":1.4142135623730951},"202":{"tf":1.7320508075688772},"203":{"tf":2.23606797749979},"204":{"tf":2.0},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.7320508075688772},"224":{"tf":2.449489742783178},"225":{"tf":1.0},"226":{"tf":2.0},"228":{"tf":1.0},"234":{"tf":2.0},"245":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"f":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"2":{"df":0,"docs":{},"u":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}}},"1":{".":{"1":{"2":{"3":{"4":{"5":{"6":{"7":{"8":{"9":{"0":{"1":{"2":{"3":{"4":{"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":{}},"df":0,"docs":{}},"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":{"0":{"1":{"8":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"185":{"tf":1.0},"190":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"137":{"tf":1.7320508075688772}}}}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"=":{"d":{"a":{"df":0,"docs":{},"t":{"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":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"df":1,"docs":{"14":{"tf":1.0}},"i":{"df":1,"docs":{"245":{"tf":1.0}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"246":{"tf":1.0},"9":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"235":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"224":{"tf":1.0}}}}},"r":{"df":11,"docs":{"120":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"20":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.0},"31":{"tf":1.0},"86":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"234":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"0":{"tf":1.0},"228":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"233":{"tf":1.0},"237":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"(":{"'":{"3":{"1":{"3":{"5":{"df":1,"docs":{"147":{"tf":1.0}},"z":{"df":0,"docs":{},"z":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"147":{"tf":2.23606797749979}}}}},"i":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"100":{"tf":1.0},"107":{"tf":2.0}},"e":{"(":{"'":{"a":{"d":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.7320508075688772},"51":{"tf":2.23606797749979},"54":{"tf":2.6457513110645907},"56":{"tf":1.7320508075688772}}}},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}},"t":{"df":1,"docs":{"245":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"144":{"tf":1.0},"229":{"tf":1.0}}}}}},"x":{"df":2,"docs":{"123":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{"'":{"2":{"0":{"2":{"3":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"9":{"7":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"123":{"tf":1.7320508075688772},"148":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"237":{"tf":1.0},"63":{"tf":1.0},"85":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"235":{"tf":1.0},"253":{"tf":1.0},"47":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":3,"docs":{"220":{"tf":1.0},"238":{"tf":1.0},"76":{"tf":1.0}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"[":{"1":{".":{"9":{"9":{"df":2,"docs":{"40":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"40":{"tf":2.23606797749979},"41":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}},"df":2,"docs":{"24":{"tf":2.449489742783178},"27":{"tf":2.23606797749979}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":2.0}}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"194":{"tf":1.0},"6":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"230":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":13,"docs":{"117":{"tf":1.0},"13":{"tf":2.23606797749979},"16":{"tf":1.0},"175":{"tf":1.4142135623730951},"190":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":3.1622776601683795},"243":{"tf":1.0},"25":{"tf":2.0},"26":{"tf":2.0},"27":{"tf":2.0},"29":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":5,"docs":{"149":{"tf":1.0},"16":{"tf":1.0},"195":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"103":{"tf":1.7320508075688772},"147":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":2.0}}}}}}},"r":{"d":{"df":0,"docs":{},"u":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"226":{"tf":1.0}}},"l":{"df":2,"docs":{"201":{"tf":1.0},"216":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"207":{"tf":2.0},"216":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"198":{"tf":1.4142135623730951},"76":{"tf":1.0}}}},"df":69,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"148":{"tf":1.0},"18":{"tf":1.0},"181":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":2.23606797749979},"221":{"tf":1.0},"226":{"tf":1.7320508075688772},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"231":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"25":{"tf":1.0},"252":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"40":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}},"df":30,"docs":{"10":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"15":{"tf":2.0},"16":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"220":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"244":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.0},"252":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0},"76":{"tf":2.0},"8":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"198":{"tf":1.4142135623730951},"215":{"tf":2.0}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"[":{"1":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"_":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"76":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":6,"docs":{"124":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":2,"docs":{"147":{"tf":1.0},"224":{"tf":1.0}}}},"u":{"df":0,"docs":{},"i":{"d":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"'":{"d":{"2":{"c":{"df":0,"docs":{},"e":{"2":{"1":{"c":{"9":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"'":{"d":{"2":{"c":{"df":0,"docs":{},"e":{"2":{"1":{"c":{"9":{"d":{"2":{"6":{"8":{"4":{"0":{"9":{"a":{"b":{"1":{"df":0,"docs":{},"e":{"0":{"4":{"9":{"df":0,"docs":{},"e":{"1":{"2":{"0":{"0":{"b":{"df":0,"docs":{},"f":{"a":{"4":{"7":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{"'":{"d":{"2":{"c":{"df":0,"docs":{},"e":{"2":{"1":{"c":{"9":{"d":{"2":{"6":{"8":{"4":{"0":{"9":{"a":{"b":{"1":{"df":0,"docs":{},"e":{"0":{"4":{"9":{"df":0,"docs":{},"e":{"1":{"2":{"0":{"0":{"b":{"df":0,"docs":{},"f":{"a":{"4":{"7":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"'":{"d":{"2":{"c":{"df":0,"docs":{},"e":{"2":{"1":{"c":{"9":{"d":{"2":{"6":{"8":{"4":{"0":{"9":{"a":{"b":{"1":{"df":0,"docs":{},"e":{"0":{"4":{"9":{"df":0,"docs":{},"e":{"1":{"2":{"0":{"0":{"b":{"df":0,"docs":{},"f":{"a":{"4":{"7":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"144":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"144":{"tf":2.6457513110645907},"226":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"3":{".":{"0":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"81":{"tf":2.0}},"i":{"d":{"df":2,"docs":{"12":{"tf":1.0},"167":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":67,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.0},"127":{"tf":1.7320508075688772},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"145":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"180":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"224":{"tf":1.0},"23":{"tf":1.7320508075688772},"233":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"37":{"tf":2.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"48":{"tf":2.23606797749979},"56":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"/":{"@":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"226":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}},"t":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}},"df":5,"docs":{"195":{"tf":1.7320508075688772},"198":{"tf":1.0},"29":{"tf":2.0},"35":{"tf":1.0},"4":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"df":2,"docs":{"199":{"tf":1.0},"201":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":5,"docs":{"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"241":{"tf":1.4142135623730951}}},"s":{"a":{"df":2,"docs":{"143":{"tf":1.0},"18":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"110":{"tf":1.0},"13":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"230":{"tf":1.0}},"i":{"df":1,"docs":{"230":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"143":{"tf":1.0},"18":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"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":{"184":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"184":{"tf":1.4142135623730951},"186":{"tf":2.0},"187":{"tf":3.3166247903554},"188":{"tf":2.449489742783178},"20":{"tf":1.0},"28":{"tf":1.0},"55":{"tf":1.0}}}},"k":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"16":{"tf":1.0}}},"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"13":{"tf":1.4142135623730951},"157":{"tf":1.0},"236":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":3,"docs":{"171":{"tf":1.0},"2":{"tf":1.0},"56":{"tf":1.0}}},"l":{"df":1,"docs":{"233":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"167":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"236":{"tf":1.4142135623730951},"24":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"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":{"233":{"tf":1.0}}}}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":8,"docs":{"0":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"220":{"tf":1.0},"236":{"tf":1.4142135623730951},"238":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"13":{"tf":1.0},"199":{"tf":1.0},"238":{"tf":1.0}}}},"r":{"df":1,"docs":{"230":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"234":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"238":{"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":2,"docs":{"231":{"tf":1.0},"234":{"tf":1.4142135623730951}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"71":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"131":{"tf":1.4142135623730951},"233":{"tf":1.0},"35":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"102":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":2.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"174":{"tf":2.0},"175":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"132":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"55":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"16":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"34":{"tf":1.0},"60":{"tf":1.0}}}}}}}},"o":{"b":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":5,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0}}},"l":{"d":{"df":7,"docs":{"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"238":{"tf":2.0},"250":{"tf":1.0},"5":{"tf":1.0},"97":{"tf":2.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"10":{"tf":1.0},"221":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"215":{"tf":1.0},"228":{"tf":1.0},"34":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"207":{"tf":2.0},"216":{"tf":1.0}}}}},"x":{"%":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"'":{"d":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"224":{"tf":1.0},"72":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":30,"docs":{"110":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"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},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"88":{"tf":1.0},"91":{"tf":2.0}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"238":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"21":{"tf":1.0},"241":{"tf":1.4142135623730951}}}}}}},"s":{"d":{":":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"224":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"224":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"204":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"224":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"224":{"tf":1.0}}}}},"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":2,"docs":{"224":{"tf":1.0},"226":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"224":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"216":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":3,"docs":{"158":{"tf":1.0},"179":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"229":{"tf":1.0},"230":{"tf":1.4142135623730951},"241":{"tf":1.0},"71":{"tf":1.0}}}},"df":1,"docs":{"234":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"219":{"tf":1.0},"222":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"13":{"tf":1.0},"195":{"tf":1.0},"234":{"tf":1.0}}}},"r":{"df":2,"docs":{"0":{"tf":1.0},"250":{"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":{"167":{"tf":1.0}}}}}}}}}},"z":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"141":{"tf":1.0},"215":{"tf":1.0},"81":{"tf":1.7320508075688772}}}},"df":1,"docs":{"147":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"3":{"2":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"146":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":4,"docs":{"146":{"tf":1.0},"225":{"tf":1.0},"41":{"tf":1.0},"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"z":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"140":{"tf":1.0},"141":{"tf":1.4142135623730951},"215":{"tf":1.0},"81":{"tf":1.7320508075688772}}}}}}},"title":{"root":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"a":{"df":2,"docs":{"37":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"h":{"a":{"df":2,"docs":{"194":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"246":{"tf":1.0}}}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"232":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"203":{"tf":1.0},"210":{"tf":1.0}}}}}},"l":{"d":{"+":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"204":{"tf":1.0},"212":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"205":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"n":{"d":{".":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"213":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"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":{}}},"x":{"df":2,"docs":{"207":{"tf":1.0},"211":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"242":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"220":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"189":{"tf":1.0},"190":{"tf":1.0},"191":{"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":1,"docs":{"215":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"g":{"df":1,"docs":{"130":{"tf":1.0}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"c":{"df":2,"docs":{"11":{"tf":1.0},"215":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"158":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"65":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"219":{"tf":1.0},"221":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"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":{"100":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"185":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"149":{"tf":1.0}}}},"u":{"d":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"225":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"246":{"tf":1.0},"249":{"tf":1.0}}}},"df":2,"docs":{"183":{"tf":1.0},"38":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"240":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"237":{"tf":1.0},"250":{"tf":1.0},"78":{"tf":1.0}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"161":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"187":{"tf":1.0},"190":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"8":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"153":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"152":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"239":{"tf":1.0}}}},"df":0,"docs":{}},"df":8,"docs":{"135":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"206":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"195":{"tf":1.0},"196":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"18":{"tf":1.0},"238":{"tf":1.0}}}}}}}},"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"188":{"tf":1.0},"191":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"14":{"tf":1.0},"245":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"194":{"tf":1.0},"6":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":3,"docs":{"228":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":2,"docs":{"11":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"30":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"244":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"58":{"tf":1.0},"9":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"50":{"tf":1.0},"53":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"247":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"55":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"220":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"134":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"207":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"235":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"111":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"175":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"248":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"196":{"tf":1.0},"197":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"45":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"208":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"147":{"tf":1.0}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.0},"235":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"246":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":4,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0}}}}},"u":{"b":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"246":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"139":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"165":{"tf":1.0},"166":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"13":{"tf":1.0},"243":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"251":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"221":{"tf":1.0},"23":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"4":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"105":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"66":{"tf":1.0}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"50":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":1,"docs":{"71":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"39":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"253":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"170":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":2,"docs":{"120":{"tf":1.0},"86":{"tf":1.0}}}},"x":{"df":1,"docs":{"127":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":1,"docs":{"127":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"222":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"172":{"tf":1.0},"217":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"167":{"tf":1.0},"169":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"211":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"168":{"tf":1.0},"17":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"149":{"tf":1.0},"150":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}}},"w":{"df":2,"docs":{"151":{"tf":1.0},"241":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"140":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"173":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"118":{"tf":1.0}}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"113":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"168":{"tf":1.0},"49":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"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":{"101":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"249":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"239":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"149":{"tf":1.0},"240":{"tf":1.0}}},"r":{"df":5,"docs":{"198":{"tf":1.0},"50":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"200":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"31":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"117":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"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":1,"docs":{"178":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"179":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"df":5,"docs":{"167":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"149":{"tf":1.0},"160":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"218":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"163":{"tf":1.0},"165":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"246":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"148":{"tf":1.0},"200":{"tf":1.0},"247":{"tf":1.0},"33":{"tf":1.0},"5":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"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":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"171":{"tf":1.0},"56":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"192":{"tf":1.0},"20":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"57":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"249":{"tf":1.0},"44":{"tf":1.0}}}}}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"252":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"57":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.0}}}},"w":{"df":2,"docs":{"170":{"tf":1.0},"76":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"57":{"tf":1.0},"59":{"tf":1.0}}}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"224":{"tf":1.0},"226":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"181":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.0},"35":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"15":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"237":{"tf":1.0},"250":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":3,"docs":{"249":{"tf":1.0},"26":{"tf":1.0},"50":{"tf":1.0}}}},"h":{"a":{"1":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"240":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"l":{":":{"2":{"0":{"1":{"1":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"11":{"tf":1.0},"20":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0},"62":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"237":{"tf":1.0},"250":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"122":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"99":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"164":{"tf":1.0},"166":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":1,"docs":{"128":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"155":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"182":{"tf":1.0},"37":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"64":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":5,"docs":{"148":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"70":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"236":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"150":{"tf":1.0},"80":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"246":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"7":{"tf":1.0}},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":6,"docs":{"135":{"tf":1.0},"202":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":1.0},"62":{"tf":1.0},"81":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"147":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"50":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}}}},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"48":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"184":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"194":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"w":{"df":1,"docs":{"207":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}} \ No newline at end of file diff --git a/docs/sql/data_manipulation.html b/docs/sql/data_manipulation.html index bb2dba1..8d92eca 100644 --- a/docs/sql/data_manipulation.html +++ b/docs/sql/data_manipulation.html @@ -270,9 +270,6 @@

ERASE

Once a document has been erased, it is no longer possible to query for it at all.

ERASE FROM products WHERE name = 'Salt';
 
-

NOTE: ERASE currently does not remove data from disk. -This feature will be added when Endb handles compaction, as per our -roadmap.

Parameters

Parameters to DML are documented under the HTTP API.

Transactions

diff --git a/docs/sql/queries.html b/docs/sql/queries.html index 7b9c79b..2928a53 100644 --- a/docs/sql/queries.html +++ b/docs/sql/queries.html @@ -376,9 +376,10 @@

Union 400 Bad Request Number of UNION left columns: 3 does not match right columns: 2 -

WITH Queries (Common Table Expressions)

+

WITH (Common Table Expressions)

The WITH keyword is used to create Common Table Expressions, or CTEs. -CTEs act like temporary tables or views within the context of a query. +CTEs act like temporary tables or views within the context of a query or +DML statement. CTEs are used in place of a sub-select to simplify the appearance of a query. WITH clauses take the form WITH <cte-name> AS (<cte-select>).

WITH top_margin_products AS (SELECT product_no FROM products WHERE (price - cost) > 5.00)
diff --git a/src/sql/data_manipulation.md b/src/sql/data_manipulation.md
index 2039219..3c0b4a6 100644
--- a/src/sql/data_manipulation.md
+++ b/src/sql/data_manipulation.md
@@ -167,9 +167,9 @@ Once a document has been erased, it is no longer possible to query for it at all
 ERASE FROM products WHERE name = 'Salt';
 ```
 
-NOTE: `ERASE` currently does not remove data from disk.
-This feature will be added when Endb handles compaction, as per our
-[roadmap](../appendix/roadmap.md).
+
+
+
 
 ## Parameters
 
diff --git a/src/sql/queries.md b/src/sql/queries.md
index c906c77..d79a910 100644
--- a/src/sql/queries.md
+++ b/src/sql/queries.md
@@ -343,10 +343,11 @@ Number of UNION left columns: 3 does not match right columns: 2
 ```
 
 
-## WITH Queries (Common Table Expressions)
+## WITH (Common Table Expressions)
 
 The `WITH` keyword is used to create _Common Table Expressions_, or CTEs.
-CTEs act like temporary tables or views within the context of a query.
+CTEs act like temporary tables or views within the context of a query or
+[DML statement](data_manipulation.md).
 CTEs are used in place of a sub-select to simplify the appearance of a query.
 `WITH` clauses take the form `WITH  AS ()`.