Files
rust-by-practice/searchindex.js
sunface 987c59ed75 deploy
2025-04-25 12:48:03 +08:00

1 line
1.3 MiB
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Object.assign(window.search, {"doc_urls":["why-exercise.html#reading-online","why-exercise.html#running-locally","why-exercise.html#features","elegant-code-base.html#small-projects-with-elegant-code-base","elegant-code-base.html#1-ripgrep","elegant-code-base.html#2-building-a-text-editor","elegant-code-base.html#3-ncspot","elegant-code-base.html#4-command-line-rust","elegant-code-base.html#5-pngme-book","elegant-code-base.html#6-writing-an-os-in-rust","elegant-code-base.html#7-codecraftersio-build-your-own-git-docker-sqlite-or-redis","elegant-code-base.html#8-mini-redis","elegant-code-base.html#9-writing-interpreters-in-rust","variables.html#variables","variables.html#binding-and-mutability","variables.html#scope","variables.html#shadowing","variables.html#unused-variables","variables.html#destructuring","variables.html#destructuring-assignments","basic-types/intro.html#basic-types","basic-types/numbers.html#numbers","basic-types/numbers.html#integer","basic-types/numbers.html#floating-point","basic-types/numbers.html#range","basic-types/numbers.html#computations","basic-types/char-bool-unit.html#char-bool-and-unit","basic-types/char-bool-unit.html#char","basic-types/char-bool-unit.html#bool","basic-types/char-bool-unit.html#unit-type","basic-types/statements-expressions.html#statements-and-expressions","basic-types/statements-expressions.html#examples","basic-types/statements-expressions.html#exercises","basic-types/functions.html#functions","basic-types/functions.html#diverging-functions","ownership/intro.html#ownership-and-borrowing","ownership/ownership.html#ownership","ownership/ownership.html#partial-move","ownership/borrowing.html#reference-and-borrowing","ownership/borrowing.html#reference","ownership/borrowing.html#borrowing-rules","ownership/borrowing.html#nll","compound-types/intro.html#compound-types","compound-types/string.html#string","compound-types/string.html#str-and-str","compound-types/string.html#string-1","compound-types/string.html#str-and-string","compound-types/string.html#string-escapes","compound-types/string.html#byte-string","compound-types/string.html#string-index","compound-types/string.html#operate-on-utf8-string","compound-types/array.html#array","compound-types/slice.html#slice","compound-types/slice.html#string-slices","compound-types/tuple.html#tuple","compound-types/struct.html#struct","compound-types/struct.html#the-types-of-structs","compound-types/struct.html#operating-on-structs","compound-types/struct.html#print-the-structs","compound-types/struct.html#partial-move","compound-types/enum.html#enum","flow-control.html#flow-control","flow-control.html#ifelse","flow-control.html#for","flow-control.html#while","flow-control.html#continue-and-break","flow-control.html#loop","pattern-match/intro.html#pattern-match","pattern-match/match-iflet.html#match-if-let","pattern-match/match-iflet.html#match","pattern-match/match-iflet.html#matches","pattern-match/match-iflet.html#if-let","pattern-match/match-iflet.html#shadowing","pattern-match/patterns.html#patterns","method.html#associated-functions--methods","method.html#examples","method.html#exercises","method.html#method","method.html#associated-functions","method.html#multiple-impl-blocks","method.html#enums","method.html#practice","generics-traits/intro.html#generics-and-traits","generics-traits/generics.html#generics","generics-traits/generics.html#functions","generics-traits/generics.html#struct-and-impl","generics-traits/generics.html#method","generics-traits/const-generics.html#const-generics","generics-traits/const-generics.html#examples","generics-traits/const-generics.html#exercises","generics-traits/traits.html#traits","generics-traits/traits.html#examples","generics-traits/traits.html#exercises","generics-traits/traits.html#derive","generics-traits/traits.html#operator","generics-traits/traits.html#use-trait-as-function-parameters","generics-traits/traits.html#returning-types-that-implement-traits","generics-traits/traits.html#trait-bound","generics-traits/trait-object.html#trait-object","generics-traits/trait-object.html#returning-traits-with-dyn","generics-traits/trait-object.html#array-with-trait-objects","generics-traits/trait-object.html#dyn-and-box","generics-traits/trait-object.html#static-and-dynamic-dispatch","generics-traits/trait-object.html#object-safe","generics-traits/advanced-traits.html#advance-traits","generics-traits/advanced-traits.html#associated-types","generics-traits/advanced-traits.html#default-generic-type-parameters","generics-traits/advanced-traits.html#fully-qualified-syntax","generics-traits/advanced-traits.html#supertraits","generics-traits/advanced-traits.html#orphan-rules","collections/intro.html#collection-types","collections/string.html#string","collections/string.html#basic-operations","collections/string.html#string-and-str","collections/string.html#utf-8--indexing","collections/string.html#representation","collections/string.html#common-methods","collections/vector.html#vector","collections/vector.html#basic-operations","collections/vector.html#turn-x-into-vec","collections/vector.html#indexing","collections/vector.html#slicing","collections/vector.html#capacity","collections/vector.html#store-distinct-types-in-vector","collections/hashmap.html#hashmap","collections/hashmap.html#basic-operations","collections/hashmap.html#requirements-of-hashmap-key","collections/hashmap.html#capacity","collections/hashmap.html#ownership","collections/hashmap.html#third-party-hash-libs","type-conversions/intro.html#type-conversion","type-conversions/as.html#convert-by-as","type-conversions/from-into.html#frominto","type-conversions/from-into.html#implement-from-for-custom-types","type-conversions/from-into.html#tryfromtryinto","type-conversions/others.html#others","type-conversions/others.html#convert-any-type-to-string","type-conversions/others.html#parse-a-string","type-conversions/others.html#deref","type-conversions/others.html#transmute","result-panic/intro.html#result-and-panic","result-panic/panic.html#panic","result-panic/panic.html#common-panic-cases","result-panic/panic.html#detailed-call-stack","result-panic/panic.html#unwinding-and-abort","result-panic/result.html#result-and-","result-panic/result.html#","result-panic/result.html#map--and_then","result-panic/result.html#type-alias","result-panic/result.html#using-result-in-fn-main","crate-module/intro.html#crate-and-module","crate-module/crate.html#package-and-crate","crate-module/crate.html#crate","crate-module/module.html#module","crate-module/module.html#separating-modules-into-different-files","crate-module/module.html#accessing-code-in-library-crate-from-binary-crate","crate-module/use-pub.html#use-and-pub","crate-module/use-pub.html#re-exporting-names-with-pub-use","crate-module/use-pub.html#pubin-crate","crate-module/use-pub.html#full-code","comments-docs.html#comments-and-docs","comments-docs.html#comments","comments-docs.html#examples","comments-docs.html#exercises","comments-docs.html#doc-comments","comments-docs.html#line-doc-comments-","comments-docs.html#cargo-doc","comments-docs.html#block-doc-comments---","comments-docs.html#doc-comments-for-crate-and-module","comments-docs.html#doc-tests","comments-docs.html#code-navigation","comments-docs.html#doc-attributes","comments-docs.html#inline","comments-docs.html#no_inline","comments-docs.html#hidden","comments-docs.html#full-code","formatted-output/intro.html#formatted-output","formatted-output/println.html#println-and-format","formatted-output/println.html#format","formatted-output/println.html#print-println","formatted-output/debug-display.html#debug-and-display","formatted-output/debug-display.html#debug","formatted-output/debug-display.html#display","formatted-output/debug-display.html#-operator","formatted-output/formatting.html#formatting","formatted-output/formatting.html#positional-arguments","formatted-output/formatting.html#named-arguments","formatted-output/formatting.html#padding-with-string","formatted-output/formatting.html#precision","formatted-output/formatting.html#binary-octal-hex","formatted-output/formatting.html#capture-the-environment","formatted-output/formatting.html#others","lifetime/intro.html#lifetime","lifetime/basic.html#lifetime","lifetime/basic.html#the-scope-of-lifetime","lifetime/basic.html#lifetime-annotating","lifetime/basic.html#method","lifetime/basic.html#elision","lifetime/static.html#static-and-t-static","lifetime/static.html#static","lifetime/static.html#t-static","lifetime/advance.html#advance-lifetime","lifetime/advance.html#trait-bounds","lifetime/advance.html#hrtbhigher-ranked-trait-bounds","lifetime/advance.html#nll-non-lexical-lifetime","lifetime/advance.html#reborrow","lifetime/advance.html#unbound-lifetime","lifetime/advance.html#more-elision-rules","lifetime/advance.html#a-difficult-exercise","functional-programing/intro.html#functional-programing","functional-programing/closure.html#closure","functional-programing/closure.html#capturing","functional-programing/closure.html#type-inferred","functional-programing/closure.html#fn-fnmut-fnonce","functional-programing/closure.html#input-functions","functional-programing/closure.html#closure-as-return-types","functional-programing/closure.html#closure-in-structs","functional-programing/iterator.html#iterator","functional-programing/iterator.html#for-and-iterator","functional-programing/iterator.html#next-method","functional-programing/iterator.html#into_iter-iter-and-iter_mut","functional-programing/iterator.html#creating-our-own-iterator","functional-programing/iterator.html#methods-that-consume-the-iterator","functional-programing/iterator.html#consuming-adaptors","functional-programing/iterator.html#iterator-adaptors","newtype-sized.html#newtype-and-sized","newtype-sized.html#newtype","newtype-sized.html#type-alias","newtype-sized.html#dst-and-unsized-type","smart-pointers/intro.html#smart-pointers","smart-pointers/box.html#box","smart-pointers/deref.html#deref","smart-pointers/drop.html#drop","smart-pointers/rc-arc.html#rc-and-arc","smart-pointers/cell-refcell.html#cell-and-refcell","weak.html#weak-and-circle-reference","self-referential.html#self-referential","threads/intro.html#threads","threads/basic-using.html#basic-using","threads/message-passing.html#message-passing","threads/sync.html#sync","threads/atomic.html#atomic","threads/send-sync.html#send-and-sync","global-variables.html#global-variables","errors.html#errors","unsafe/intro.html#unsafe-todo","unsafe/inline-asm.html#inline-assembly","unsafe/inline-asm.html#basic-usage","unsafe/inline-asm.html#inputs-and-outputs","unsafe/inline-asm.html#late-output-operands","unsafe/inline-asm.html#explicit-register-operands","unsafe/inline-asm.html#clobbered-registers","unsafe/inline-asm.html#symbol-operands-and-abi-clobbers","unsafe/inline-asm.html#register-template-modifiers","unsafe/inline-asm.html#memory-address-operands","unsafe/inline-asm.html#labels","unsafe/inline-asm.html#options","macro.html#macro","tests/intro.html#tests","tests/write-tests.html#write-tests","tests/benchmark.html#benchmark","tests/unit-integration.html#unit-and-integration","tests/assertions.html#assertions","async/intro.html#asyncawait","async/async-await.html#async-and-await","async/future.html#future","async/pin-unpin.html#pin-and-unpin","async/stream.html#stream","std/intro.html#stand-library-todo","std/String.html#string","fight-compiler/intro.html#fighting-with-compiler","fight-compiler/borrowing.html#borrowing"],"index":{"documentStore":{"docInfo":{"0":{"body":31,"breadcrumbs":4,"title":2},"1":{"body":21,"breadcrumbs":4,"title":2},"10":{"body":20,"breadcrumbs":11,"title":7},"100":{"body":66,"breadcrumbs":7,"title":3},"101":{"body":45,"breadcrumbs":6,"title":2},"102":{"body":129,"breadcrumbs":7,"title":3},"103":{"body":67,"breadcrumbs":6,"title":2},"104":{"body":0,"breadcrumbs":6,"title":2},"105":{"body":138,"breadcrumbs":6,"title":2},"106":{"body":80,"breadcrumbs":8,"title":4},"107":{"body":162,"breadcrumbs":7,"title":3},"108":{"body":118,"breadcrumbs":5,"title":1},"109":{"body":84,"breadcrumbs":6,"title":2},"11":{"body":20,"breadcrumbs":7,"title":3},"110":{"body":8,"breadcrumbs":4,"title":2},"111":{"body":16,"breadcrumbs":4,"title":1},"112":{"body":33,"breadcrumbs":5,"title":2},"113":{"body":104,"breadcrumbs":5,"title":2},"114":{"body":151,"breadcrumbs":6,"title":3},"115":{"body":117,"breadcrumbs":4,"title":1},"116":{"body":14,"breadcrumbs":5,"title":2},"117":{"body":11,"breadcrumbs":4,"title":1},"118":{"body":67,"breadcrumbs":5,"title":2},"119":{"body":58,"breadcrumbs":6,"title":3},"12":{"body":15,"breadcrumbs":8,"title":4},"120":{"body":25,"breadcrumbs":4,"title":1},"121":{"body":85,"breadcrumbs":4,"title":1},"122":{"body":119,"breadcrumbs":4,"title":1},"123":{"body":80,"breadcrumbs":7,"title":4},"124":{"body":86,"breadcrumbs":4,"title":1},"125":{"body":153,"breadcrumbs":5,"title":2},"126":{"body":127,"breadcrumbs":6,"title":3},"127":{"body":90,"breadcrumbs":4,"title":1},"128":{"body":54,"breadcrumbs":4,"title":1},"129":{"body":38,"breadcrumbs":7,"title":4},"13":{"body":0,"breadcrumbs":2,"title":1},"130":{"body":6,"breadcrumbs":4,"title":2},"131":{"body":260,"breadcrumbs":3,"title":1},"132":{"body":145,"breadcrumbs":4,"title":1},"133":{"body":89,"breadcrumbs":6,"title":3},"134":{"body":104,"breadcrumbs":4,"title":1},"135":{"body":0,"breadcrumbs":4,"title":1},"136":{"body":53,"breadcrumbs":6,"title":3},"137":{"body":107,"breadcrumbs":5,"title":2},"138":{"body":6,"breadcrumbs":4,"title":1},"139":{"body":246,"breadcrumbs":4,"title":1},"14":{"body":44,"breadcrumbs":3,"title":2},"140":{"body":8,"breadcrumbs":4,"title":2},"141":{"body":53,"breadcrumbs":4,"title":1},"142":{"body":87,"breadcrumbs":6,"title":3},"143":{"body":90,"breadcrumbs":6,"title":3},"144":{"body":56,"breadcrumbs":5,"title":2},"145":{"body":55,"breadcrumbs":4,"title":1},"146":{"body":80,"breadcrumbs":3,"title":0},"147":{"body":109,"breadcrumbs":5,"title":2},"148":{"body":82,"breadcrumbs":5,"title":2},"149":{"body":58,"breadcrumbs":7,"title":4},"15":{"body":48,"breadcrumbs":2,"title":1},"150":{"body":8,"breadcrumbs":4,"title":2},"151":{"body":76,"breadcrumbs":6,"title":2},"152":{"body":173,"breadcrumbs":5,"title":1},"153":{"body":143,"breadcrumbs":4,"title":1},"154":{"body":87,"breadcrumbs":7,"title":4},"155":{"body":52,"breadcrumbs":9,"title":6},"156":{"body":55,"breadcrumbs":7,"title":2},"157":{"body":19,"breadcrumbs":10,"title":5},"158":{"body":51,"breadcrumbs":7,"title":2},"159":{"body":13,"breadcrumbs":7,"title":2},"16":{"body":64,"breadcrumbs":2,"title":1},"160":{"body":3,"breadcrumbs":4,"title":2},"161":{"body":15,"breadcrumbs":3,"title":1},"162":{"body":65,"breadcrumbs":3,"title":1},"163":{"body":13,"breadcrumbs":3,"title":1},"164":{"body":28,"breadcrumbs":4,"title":2},"165":{"body":25,"breadcrumbs":5,"title":3},"166":{"body":9,"breadcrumbs":4,"title":2},"167":{"body":25,"breadcrumbs":5,"title":3},"168":{"body":64,"breadcrumbs":6,"title":4},"169":{"body":251,"breadcrumbs":4,"title":2},"17":{"body":23,"breadcrumbs":3,"title":2},"170":{"body":55,"breadcrumbs":4,"title":2},"171":{"body":8,"breadcrumbs":4,"title":2},"172":{"body":21,"breadcrumbs":3,"title":1},"173":{"body":13,"breadcrumbs":3,"title":1},"174":{"body":24,"breadcrumbs":3,"title":1},"175":{"body":6,"breadcrumbs":4,"title":2},"176":{"body":213,"breadcrumbs":4,"title":2},"177":{"body":48,"breadcrumbs":6,"title":2},"178":{"body":12,"breadcrumbs":5,"title":1},"179":{"body":22,"breadcrumbs":6,"title":2},"18":{"body":28,"breadcrumbs":2,"title":1},"180":{"body":19,"breadcrumbs":6,"title":2},"181":{"body":126,"breadcrumbs":5,"title":1},"182":{"body":66,"breadcrumbs":5,"title":1},"183":{"body":106,"breadcrumbs":5,"title":1},"184":{"body":0,"breadcrumbs":4,"title":1},"185":{"body":24,"breadcrumbs":5,"title":2},"186":{"body":32,"breadcrumbs":5,"title":2},"187":{"body":111,"breadcrumbs":5,"title":2},"188":{"body":44,"breadcrumbs":4,"title":1},"189":{"body":38,"breadcrumbs":6,"title":3},"19":{"body":48,"breadcrumbs":3,"title":2},"190":{"body":36,"breadcrumbs":5,"title":2},"191":{"body":30,"breadcrumbs":4,"title":1},"192":{"body":7,"breadcrumbs":2,"title":1},"193":{"body":13,"breadcrumbs":3,"title":1},"194":{"body":68,"breadcrumbs":4,"title":2},"195":{"body":418,"breadcrumbs":4,"title":2},"196":{"body":50,"breadcrumbs":3,"title":1},"197":{"body":90,"breadcrumbs":3,"title":1},"198":{"body":28,"breadcrumbs":7,"title":3},"199":{"body":166,"breadcrumbs":5,"title":1},"2":{"body":69,"breadcrumbs":3,"title":1},"20":{"body":8,"breadcrumbs":4,"title":2},"200":{"body":171,"breadcrumbs":6,"title":2},"201":{"body":0,"breadcrumbs":4,"title":2},"202":{"body":165,"breadcrumbs":4,"title":2},"203":{"body":56,"breadcrumbs":6,"title":4},"204":{"body":110,"breadcrumbs":6,"title":4},"205":{"body":83,"breadcrumbs":3,"title":1},"206":{"body":6,"breadcrumbs":4,"title":2},"207":{"body":24,"breadcrumbs":5,"title":3},"208":{"body":63,"breadcrumbs":4,"title":2},"209":{"body":7,"breadcrumbs":4,"title":2},"21":{"body":0,"breadcrumbs":4,"title":1},"210":{"body":86,"breadcrumbs":4,"title":1},"211":{"body":121,"breadcrumbs":4,"title":1},"212":{"body":42,"breadcrumbs":5,"title":2},"213":{"body":349,"breadcrumbs":6,"title":3},"214":{"body":26,"breadcrumbs":5,"title":2},"215":{"body":54,"breadcrumbs":6,"title":3},"216":{"body":65,"breadcrumbs":5,"title":2},"217":{"body":18,"breadcrumbs":4,"title":1},"218":{"body":72,"breadcrumbs":4,"title":1},"219":{"body":45,"breadcrumbs":5,"title":2},"22":{"body":115,"breadcrumbs":4,"title":1},"220":{"body":108,"breadcrumbs":6,"title":3},"221":{"body":115,"breadcrumbs":5,"title":2},"222":{"body":9,"breadcrumbs":6,"title":3},"223":{"body":77,"breadcrumbs":5,"title":2},"224":{"body":126,"breadcrumbs":5,"title":2},"225":{"body":0,"breadcrumbs":4,"title":2},"226":{"body":192,"breadcrumbs":3,"title":1},"227":{"body":100,"breadcrumbs":4,"title":2},"228":{"body":66,"breadcrumbs":5,"title":3},"229":{"body":0,"breadcrumbs":5,"title":2},"23":{"body":33,"breadcrumbs":5,"title":2},"230":{"body":62,"breadcrumbs":5,"title":1},"231":{"body":0,"breadcrumbs":5,"title":1},"232":{"body":0,"breadcrumbs":5,"title":1},"233":{"body":0,"breadcrumbs":7,"title":2},"234":{"body":0,"breadcrumbs":7,"title":2},"235":{"body":0,"breadcrumbs":7,"title":3},"236":{"body":0,"breadcrumbs":5,"title":2},"237":{"body":0,"breadcrumbs":3,"title":1},"238":{"body":0,"breadcrumbs":6,"title":2},"239":{"body":0,"breadcrumbs":6,"title":2},"24":{"body":45,"breadcrumbs":4,"title":1},"240":{"body":0,"breadcrumbs":4,"title":1},"241":{"body":0,"breadcrumbs":4,"title":1},"242":{"body":0,"breadcrumbs":6,"title":2},"243":{"body":0,"breadcrumbs":5,"title":2},"244":{"body":0,"breadcrumbs":3,"title":1},"245":{"body":0,"breadcrumbs":4,"title":2},"246":{"body":55,"breadcrumbs":6,"title":2},"247":{"body":36,"breadcrumbs":6,"title":2},"248":{"body":262,"breadcrumbs":6,"title":2},"249":{"body":143,"breadcrumbs":7,"title":3},"25":{"body":78,"breadcrumbs":4,"title":1},"250":{"body":178,"breadcrumbs":7,"title":3},"251":{"body":326,"breadcrumbs":6,"title":2},"252":{"body":83,"breadcrumbs":8,"title":4},"253":{"body":148,"breadcrumbs":7,"title":3},"254":{"body":39,"breadcrumbs":7,"title":3},"255":{"body":197,"breadcrumbs":5,"title":1},"256":{"body":159,"breadcrumbs":5,"title":1},"257":{"body":0,"breadcrumbs":3,"title":1},"258":{"body":0,"breadcrumbs":3,"title":1},"259":{"body":0,"breadcrumbs":6,"title":2},"26":{"body":0,"breadcrumbs":8,"title":3},"260":{"body":4,"breadcrumbs":4,"title":1},"261":{"body":0,"breadcrumbs":6,"title":2},"262":{"body":0,"breadcrumbs":4,"title":1},"263":{"body":0,"breadcrumbs":3,"title":1},"264":{"body":0,"breadcrumbs":6,"title":2},"265":{"body":0,"breadcrumbs":4,"title":1},"266":{"body":0,"breadcrumbs":6,"title":2},"267":{"body":0,"breadcrumbs":4,"title":1},"268":{"body":0,"breadcrumbs":6,"title":3},"269":{"body":0,"breadcrumbs":5,"title":1},"27":{"body":22,"breadcrumbs":6,"title":1},"270":{"body":21,"breadcrumbs":4,"title":2},"271":{"body":44,"breadcrumbs":4,"title":1},"28":{"body":24,"breadcrumbs":6,"title":1},"29":{"body":50,"breadcrumbs":7,"title":2},"3":{"body":49,"breadcrumbs":9,"title":5},"30":{"body":0,"breadcrumbs":6,"title":2},"31":{"body":31,"breadcrumbs":5,"title":1},"32":{"body":47,"breadcrumbs":5,"title":1},"33":{"body":52,"breadcrumbs":4,"title":1},"34":{"body":74,"breadcrumbs":5,"title":2},"35":{"body":8,"breadcrumbs":4,"title":2},"36":{"body":122,"breadcrumbs":4,"title":1},"37":{"body":135,"breadcrumbs":5,"title":2},"38":{"body":0,"breadcrumbs":6,"title":2},"39":{"body":105,"breadcrumbs":5,"title":1},"4":{"body":17,"breadcrumbs":6,"title":2},"40":{"body":62,"breadcrumbs":6,"title":2},"41":{"body":57,"breadcrumbs":5,"title":1},"42":{"body":10,"breadcrumbs":4,"title":2},"43":{"body":11,"breadcrumbs":4,"title":1},"44":{"body":43,"breadcrumbs":5,"title":2},"45":{"body":106,"breadcrumbs":4,"title":1},"46":{"body":52,"breadcrumbs":5,"title":2},"47":{"body":127,"breadcrumbs":5,"title":2},"48":{"body":131,"breadcrumbs":5,"title":2},"49":{"body":42,"breadcrumbs":5,"title":2},"5":{"body":7,"breadcrumbs":8,"title":4},"50":{"body":41,"breadcrumbs":6,"title":3},"51":{"body":177,"breadcrumbs":4,"title":1},"52":{"body":142,"breadcrumbs":4,"title":1},"53":{"body":84,"breadcrumbs":5,"title":2},"54":{"body":170,"breadcrumbs":4,"title":1},"55":{"body":0,"breadcrumbs":4,"title":1},"56":{"body":132,"breadcrumbs":5,"title":2},"57":{"body":116,"breadcrumbs":5,"title":2},"58":{"body":48,"breadcrumbs":5,"title":2},"59":{"body":131,"breadcrumbs":5,"title":2},"6":{"body":12,"breadcrumbs":6,"title":2},"60":{"body":383,"breadcrumbs":4,"title":1},"61":{"body":0,"breadcrumbs":4,"title":2},"62":{"body":54,"breadcrumbs":3,"title":1},"63":{"body":68,"breadcrumbs":2,"title":0},"64":{"body":44,"breadcrumbs":2,"title":0},"65":{"body":46,"breadcrumbs":4,"title":2},"66":{"body":129,"breadcrumbs":3,"title":1},"67":{"body":7,"breadcrumbs":4,"title":2},"68":{"body":0,"breadcrumbs":5,"title":1},"69":{"body":104,"breadcrumbs":5,"title":1},"7":{"body":13,"breadcrumbs":8,"title":4},"70":{"body":48,"breadcrumbs":5,"title":1},"71":{"body":61,"breadcrumbs":4,"title":0},"72":{"body":48,"breadcrumbs":5,"title":1},"73":{"body":260,"breadcrumbs":4,"title":1},"74":{"body":0,"breadcrumbs":6,"title":3},"75":{"body":275,"breadcrumbs":4,"title":1},"76":{"body":0,"breadcrumbs":4,"title":1},"77":{"body":162,"breadcrumbs":4,"title":1},"78":{"body":69,"breadcrumbs":5,"title":2},"79":{"body":37,"breadcrumbs":6,"title":3},"8":{"body":21,"breadcrumbs":7,"title":3},"80":{"body":21,"breadcrumbs":4,"title":1},"81":{"body":9,"breadcrumbs":4,"title":1},"82":{"body":8,"breadcrumbs":4,"title":2},"83":{"body":0,"breadcrumbs":4,"title":1},"84":{"body":91,"breadcrumbs":4,"title":1},"85":{"body":75,"breadcrumbs":5,"title":2},"86":{"body":73,"breadcrumbs":4,"title":1},"87":{"body":61,"breadcrumbs":6,"title":2},"88":{"body":206,"breadcrumbs":5,"title":1},"89":{"body":123,"breadcrumbs":5,"title":1},"9":{"body":24,"breadcrumbs":8,"title":4},"90":{"body":32,"breadcrumbs":4,"title":1},"91":{"body":128,"breadcrumbs":4,"title":1},"92":{"body":52,"breadcrumbs":4,"title":1},"93":{"body":81,"breadcrumbs":4,"title":1},"94":{"body":148,"breadcrumbs":4,"title":1},"95":{"body":102,"breadcrumbs":7,"title":4},"96":{"body":88,"breadcrumbs":7,"title":4},"97":{"body":219,"breadcrumbs":5,"title":2},"98":{"body":31,"breadcrumbs":6,"title":2},"99":{"body":114,"breadcrumbs":7,"title":3}},"docs":{"0":{"body":"Practice Rust with challenging examples, exercises and projects Stars Count Forks Count LICENSE This book was designed for easily diving into and getting skilled with Rust, and it's very easy to use: All you need to do is to make each exercise compile without ERRORS and Panics ! English 简体中文","breadcrumbs":"Rust By Practice » Reading online","id":"0","title":"Reading online"},"1":{"body":"We use mdbook building our exercises. You can run locally with below steps: $ git clone https://github.com/sunface/rust-by-practice\n$ cargo install mdbook\n$ cd rust-by-practice && mdbook serve en/","breadcrumbs":"Rust By Practice » Running locally","id":"1","title":"Running locally"},"10":{"body":"On CodeCrafters , you can recreate your favorite developer tools from scratch. It's a hands-on, minimally-guided approach to master Rust, while appreciating the internals and documentation of popular technology that we use every day.","breadcrumbs":"Small projects with Elegant code » 7. CodeCrafters.io: Build your own Git, Docker, SQLite, or Redis","id":"10","title":"7. CodeCrafters.io: Build your own Git, Docker, SQLite, or Redis"},"100":{"body":"🌟🌟 trait Bird { fn quack(&self);\n} struct Duck;\nimpl Duck { fn fly(&self) { println!(\"Look, the duck is flying\") }\n}\nstruct Swan;\nimpl Swan { fn fly(&self) { println!(\"Look, the duck.. oh sorry, the swan is flying\") }\n} impl Bird for Duck { fn quack(&self) { println!(\"{}\", \"duck duck\"); }\n} impl Bird for Swan { fn quack(&self) { println!(\"{}\", \"swan swan\"); }\n} fn main() { // FILL in the blank to make the code work. let birds __; for bird in birds { bird.quack(); // When duck and swan turn into Birds, they all forgot how to fly, only remember how to quack. // So, the code below will cause an error. // bird.fly(); }\n}","breadcrumbs":"Generics and Traits » Trait Object » Array with trait objects","id":"100","title":"Array with trait objects"},"101":{"body":"🌟🌟 // FILL in the blanks.\ntrait Draw { fn draw(&self) -> String;\n} impl Draw for u8 { fn draw(&self) -> String { format!(\"u8: {}\", *self) }\n} impl Draw for f64 { fn draw(&self) -> String { format!(\"f64: {}\", *self) }\n} fn main() { let x = 1.1f64; let y = 8u8; // Draw x. draw_with_box(__); // Draw y. draw_with_ref(&y); println!(\"Success!\");\n} fn draw_with_box(x: Box<dyn Draw>) { x.draw();\n} fn draw_with_ref(x: __) { x.draw();\n}","breadcrumbs":"Generics and Traits » Trait Object » &dyn and Box<dyn>","id":"101","title":"&dyn and Box<dyn>"},"102":{"body":"When we use trait bounds on generics, the compiler generates nongeneric implementations of functions and methods for each concrete type that we use in place of a generic type parameter. The code that results from monomorphization is doing static dispatch, which is when the compiler knows what method youre calling at compile time. When we use trait objects, Rust must use dynamic dispatch. The compiler doesnt know all the types that might be used with the code that is using trait objects, so it doesnt know which method implemented on which type to call. Instead, at runtime, Rust uses the pointers inside the trait object to know which method to call. There is a runtime cost when this lookup happens that doesnt occur with static dispatch. Dynamic dispatch also prevents the compiler from choosing to inline a methods code, which in turn prevents some optimizations. However, we do get extra flexibility when using dynamic dispatch. 🌟🌟 trait Foo { fn method(&self) -> String;\n} impl Foo for u8 { fn method(&self) -> String { format!(\"u8: {}\", *self) }\n} impl Foo for String { fn method(&self) -> String { format!(\"string: {}\", *self) }\n} // IMPLEMENT below with generics.\nfn static_dispatch... // Implement below with trait objects.\nfn dynamic_dispatch... fn main() { let x = 5u8; let y = \"Hello\".to_string(); static_dispatch(x); dynamic_dispatch(&y); println!(\"Success!\");\n}","breadcrumbs":"Generics and Traits » Trait Object » Static and Dynamic dispatch","id":"102","title":"Static and Dynamic dispatch"},"103":{"body":"You can only make object-safe traits into trait objects. A trait is object safe if all the methods defined in the trait have the following properties: The return type isnt Self. There are no generic type parameters. 🌟🌟🌟🌟 // Use at least two approaches to make it work.\n// DON'T add/remove any code line.\ntrait MyTrait { fn f(&self) -> Self;\n} impl MyTrait for u32 { fn f(&self) -> Self { 42 }\n} impl MyTrait for String { fn f(&self) -> Self { self.clone() }\n} fn my_function(x: Box<dyn MyTrait>) { x.f()\n} fn main() { my_function(Box::new(13_u32)); my_function(Box::new(String::from(\"abc\"))); println!(\"Success!\");\n} You can find the solutions here (under the solutions path), but only use it when you need it :)","breadcrumbs":"Generics and Traits » Trait Object » Object safe","id":"103","title":"Object safe"},"104":{"body":"","breadcrumbs":"Generics and Traits » Advanced Traits » Advance Traits","id":"104","title":"Advance Traits"},"105":{"body":"The use of \"Associated types\" improves the overall readability of code by moving inner types locally into a trait as output types. For example : pub trait CacheableItem: Clone + Default + fmt::Debug + Decodable + Encodable { type Address: AsRef<[u8]> + Clone + fmt::Debug + Eq + Hash; fn is_null(&self) -> bool;\n} Using of Address is much more clearer and convenient than AsRef<[u8]> + Clone + fmt::Debug + Eq + Hash. 🌟🌟🌟 struct Container(i32, i32); // USING associated types to re-implement trait Contains.\n// trait Contains {\n// type A;\n// type B; trait Contains<A, B> { fn contains(&self, _: &A, _: &B) -> bool; fn first(&self) -> i32; fn last(&self) -> i32;\n} impl Contains<i32, i32> for Container { fn contains(&self, number_1: &i32, number_2: &i32) -> bool { (&self.0 == number_1) && (&self.1 == number_2) } // Grab the first number. fn first(&self) -> i32 { self.0 } // Grab the last number. fn last(&self) -> i32 { self.1 }\n} fn difference<A, B, C: Contains<A, B>>(container: &C) -> i32 { container.last() - container.first()\n} fn main() { let number_1 = 3; let number_2 = 10; let container = Container(number_1, number_2); println!(\"Does container contain {} and {}: {}\", &number_1, &number_2, container.contains(&number_1, &number_2)); println!(\"First number: {}\", container.first()); println!(\"Last number: {}\", container.last()); println!(\"The difference is: {}\", difference(&container));\n}","breadcrumbs":"Generics and Traits » Advanced Traits » Associated types","id":"105","title":"Associated types"},"106":{"body":"When we use generic type parameters, we can specify a default concrete type for the generic type. This eliminates the need for implementors of the trait to specify a concrete type if the default type works. 🌟🌟 use std::ops::Sub; #[derive(Debug, PartialEq)]\nstruct Point<T> { x: T, y: T,\n} // FILL in the blank in three ways: two of them use the default generic parameters, the other one not.\n// Notice that the implementation uses the associated type `Output`.\nimpl __ { type Output = Self; fn sub(self, other: Self) -> Self::Output { Point { x: self.x - other.x, y: self.y - other.y, } }\n} fn main() { assert_eq!(Point { x: 2, y: 3 } - Point { x: 1, y: 0 }, Point { x: 1, y: 3 }); println!(\"Success!\");\n}","breadcrumbs":"Generics and Traits » Advanced Traits » Default Generic Type Parameters","id":"106","title":"Default Generic Type Parameters"},"107":{"body":"Nothing in Rust prevents a trait from having a method with the same name as another traits method, nor does Rust prevent you from implementing both traits on one type. Its also possible to implement a method directly on the type with the same name as methods from traits. When calling methods with the same name, we have to use Fully Qualified Syntax. Example trait UsernameWidget { // Get the selected username out of this widget fn get(&self) -> String;\n} trait AgeWidget { // Get the selected age out of this widget fn get(&self) -> u8;\n} // A form with both a UsernameWidget and an AgeWidget.\nstruct Form { username: String, age: u8,\n} impl UsernameWidget for Form { fn get(&self) -> String { self.username.clone() }\n} impl AgeWidget for Form { fn get(&self) -> u8 { self.age }\n} fn main() { let form = Form{ username: \"rustacean\".to_owned(), age: 28, }; // If you uncomment this line, you'll get an error saying // \"multiple `get` found\". Because, after all, there are multiple methods // named `get`. // println!(\"{}\", form.get()); let username = UsernameWidget::get(&form); assert_eq!(\"rustacean\".to_owned(), username); let age = AgeWidget::get(&form); // You can also use `<Form as AgeWidget>::get` assert_eq!(28, age); println!(\"Success!\");\n} Exercise 🌟🌟 trait Pilot { fn fly(&self) -> String;\n} trait Wizard { fn fly(&self) -> String;\n} struct Human; impl Pilot for Human { fn fly(&self) -> String { String::from(\"This is your captain speaking.\") }\n} impl Wizard for Human { fn fly(&self) -> String { String::from(\"Up!\") }\n} impl Human { fn fly(&self) -> String { String::from(\"*waving arms furiously*\") }\n} fn main() { let person = Human; assert_eq!(__, \"This is your captain speaking.\"); assert_eq!(__, \"Up!\"); assert_eq!(__, \"*waving arms furiously*\"); println!(\"Success!\");\n}","breadcrumbs":"Generics and Traits » Advanced Traits » Fully Qualified Syntax","id":"107","title":"Fully Qualified Syntax"},"108":{"body":"Sometimes, you might need one trait to use another traits functionality( like the \"inheritance\" in other languages ). In this case, you need to rely on the dependent trait also being implemented. The trait you rely on is a supertrait of the trait youre implementing. 🌟🌟🌟 trait Person { fn name(&self) -> String;\n} // Person is a supertrait of Student.\n// Implementing Student requires you to also impl Person.\ntrait Student: Person { fn university(&self) -> String;\n} trait Programmer { fn fav_language(&self) -> String;\n} // CompSciStudent (computer science student) is a subtrait of both Programmer // and Student. Implementing CompSciStudent requires you to impl both supertraits.\ntrait CompSciStudent: Programmer + Student { fn git_username(&self) -> String;\n} fn comp_sci_student_greeting(student: &dyn CompSciStudent) -> String { format!( \"My name is {} and I attend {}. My favorite language is {}. My Git username is {}\", student.name(), student.university(), student.fav_language(), student.git_username() )\n} struct CSStudent { name: String, university: String, fav_language: String, git_username: String\n} // IMPLEMENT the necessary traits for CSStudent to make the code work\nimpl ... fn main() { let student = CSStudent { name: \"Sunfei\".to_string(), university: \"XXX\".to_string(), fav_language: \"Rust\".to_string(), git_username: \"sunface\".to_string() }; // FILL in the blank println!(\"{}\", comp_sci_student_greeting(__));\n}","breadcrumbs":"Generics and Traits » Advanced Traits » Supertraits","id":"108","title":"Supertraits"},"109":{"body":"We cant implement external traits on external types. For example, we cant implement the Display trait on Vec<T> within our own crate, because Display and Vec<T> are defined in the standard library and arent local to our crate. This restriction is often called the orphan rule, so named because the parent type is not present. This rule ensures that other peoples code cant break your code and vice versa. Its possible to get around this restriction using the newtype pattern, which involves creating a new type in a tuple struct. 🌟🌟 use std::fmt; // DEFINE a newtype `Pretty` here impl fmt::Display for Pretty { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, \"\\\"{}\\\"\", self.0.clone() + \", world\") }\n} fn main() { let w = Pretty(\"hello\".to_string()); println!(\"w = {}\", w);\n} You can find the solutions here (under the solutions path), but only use it when you need it :)","breadcrumbs":"Generics and Traits » Advanced Traits » Orphan Rules","id":"109","title":"Orphan Rules"},"11":{"body":"mini-redis is an incomplete Redis client and server implementation using tokio, it has decent code base and detail explanations, very suitable for learning Rust and asynchronous programming.","breadcrumbs":"Small projects with Elegant code » 8. mini-redis","id":"11","title":"8. mini-redis"},"110":{"body":"Learning resources: English: Rust Book Chapter 8 简体中文: Rust语言圣经 - 集合类型","breadcrumbs":"Collection Types » Collection Types","id":"110","title":"Collection Types"},"111":{"body":"std::string::String is a UTF-8 encoded, growable string. It is the most common string type we used in daily development, it also has ownership over the string contents.","breadcrumbs":"Collection Types » String » String","id":"111","title":"String"},"112":{"body":"🌟🌟 // FILL in the blanks and FIX errors\n// 1. Don't use `to_string()`\n// 2. Don't add/remove any code line\nfn main() { let mut s: String = \"hello, \"; s.push_str(\"world\".to_string()); s.push(__); move_ownership(s); assert_eq!(s, \"hello, world!\"); println!(\"Success!\");\n} fn move_ownership(s: String) { println!(\"ownership of \\\"{}\\\" is moved here!\", s)\n}","breadcrumbs":"Collection Types » String » Basic operations","id":"112","title":"Basic operations"},"113":{"body":"A String is stored as a vector of bytes (Vec<u8>), but guaranteed to always be a valid UTF-8 sequence. String is heap allocated, growable and not null terminated. &str is a slice (&[u8]) that always points to a valid UTF-8 sequence, and can be used to view into a String, just like &[T] is a view into Vec<T>. 🌟🌟 // FILL in the blanks\nfn main() { let mut s = String::from(\"hello, world\"); let slice1: &str = __; // In two ways assert_eq!(slice1, \"hello, world\"); let slice2 = __; assert_eq!(slice2, \"hello\"); let slice3: __ = __; slice3.push('!'); assert_eq!(slice3, \"hello, world!\"); println!(\"Success!\");\n} 🌟🌟 // Question: how many heap allocations are happening here?\n// Your answer: fn main() { // Create a String type based on `&str` // The type of string literals is `&str` let s: String = String::from(\"hello, world!\"); // Create a slice point to String `s` let slice: &str = &s; // Create a String type based on the recently created slice let s: String = slice.to_string(); assert_eq!(s, \"hello, world!\"); println!(\"Success!\");\n}","breadcrumbs":"Collection Types » String » String and &str","id":"113","title":"String and &str"},"114":{"body":"Strings are always valid UTF-8. This has a few implications: The first of which is that if you need a non-UTF-8 string, consider OsString . It is similar, but without the UTF-8 constraint. The second implication is that you cannot index into a String. Indexing is intended to be a constant-time operation, but UTF-8 encoding does not allow us to do this. Furthermore, its not clear what sort of thing the index should return: a byte, a codepoint, or a grapheme cluster. The bytes and chars methods return iterators over the first two, respectively. 🌟🌟🌟 You can't use index to access a char in a string, but you can use slice &s1[start..end]. // FILL in the blank and FIX errors\nfn main() { let s = String::from(\"hello, 世界\"); let slice1 = s[0]; //tips: `h` only takes 1 byte in UTF8 format assert_eq!(slice1, \"h\"); let slice2 = &s[3..5]; // Tips: `中` takes 3 bytes in UTF8 format assert_eq!(slice2, \"世\"); // Iterate through all chars in s for (i, c) in s.__ { if i == 7 { assert_eq!(c, '世') } } println!(\"Success!\");\n} UTF8_slice You can use utf8_slice to slice UTF8 string, it can index chars instead of bytes. Example use utf8_slice;\nfn main() { let s = \"The 🚀 goes to the 🌑!\"; let rocket = utf8_slice::slice(s, 4, 5); // Will equal \"🚀\"\n} 🌟🌟🌟 Tips: maybe you need from_utf8 method // FILL in the blanks\nfn main() { let mut s = String::new(); __; // Some bytes, in a vector let v = vec![104, 101, 108, 108, 111]; // Turn a byte's vector into a String let s1 = __; assert_eq!(s, s1); println!(\"Success!\");\n}","breadcrumbs":"Collection Types » String » UTF-8 & Indexing","id":"114","title":"UTF-8 & Indexing"},"115":{"body":"A String is made up of three components: a pointer to some bytes, a length, and a capacity. The pointer points to an internal buffer String uses to store its data. The length is the number of bytes currently stored in the buffer( always stored on the heap ), and the capacity is the size of the buffer in bytes. As such, the length will always be less than or equal to the capacity. 🌟🌟 If a String has enough capacity, adding elements to it will not re-allocate // Modify the code below to print out: // 25\n// 25\n// 25\n// Here, theres no need to allocate more memory inside the loop.\nfn main() { let mut s = String::new(); println!(\"{}\", s.capacity()); for _ in 0..2 { s.push_str(\"hello\"); println!(\"{}\", s.capacity()); } println!(\"Success!\");\n} 🌟🌟🌟 // FILL in the blanks\nuse std::mem; fn main() { let story = String::from(\"Rust By Practice\"); // Prevent automatically dropping of the String's data let mut story = mem::ManuallyDrop::new(story); let ptr = story.__(); let len = story.__(); let capacity = story.__(); assert_eq!(16, len); // We can rebuild a String out of ptr, len, and capacity. This is all // unsafe because we are responsible for making sure the components are // valid: let s = unsafe { String::from_raw_parts(ptr, len, capacity) }; assert_eq!(*story, s); println!(\"Success!\");\n}","breadcrumbs":"Collection Types » String » Representation","id":"115","title":"Representation"},"116":{"body":"More exercises of String methods can be found here . You can find the solutions here (under the solutions path), but only use it when you need it","breadcrumbs":"Collection Types » String » Common methods","id":"116","title":"Common methods"},"117":{"body":"Vectors are resizable arrays. Like slices, their size is not known at compile time, but they can grow or shrink at any time.","breadcrumbs":"Collection Types » Vector » Vector","id":"117","title":"Vector"},"118":{"body":"🌟🌟🌟 fn main() { let arr: [u8; 3] = [1, 2, 3]; let v = Vec::from(arr); is_vec(&v); let v = vec![1, 2, 3]; is_vec(&v); // vec!(..) and vec![..] are same macros, so let v = vec!(1, 2, 3); is_vec(&v); // In code below, v is Vec<[u8; 3]> , not Vec<u8> // USE Vec::new and `for` to rewrite the below code let v1 = vec!(arr); is_vec(&v1); assert_eq!(v, v1); println!(\"Success!\");\n} fn is_vec(v: &Vec<u8>) {} 🌟🌟 A Vec can be extended with extend method // FILL in the blank\nfn main() { let mut v1 = Vec::from([1, 2, 4]); v1.pop(); v1.push(3); let mut v2 = Vec::new(); v2.__; assert_eq!(v1, v2); println!(\"Success!\");\n}","breadcrumbs":"Collection Types » Vector » Basic Operations","id":"118","title":"Basic Operations"},"119":{"body":"🌟🌟🌟 // FILL in the blanks\nfn main() { // Array -> Vec // impl From<[T; N]> for Vec let arr = [1, 2, 3]; let v1 = __(arr); let v2: Vec<i32> = arr.__(); assert_eq!(v1, v2); // String -> Vec // impl From<String> for Vec let s = \"hello\".to_string(); let v1: Vec<u8> = s.__(); let s = \"hello\".to_string(); let v2 = s.into_bytes(); assert_eq!(v1, v2); // impl<'_> From<&'_ str> for Vec let s = \"hello\"; let v3 = Vec::__(s); assert_eq!(v2, v3); // Iterators can be collected into vectors let v4: Vec<i32> = [0; 10].into_iter().collect(); assert_eq!(v4, vec![0; 10]); println!(\"Success!\"); }","breadcrumbs":"Collection Types » Vector » Turn X Into Vec","id":"119","title":"Turn X Into Vec"},"12":{"body":"This online book will walk through the basics of interpreted language implementation in Rust with a focus on the challenges that are specific to using Rust. To be continued...","breadcrumbs":"Small projects with Elegant code » 9. Writing Interpreters in Rust","id":"12","title":"9. Writing Interpreters in Rust"},"120":{"body":"🌟🌟🌟 // FIX the error and IMPLEMENT the code\nfn main() { let mut v = Vec::from([1, 2, 3]); for i in 0..5 { println!(\"{:?}\", v[i]) } for i in 0..5 { // IMPLEMENT the code here... } assert_eq!(v, vec![2, 3, 4, 5, 6]); println!(\"Success!\");\n}","breadcrumbs":"Collection Types » Vector » Indexing","id":"120","title":"Indexing"},"121":{"body":"Immutable or mutable slices of Vecs can be taken, using & or &mut, respectively. In Rust, its more common to pass immutable slices as arguments rather than vectors when you just want to provide read access, as this is more flexible (no move) and efficient (no copy). The same goes for String and &str. 🌟🌟 // FIX the errors\nfn main() { let mut v = vec![1, 2, 3]; let slice1 = &v[..]; // Out of bounds will cause a panic // You must use `v.len` here let slice2 = &v[0..4]; assert_eq!(slice1, slice2); // A slice can also be mutable, in which // case mutating it will mutate its underlying Vec. // Note: slice and &Vec are different let vec_ref: &mut Vec<i32> = &mut v; (*vec_ref).push(4); let slice3 = &mut v[0..3]; slice3[3] = 42; assert_eq!(slice3, &[1, 2, 3, 42]); assert_eq!(v, &[1, 2, 3, 42]); println!(\"Success!\");\n}","breadcrumbs":"Collection Types » Vector » Slicing","id":"121","title":"Slicing"},"122":{"body":"The capacity of a vector is the amount of space allocated for any future elements that will be added onto the vector. This is not to be confused with the length of a vector, which specifies the number of actual elements within the vector. If a vectors length exceeds its capacity, its capacity will automatically be increased, but its elements will have to be reallocated. For example, a vector with capacity 10 and length 0 would be an empty vector with space for 10 more elements. Pushing 10 or fewer elements onto the vector will not change its capacity or cause reallocation to occur. However, if the vectors length is increased to 11, it will have to reallocate, which can be slow. For this reason, it is recommended to use Vec::with_capacity whenever possible to specify how big the vector is expected to get. 🌟🌟 // FIX the errors\nfn main() { let mut vec = Vec::with_capacity(10); // The vector contains no items, even though it has capacity for more assert_eq!(vec.len(), __); assert_eq!(vec.capacity(), 10); // These are all done without reallocating... for i in 0..10 { vec.push(i); } assert_eq!(vec.len(), __); assert_eq!(vec.capacity(), __); // ...but this may make the vector reallocate vec.push(11); assert_eq!(vec.len(), 11); assert!(vec.capacity() >= 11); // Fill in an appropriate value to make the `for` done without reallocating let mut vec = Vec::with_capacity(__); for i in 0..100 { vec.push(i); } assert_eq!(vec.len(), __); assert_eq!(vec.capacity(), __); println!(\"Success!\");\n}","breadcrumbs":"Collection Types » Vector » Capacity","id":"122","title":"Capacity"},"123":{"body":"The elements in a vector must be the same type, for example , the code below will cause an error: fn main() { let v = vec![1, 2.0, 3];\n} But we can use enums or trait objects to store distinct types. 🌟🌟 #[derive(Debug)]\nenum IpAddr { V4(String), V6(String),\n}\nfn main() { // FILL in the blank let v : Vec<IpAddr>= __; // Comparing two enums need to derive the PartialEq trait assert_eq!(v[0], IpAddr::V4(\"127.0.0.1\".to_string())); assert_eq!(v[1], IpAddr::V6(\"::1\".to_string())); println!(\"Success!\");\n} 🌟🌟 trait IpAddr { fn display(&self);\n} struct V4(String);\nimpl IpAddr for V4 { fn display(&self) { println!(\"ipv4: {:?}\",self.0) }\n}\nstruct V6(String);\nimpl IpAddr for V6 { fn display(&self) { println!(\"ipv6: {:?}\",self.0) }\n} fn main() { // FILL in the blank let v: __= vec![ Box::new(V4(\"127.0.0.1\".to_string())), Box::new(V6(\"::1\".to_string())), ]; for ip in v { ip.display(); }\n}","breadcrumbs":"Collection Types » Vector » Store distinct types in Vector","id":"123","title":"Store distinct types in Vector"},"124":{"body":"Where vectors store values by an integer index, HashMaps store values by key. It is a hash map implemented with quadratic probing and SIMD lookup. By default, HashMap uses a hashing algorithm selected to provide resistance against HashDoS attacks. The default hashing algorithm is currently SipHash 1-3, though this is subject to change at any point in the future. While its performance is very competitive for medium sized keys, other hashing algorithms will outperform it for small keys such as integers as well as large keys such as long strings, though those algorithms will typically not protect against attacks such as HashDoS. The hash table implementation is a Rust port of Googles SwissTable . The original C++ version of SwissTable can be found here , and this CppCon talk gives an overview of how the algorithm works.","breadcrumbs":"Collection Types » HashMap » HashMap","id":"124","title":"HashMap"},"125":{"body":"🌟🌟 // FILL in the blanks and FIX the errors\nuse std::collections::HashMap;\nfn main() { let mut scores = HashMap::new(); scores.insert(\"Sunface\", 98); scores.insert(\"Daniel\", 95); scores.insert(\"Ashley\", 69.0); scores.insert(\"Katie\", \"58\"); // Get returns an Option<&V> let score = scores.get(\"Sunface\"); assert_eq!(score, Some(98)); if scores.contains_key(\"Daniel\") { // Indexing returns a value V let score = scores[\"Daniel\"]; assert_eq!(score, __); scores.remove(\"Daniel\"); } assert_eq!(scores.len(), __); for (name, score) in scores { println!(\"The score of {} is {}\", name, score); }\n} 🌟🌟 use std::collections::HashMap;\nfn main() { let teams = [ (\"Chinese Team\", 100), (\"American Team\", 10), (\"France Team\", 50), ]; let mut teams_map1 = HashMap::new(); for team in &teams { teams_map1.insert(team.0, team.1); } // IMPLEMENT team_map2 in two ways // Tips: one of the approaches is to use `collect` method let teams_map2... assert_eq!(teams_map1, teams_map2); println!(\"Success!\");\n} 🌟🌟 // FILL in the blanks\nuse std::collections::HashMap;\nfn main() { // Type inference lets us omit an explicit type signature (which // would be `HashMap<&str, u8>` in this example). let mut player_stats = HashMap::new(); // Insert a key only if it doesn't already exist player_stats.entry(\"health\").or_insert(100); assert_eq!(player_stats[\"health\"], __); // Insert a key using a function that provides a new value only if it // doesn't already exist player_stats.entry(\"health\").or_insert_with(random_stat_buff); assert_eq!(player_stats[\"health\"], __); // Ensures a value is in the entry by inserting the default if empty, and returns // a mutable reference to the value in the entry. let health = player_stats.entry(\"health\").or_insert(50); assert_eq!(health, __); *health -= 50; assert_eq!(*health, __); println!(\"Success!\");\n} fn random_stat_buff() -> u8 { // Could actually return some random value here - let's just return // some fixed value for now 42\n}","breadcrumbs":"Collection Types » HashMap » Basic Operations","id":"125","title":"Basic Operations"},"126":{"body":"Any type that implements the Eq and Hash traits can be a key in HashMap. This includes: bool (though not very useful since there is only two possible keys) int, uint, and all variations thereof String and &str (tips: you can have a HashMap keyed by String and call .get() with an &str) Note that f32 and f64 do not implement Hash, likely because floating-point precision errors would make using them as hashmap keys horribly error-prone. All collection classes implement Eq and Hash if their contained type also respectively implements Eq and Hash. For example, Vec<T> will implement Hash if Timplements Hash. 🌟🌟 // FIX the errors\n// Tips: `derive` is usually a good way to implement some common used traits\nuse std::collections::HashMap; struct Viking { name: String, country: String,\n} impl Viking { /// Creates a new Viking. fn new(name: &str, country: &str) -> Viking { Viking { name: name.to_string(), country: country.to_string(), } }\n} fn main() { // Use a HashMap to store the vikings' health points. let vikings = HashMap::from([ (Viking::new(\"Einar\", \"Norway\"), 25), (Viking::new(\"Olaf\", \"Denmark\"), 24), (Viking::new(\"Harald\", \"Iceland\"), 12), ]); // Use derived implementation to print the status of the vikings. for (viking, health) in &vikings { println!(\"{:?} has {} hp\", viking, health); }\n}","breadcrumbs":"Collection Types » HashMap » Requirements of HashMap key","id":"126","title":"Requirements of HashMap key"},"127":{"body":"Like vectors, HashMaps are growable, but HashMaps can also shrink themselves when they have excess space. You can create a HashMap with a certain starting capacity using HashMap::with_capacity(uint), or use HashMap::new() to get a HashMap with a default initial capacity (recommended). Example use std::collections::HashMap;\nfn main() { let mut map: HashMap<i32, i32> = HashMap::with_capacity(100); map.insert(1, 2); map.insert(3, 4); // Indeed ,the capacity of HashMap is not 100, so we can't compare the equality here. assert!(map.capacity() >= 100); // Shrinks the capacity of the map with a lower limit. It will drop // down no lower than the supplied limit while maintaining the internal rules // and possibly leaving some space in accordance with the resize policy. map.shrink_to(50); assert!(map.capacity() >= 50); // Shrinks the capacity of the map as much as possible. It will drop // down as much as possible while maintaining the internal rules // and possibly leaving some space in accordance with the resize policy. map.shrink_to_fit(); assert!(map.capacity() >= 2); println!(\"Success!\");\n}","breadcrumbs":"Collection Types » HashMap » Capacity","id":"127","title":"Capacity"},"128":{"body":"For types that implement the Copy trait, like i32 , the values are copied into HashMap. For owned values like String, the values will be moved and HashMap will be the owner of those values. 🌟🌟 // FIX the errors with least changes\n// DON'T remove any code line\nuse std::collections::HashMap;\nfn main() { let v1 = 10; let mut m1 = HashMap::new(); m1.insert(v1, v1); println!(\"v1 is still usable after inserting to hashmap : {}\", v1); let v2 = \"hello\".to_string(); let mut m2 = HashMap::new(); // Ownership moved here m2.insert(v2, v1); assert_eq!(v2, \"hello\"); println!(\"Success!\");\n}","breadcrumbs":"Collection Types » HashMap » Ownership","id":"128","title":"Ownership"},"129":{"body":"If the performance of SipHash 1-3 doesn't meet your requirements, you can find replacements in crates.io or github.com. The usage of third-party hash looks like this: use std::hash::BuildHasherDefault;\nuse std::collections::HashMap;\n// Introduce a third party hash function\nuse twox_hash::XxHash64; let mut hash: HashMap<_, _, BuildHasherDefault<XxHash64>> = Default::default();\nhash.insert(42, \"the answer\");\nassert_eq!(hash.get(&42), Some(&\"the answer\"));","breadcrumbs":"Collection Types » HashMap » Third-party Hash libs","id":"129","title":"Third-party Hash libs"},"13":{"body":"","breadcrumbs":"Variables » Variables","id":"13","title":"Variables"},"130":{"body":"Learning resources: English: Standary library 简体中文: Rust语言圣经 - 所有权与借用","breadcrumbs":"Type Conversion » Type Conversion","id":"130","title":"Type Conversion"},"131":{"body":"Rust provides no implicit type conversion(coercion) between primitive types. But explicit type conversions can be performed using the as keyword. 🌟 // FIX the errors and FILL in the blank\n// DON'T remove any code\nfn main() { let decimal = 97.123_f32; let integer: __ = decimal as u8; let c1: char = decimal as char; let c2 = integer as char; assert_eq!(integer, 'b' as u8); println!(\"Success!\");\n} 🌟🌟 By default, overflow will cause compile errors, but we can add an global annotation to suppress these errors. fn main() { assert_eq!(u8::MAX, 255); // The max of `u8` is 255 as shown above. // so the below code will cause an overflow error: literal out of range for `u8`. // PLEASE looking for clues within compile errors to FIX it. // DON'T modify any code in main. let v = 1000 as u8; println!(\"Success!\");\n} 🌟🌟 When casting any value to an unsigned type T, T::MAX + 1 is added or subtracted until the value fits into the new type. fn main() { assert_eq!(1000 as u16, __); assert_eq!(1000 as u8, __); // For positive numbers, this is the same as the modulus println!(\"1000 mod 256 is : {}\", 1000 % 256); assert_eq!(-1_i8 as u8, __); // Since Rust 1.45, the `as` keyword performs a *saturating cast* // when casting from float to int. If the floating point value exceeds // the upper bound or is less than the lower bound, the returned value // will be equal to the bound crossed. assert_eq!(300.1_f32 as u8, __); assert_eq!(-100.1_f32 as u8, __); // This behavior incurs a small runtime cost and can be avoided // with unsafe methods, however the results might overflow and // return **unsound values**. Use these methods wisely: unsafe { // 300.0 is 44 println!(\"300.0 is {}\", 300.0_f32.to_int_unchecked::<u8>()); // -100.0 as u8 is 156 println!(\"-100.0 as u8 is {}\", (-100.0_f32).to_int_unchecked::<u8>()); // nan as u8 is 0 println!(\"nan as u8 is {}\", f32::NAN.to_int_unchecked::<u8>()); }\n} 🌟🌟🌟 Raw pointers can be converted to memory address (integer) and vice versa. // FILL in the blanks\nfn main() { let mut values: [i32; 2] = [1, 2]; let p1: *mut i32 = values.as_mut_ptr(); let first_address: usize = p1 __; let second_address = first_address + 4; // 4 == std::mem::size_of::<i32>() let p2: *mut i32 = second_address __; // p2 points to the 2nd element in values unsafe { // Add one to the second element __ } assert_eq!(values[1], 3); println!(\"Success!\");\n} 🌟🌟🌟 fn main() { let arr :[u64; 13] = [0; 13]; assert_eq!(std::mem::size_of_val(&arr), 8 * 13); let a: *const [u64] = &arr; let b = a as *const [u8]; unsafe { assert_eq!(std::mem::size_of_val(&*b), __) } println!(\"Success!\");\n} You can find the solutions here (under the solutions path), but only use it when you need it","breadcrumbs":"Type Conversion » as » Convert by as","id":"131","title":"Convert by as"},"132":{"body":"The From trait allows for a type to define how to create itself from another type, hence providing a very simple mechanism for converting between several types. The From and Into traits are inherently linked, and this is actually part of its implementation. It means if we write something like this: impl From<T> for U, then we can use let u: U = U::from(T) or let u:U = T.into(). The Into trait is simply the reciprocal of the From trait. That is, if you have implemented the From trait for your type, then the Into trait will be automatically implemented for the same type. Using the Into trait will typically require the type annotations as the compiler is unable to determine this most of the time. For example, we can easily convert &str into String : fn main() { let my_str = \"hello\"; // three conversions below all depends on the fact: String implements From<&str>: let string1 = String::from(my_str); let string2 = my_str.to_string(); // Explicit type annotation is required here let string3: String = my_str.into();\n} Because the standard library has already implemented this for us : impl From<&'_ str> for String . Some implementations of From trait can be found here . 🌟🌟🌟 fn main() { // impl From<bool> for i32 let i1: i32 = false.into(); let i2: i32 = i32::from(false); assert_eq!(i1, i2); assert_eq!(i1, 0); // FIX the error in two ways /* 1. use a similar type which `impl From<char>`, maybe you should check the docs mentioned above to find the answer */ // 2. a keyword from the last chapter let i3: i32 = 'a'.into(); // FIX the error in two ways let s: String = 'a' as String; println!(\"Success!\");\n}","breadcrumbs":"Type Conversion » From/Into » From/Into","id":"132","title":"From/Into"},"133":{"body":"🌟🌟 // From is now included in `std::prelude`, so there is no need to introduce it into the current scope\n// use std::convert::From; #[derive(Debug)]\nstruct Number { value: i32,\n} impl From<i32> for Number { // IMPLEMENT `from` method\n} // FILL in the blanks\nfn main() { let num = __(30); assert_eq!(num.value, 30); let num: Number = __; assert_eq!(num.value, 30); println!(\"Success!\");\n} 🌟🌟🌟 When performing error handling it is often useful to implement From trait for our own error type. Then we can use ? to automatically convert the underlying error type to our own error type. use std::fs;\nuse std::io;\nuse std::num; enum CliError { IoError(io::Error), ParseError(num::ParseIntError),\n} impl From<io::Error> for CliError { // IMPLEMENT from method\n} impl From<num::ParseIntError> for CliError { // IMPLEMENT from method\n} fn open_and_parse_file(file_name: &str) -> Result<i32, CliError> { // ? automatically converts io::Error to CliError let contents = fs::read_to_string(&file_name)?; // num::ParseIntError -> CliError let num: i32 = contents.trim().parse()?; Ok(num)\n} fn main() { println!(\"Success!\");\n}","breadcrumbs":"Type Conversion » From/Into » Implement From for custom types","id":"133","title":"Implement From for custom types"},"134":{"body":"Similar to From and Into, TryFrom and TryInto are generic traits for converting between types. Unlike From/Into, TryFrom and TryInto are used for fallible conversions and return a Result instead of a plain value. 🌟🌟 // TryFrom and TryInto are included in `std::prelude`, so there is no need to introduce it into the current scope\n// use std::convert::TryInto; fn main() { let n: i16 = 256; // Into trait has a method `into`, // hence TryInto has a method ? let n: u8 = match n.__() { Ok(n) => n, Err(e) => { println!(\"there is an error when converting: {:?}, but we catch it\", e.to_string()); 0 } }; assert_eq!(n, __); println!(\"Success!\");\n} 🌟🌟🌟 #[derive(Debug, PartialEq)]\nstruct EvenNum(i32); impl TryFrom<i32> for EvenNum { type Error = (); // IMPLEMENT `try_from` fn try_from(value: i32) -> Result<Self, Self::Error> { if value % 2 == 0 { Ok(EvenNum(value)) } else { Err(()) } }\n} fn main() { assert_eq!(EvenNum::try_from(8), Ok(EvenNum(8))); assert_eq!(EvenNum::try_from(5), Err(())); // FILL in the blanks let result: Result<EvenNum, ()> = 8i32.try_into(); assert_eq!(result, __); let result: Result<EvenNum, ()> = 5i32.try_into(); assert_eq!(result, __); println!(\"Success!\");\n} You can find the solutions here (under the solutions path), but only use it when you need it","breadcrumbs":"Type Conversion » From/Into » TryFrom/TryInto","id":"134","title":"TryFrom/TryInto"},"135":{"body":"","breadcrumbs":"Type Conversion » Others » Others","id":"135","title":"Others"},"136":{"body":"To convert any type to String, you can simply use the ToString trait for that type. Rather than doing that directly, you should implement the fmt::Display trait which will automatically provides ToString and also allows you to print the type with println!. 🌟🌟 use std::fmt; struct Point { x: i32, y: i32,\n} impl fmt::Display for Point { // IMPLEMENT fmt method\n} fn main() { let origin = Point { x: 0, y: 0 }; // FILL in the blanks assert_eq!(origin.__, \"The point is (0, 0)\"); assert_eq!(format!(__), \"The point is (0, 0)\"); println!(\"Success!\");\n}","breadcrumbs":"Type Conversion » Others » Convert any type to String","id":"136","title":"Convert any type to String"},"137":{"body":"🌟🌟🌟 We can use parse method to convert a String into a i32 number, this is because FromStr is implemented for i32 type in standard library: impl FromStr for i32 // To use `from_str` method, you need to introduce this trait into the current scope.\nuse std::str::FromStr;\nfn main() { let parsed: i32 = \"5\".__.unwrap(); let turbo_parsed = \"10\".__.unwrap(); let from_str = __.unwrap(); let sum = parsed + turbo_parsed + from_str; assert_eq!(sum, 35); println!(\"Success!\");\n} 🌟🌟 We can also implement the FromStr trait for our custom types use std::str::FromStr;\nuse std::num::ParseIntError; #[derive(Debug, PartialEq)]\nstruct Point { x: i32, y: i32\n} impl FromStr for Point { type Err = ParseIntError; fn from_str(s: &str) -> Result<Self, Self::Err> { let coords: Vec<&str> = s.trim_matches(|p| p == '(' || p == ')' ) .split(',') .map(|x| x.trim()) .collect(); let x_fromstr = coords[0].parse::<i32>()?; let y_fromstr = coords[1].parse::<i32>()?; Ok(Point { x: x_fromstr, y: y_fromstr }) }\n}\nfn main() { // FILL in the blanks in two ways // DON'T change code anywhere else let p = __; assert_eq!(p.unwrap(), Point{ x: 3, y: 4} ); println!(\"Success!\");\n}","breadcrumbs":"Type Conversion » Others » Parse a String","id":"137","title":"Parse a String"},"138":{"body":"You can find all the examples and exercises of the Deref trait here .","breadcrumbs":"Type Conversion » Others » Deref","id":"138","title":"Deref"},"139":{"body":"std::mem::transmute is a unsafe function can be used to reinterprets the bits of a value of one type as another type. Both of the original and the result types must have the same size and neither of them can be invalid. transmute is semantically equivalent to a bitwise move of one type into another. It copies the bits from the source value into the destination value, then forgets the original, seems equivalent to C's memcpy under the hood. So, transmute is incredibly unsafe ! The caller has to ensure all the safes himself! Examples transmute can be used to turn a pointer into a function pointer, this is not portable on machines where function pointer and data pointer have different sizes. fn foo() -> i32 { 0\n} fn main() { let pointer = foo as *const (); let function = unsafe { std::mem::transmute::<*const (), fn() -> i32>(pointer) }; assert_eq!(function(), 0);\n} Extending a lifetime or shortening the lifetime of an invariant is an advanced usage of transmute, yeah, very unsafe Rust! . struct R<'a>(&'a i32);\nunsafe fn extend_lifetime<'b>(r: R<'b>) -> R<'static> { std::mem::transmute::<R<'b>, R<'static>>(r)\n} unsafe fn shorten_invariant_lifetime<'b, 'c>(r: &'b mut R<'static>) -> &'b mut R<'c> { std::mem::transmute::<&'b mut R<'static>, &'b mut R<'c>>(r)\n} Rather than using transmute, you can use some alternatives instead. fn main() { /*Turning raw bytes(&[u8]) to u32, f64, etc.: */ let raw_bytes = [0x78, 0x56, 0x34, 0x12]; let num = unsafe { std::mem::transmute::<[u8; 4], u32>(raw_bytes) }; // Use `u32::from_ne_bytes` instead let num = u32::from_ne_bytes(raw_bytes); // Or use `u32::from_le_bytes` or `u32::from_be_bytes` to specify the endianness let num = u32::from_le_bytes(raw_bytes); assert_eq!(num, 0x12345678); let num = u32::from_be_bytes(raw_bytes); assert_eq!(num, 0x78563412); /*Turning a pointer into a usize: */ let ptr = &0; let ptr_num_transmute = unsafe { std::mem::transmute::<&i32, usize>(ptr) }; // Use an `as` cast instead let ptr_num_cast = ptr as *const i32 as usize; /*Turning an &mut T into an &mut U: */ let ptr = &mut 0; let val_transmuted = unsafe { std::mem::transmute::<&mut i32, &mut u32>(ptr) }; // Now, put together `as` and reborrowing - note the chaining of `as` // `as` is not transitive let val_casts = unsafe { &mut *(ptr as *mut i32 as *mut u32) }; /*Turning an &str into a &[u8]: */ // This is not a good way to do this. let slice = unsafe { std::mem::transmute::<&str, &[u8]>(\"Rust\") }; assert_eq!(slice, &[82, 117, 115, 116]); // You could use `str::as_bytes` let slice = \"Rust\".as_bytes(); assert_eq!(slice, &[82, 117, 115, 116]); // Or, just use a byte string, if you have control over the string // literal assert_eq!(b\"Rust\", &[82, 117, 115, 116]);\n} You can find the solutions here (under the solutions path), but only use it when you need it","breadcrumbs":"Type Conversion » Others » Transmute","id":"139","title":"Transmute"},"14":{"body":"🌟 A variable can be used only if it has been initialized. // Fix the error below with least amount of modification to the code\nfn main() { let x: i32; // Uninitialized but used, ERROR ! let y: i32; // Uninitialized but also unused, only a Warning ! assert_eq!(x, 5); println!(\"Success!\");\n} 🌟 Use mut to mark a variable as mutable. // Fill the blanks in the code to make it compile\nfn main() { let __ __ = 1; __ += 2; assert_eq!(x, 3); println!(\"Success!\");\n}","breadcrumbs":"Variables » Binding and mutability","id":"14","title":"Binding and mutability"},"140":{"body":"Learning resources: English: Rust Book 9.1, 9.2 简体中文: Rust语言圣经 - 返回值和错误处理","breadcrumbs":"Result and panic » Result and panic","id":"140","title":"Result and panic"},"141":{"body":"The simplest error handling mechanism is to use panic. It just prints an error message and starts unwinding the stack, finally exit the current thread: if panic occurred in main thread, then the program will be exited. if in spawned thread, then this thread will be terminated, but the program won't 🌟🌟 // FILL the blanks\nfn drink(beverage: &str) { if beverage == \"lemonade\" { println!(\"Success!\"); // IMPLEMENT the below code __ } println!(\"Exercise Failed if printing out this line!\");\n} fn main() { drink(__); println!(\"Exercise Failed if printing out this line!\");\n}","breadcrumbs":"Result and panic » panic! » panic!","id":"141","title":"panic!"},"142":{"body":"🌟🌟 // MAKE the code work by fixing all panics\nfn main() { assert_eq!(\"abc\".as_bytes(), [96, 97, 98]); let v = vec![1, 2, 3]; let ele = v[3]; // unwrap may panic when get return a None let ele = v.get(3).unwrap(); // Sometimes, the compiler is unable to find the overflow errors for you in compile time ,so a panic will occur let v = production_rate_per_hour(2); // because of the same reason as above, we have to wrap it in a function to make the panic occur divide(15, 0); println!(\"Success!\")\n} fn divide(x:u8, y:u8) { println!(\"{}\", x / y)\n} fn production_rate_per_hour(speed: u8) -> f64 { let cph: u8 = 221; match speed { 1..=4 => (speed * cph) as f64, 5..=8 => (speed * cph) as f64 * 0.9, 9..=10 => (speed * cph) as f64 * 0.77, _ => 0 as f64, }\n} pub fn working_items_per_minute(speed: u8) -> u32 { (production_rate_per_hour(speed) / 60 as f64) as u32\n}","breadcrumbs":"Result and panic » panic! » common panic cases","id":"142","title":"common panic cases"},"143":{"body":"By default the stack unwinding will only give something like this: thread 'main' panicked at 'index out of bounds: the len is 3 but the index is 99', src/main.rs:4:5\nnote: run with `RUST_BACKTRACE=1` environment variable to display a backtrace Though there is the reason of panic and the line of the code is showing where the panic has occured, sometimes we want to get more info about the call stack. 🌟 ## FILL in the blank to display the whole call stack\n## Tips: you can find the clue in the default panic info $ __ cargo run\nthread 'main' panicked at 'assertion failed: `(left == right)` left: `[97, 98, 99]`, right: `[96, 97, 98]`', src/main.rs:3:5\nstack backtrace: 0: rust_begin_unwind at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/panicking.rs:498:5 1: core::panicking::panic_fmt at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/core/src/panicking.rs:116:14 2: core::panicking::assert_failed_inner 3: core::panicking::assert_failed at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/core/src/panicking.rs:154:5 4: study_cargo::main at ./src/main.rs:3:5 5: core::ops::function::FnOnce::call_once at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/core/src/ops/function.rs:227:5\nnote: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.","breadcrumbs":"Result and panic » panic! » Detailed call stack","id":"143","title":"Detailed call stack"},"144":{"body":"By default, when a panic occurs, the program starts unwinding , which means Rust walks back up the stack and cleans up the data from each function it encounters. But this walk back and clean up is a lot of work. The alternative is to immediately abort the program without cleaning up. If in your project you need to make the resulting binary as small as possible, you can switch from unwinding to aborting by adding below content to Cargo.toml: [profile.release]\npanic = 'abort' You can find the solutions here (under the solutions path), but only use it when you need it :)","breadcrumbs":"Result and panic » panic! » unwinding and abort","id":"144","title":"unwinding and abort"},"145":{"body":"Result<T> is an enum to describe possible errors. It has two variants: Ok(T): A value T was found Err(e): An error was found with a value e In short words, the expected outcome is Ok, while the unexpected outcome is Err. 🌟🌟 // FILL in the blanks and FIX the errors\nuse std::num::ParseIntError; fn multiply(n1_str: &str, n2_str: &str) -> __ { let n1 = n1_str.parse::<i32>(); let n2 = n2_str.parse::<i32>(); Ok(n1.unwrap() * n2.unwrap())\n} fn main() { let result = multiply(\"10\", \"2\"); assert_eq!(result, __); let result = multiply(\"t\", \"2\"); assert_eq!(result.__, 8); println!(\"Success!\");\n}","breadcrumbs":"Result and panic » Result and ? » result and ?","id":"145","title":"result and ?"},"146":{"body":"? is almost exactly equivalent to unwrap, but ? returns instead of panic on Err. 🌟🌟 use std::num::ParseIntError; // IMPLEMENT multiply with ?\n// DON'T use unwrap here\nfn multiply(n1_str: &str, n2_str: &str) -> __ {\n} fn main() { assert_eq!(multiply(\"3\", \"4\").unwrap(), 12); println!(\"Success!\");\n} 🌟🌟 use std::fs::File;\nuse std::io::{self, Read}; fn read_file1() -> Result<String, io::Error> { let f = File::open(\"hello.txt\"); let mut f = match f { Ok(file) => file, Err(e) => return Err(e), }; let mut s = String::new(); match f.read_to_string(&mut s) { Ok(_) => Ok(s), Err(e) => Err(e), }\n} // FILL in the blanks with one code line\n// DON'T change any code lines\nfn read_file2() -> Result<String, io::Error> { let mut s = String::new(); __; Ok(s)\n} fn main() { assert_eq!(read_file1().unwrap_err().to_string(), read_file2().unwrap_err().to_string()); println!(\"Success!\");\n}","breadcrumbs":"Result and panic » Result and ? » ?","id":"146","title":"?"},"147":{"body":"map and and_then are two common combinators for Result<T, E> (also for Option<T>). 🌟🌟 use std::num::ParseIntError; // FILL in the blank in two ways: map, and then\nfn add_two(n_str: &str) -> Result<i32, ParseIntError> { n_str.parse::<i32>().__\n} fn main() { assert_eq!(add_two(\"4\").unwrap(), 6); println!(\"Success!\");\n} 🌟🌟🌟 use std::num::ParseIntError; // With the return type rewritten, we use pattern matching without `unwrap()`.\n// But it's so Verbose...\nfn multiply(n1_str: &str, n2_str: &str) -> Result<i32, ParseIntError> { match n1_str.parse::<i32>() { Ok(n1) => { match n2_str.parse::<i32>() { Ok(n2) => { Ok(n1 * n2) }, Err(e) => Err(e), } }, Err(e) => Err(e), }\n} // Rewriting `multiply` to make it succinct\n// You should use BOTH of `and_then` and `map` here.\nfn multiply1(n1_str: &str, n2_str: &str) -> Result<i32, ParseIntError> { // IMPLEMENT...\n} fn print(result: Result<i32, ParseIntError>) { match result { Ok(n) => println!(\"n is {}\", n), Err(e) => println!(\"Error: {}\", e), }\n} fn main() { // This still presents a reasonable answer. let twenty = multiply1(\"10\", \"2\"); print(twenty); // The following now provides a much more helpful error message. let tt = multiply(\"t\", \"2\"); print(tt); println!(\"Success!\");\n}","breadcrumbs":"Result and panic » Result and ? » map & and_then","id":"147","title":"map & and_then"},"148":{"body":"Using std::result::Result<T, ParseIntError> everywhere is verbose and tedious, we can use alias for this purpose. At a module level, creating aliases can be particularly helpful. Errors found in a specific module often has the same Err type, so a single alias can succinctly defined all associated Results. This is so useful even the std library supplies one: io::Result . 🌟 use std::num::ParseIntError; // FILL in the blank\ntype __; // Use the above alias to refer to our specific `Result` type.\nfn multiply(first_number_str: &str, second_number_str: &str) -> Res<i32> { first_number_str.parse::<i32>().and_then(|first_number| { second_number_str.parse::<i32>().map(|second_number| first_number * second_number) })\n} // Here, the alias again allows us to save some space.\nfn print(result: Res<i32>) { match result { Ok(n) => println!(\"n is {}\", n), Err(e) => println!(\"Error: {}\", e), }\n} fn main() { print(multiply(\"10\", \"2\")); print(multiply(\"t\", \"2\")); println!(\"Success!\");\n}","breadcrumbs":"Result and panic » Result and ? » Type alias","id":"148","title":"Type alias"},"149":{"body":"Typically the main function will look like this: fn main() { println!(\"Hello World!\");\n} However main is also able to have a return type of Result. If an error occurs within the main function it will return an error code and print a debug representation of the error( Debug trait ). The following example shows such a scenario: use std::num::ParseIntError; fn main() -> Result<(), ParseIntError> { let number_str = \"10\"; let number = match number_str.parse::<i32>() { Ok(number) => number, Err(e) => return Err(e), }; println!(\"{}\", number); Ok(())\n} You can find the solutions here (under the solutions path), but only use it when you need it :)","breadcrumbs":"Result and panic » Result and ? » Using Result in fn main","id":"149","title":"Using Result in fn main"},"15":{"body":"A scope is the range within the program for which the item is valid. 🌟 // Fix the error below with least amount of modification\nfn main() { let x: i32 = 10; { let y: i32 = 5; println!(\"Inner scope value of x is {} and value of y is {}\", x, y); } println!(\"Outer scope value of x is {} and value of y is {}\", x, y); } 🌟🌟 // Fix the error with the use of define_x\nfn main() { println!(\"{}, world\", x); } fn define_x() { let x = \"hello\";\n}","breadcrumbs":"Variables » Scope","id":"15","title":"Scope"},"150":{"body":"Learning resources: English: Rust Book Chapter 7 简体中文: Rust语言圣经 - 包和模块","breadcrumbs":"Crate and Module » Crate and module","id":"150","title":"Crate and module"},"151":{"body":"A package is a project which you create with Cargo (in most cases), so it contains a Cargo.toml file in it. 🌟 Create a package with below layout: .\n├── Cargo.toml\n└── src └── main.rs 1 directory, 2 files # in Cargo.toml\n[package]\nname = \"hello-package\"\nversion = \"0.1.0\"\nedition = \"2021\" Note! We will use this package across the whole chapter as a practice project. 🌟 Create a package with below layout: .\n├── Cargo.toml\n└── src └── lib.rs 1 directory, 2 files # in Cargo.toml\n[package]\nname = \"hello-package1\"\nversion = \"0.1.0\"\nedition = \"2021\" Note! This package could be safely removed due to the first one's existence. 🌟 /* FILL in the blank with your ANSWER */ // Q: What's the difference between package number 1 and number 2?\n// A: __","breadcrumbs":"Crate and Module » Package and Crate » Package and Crate","id":"151","title":"Package and Crate"},"152":{"body":"A crate is a binary or library. The crate root is a source file that the Rust compiler starts from and makes up the root module of the crate. In package hello-package, there is binary crate with the same name as the package : hello-package, and src/main.rs is the crate root of this binary crate. Similar to hello-package, hello-package1 also has a crate in it, however, this package doesn't contain a binary crate but a library crate, and src/lib.rs is the crate root. 🌟 /* FILL in the blank with your ANSWER */ // Q: What's the name of the library crate in package `hello-package1`?\n// A: __ 🌟🌟 Add a library crate for hello-package and describe it's files tree below: # FILL in the blanks\n.\n├── Cargo.lock\n├── Cargo.toml\n├── src\n│ ├── __\n│ └── __ After this step, there should be two crates in package hello-package: a binary crate and a library crate, both with the same name as the package . 🌟🌟🌟 A package can contain at most one library crate, but it can contain as many binary crates as you would like by placing files in src/bin directory: each file will be a separate binary crate with the same name as the file . # Create a package which contains # 1. three binary crates: `hello-package`, `main1` and `main2`\n# 2. one library crate\n# describe the directory tree below\n.\n├── Cargo.toml\n├── Cargo.lock\n├── src\n│ ├── __\n│ ├── __\n│ └── __\n│ └── __\n│ └── __\n├── tests # directory for integrated tests files\n│ └── some_integration_tests.rs\n├── benches # dir for benchmark files\n│ └── simple_bench.rs\n└── examples # dir for example files └── simple_example.rs Yep, as you can see, the above package structure is very standard and is widely used in many Rust projects. You can find the solutions here (under the solutions path), but only use it when you need it :)","breadcrumbs":"Crate and Module » Package and Crate » Crate","id":"152","title":"Crate"},"153":{"body":"Modules let us organize the code within a crate into groups for readability and ease of reuse. Module also controls the privacy of items, which is whether an item can be seen by outside code( public ), or is just an internal implementation and not available for outside code( private ). We have created a package named hello-package in previous chapter, and it looks like this: .\n├── Cargo.toml\n├── src\n│ ├── lib.rs\n│ └── main.rs Now it's time to create some modules in the library crate and use them in the binary crate, let's start. 🌟🌟 Implement module front_of_house based on the module tree below: library crate root └── front_of_house ├── hosting │ ├── add_to_waitlist │ └── seat_at_table └── serving ├── take_order ├── serve_order ├── take_payment └── complain // FILL in the blank\n// in __.rs mod front_of_house { // IMPLEMENT this module..\n} 🌟🌟 Let's call add_to_waitlist from a function eat_at_restaurant which is within the library crate root. // In lib.rs // FILL in the blanks and FIX the errors\n// You need to make something public with `pub` to provide accessibility for outside code `fn eat_at_restaurant()`\nmod front_of_house { /* ...snip... */\n} pub fn eat_at_restaurant() { // Call add_to_waitlist with **absolute path**: __::add_to_waitlist(); // Call with **relative path** __::add_to_waitlist();\n} 🌟🌟 You can use super to import items within the parent module // In lib.rs mod back_of_house { fn fix_incorrect_order() { cook_order(); // FILL in the blank in three ways //1. using keyword `super` //2. using absolute path __::serve_order(); } fn cook_order() {}\n}","breadcrumbs":"Crate and Module » Module » Module","id":"153","title":"Module"},"154":{"body":"// In lib.rs\npub mod front_of_house { pub mod hosting { pub fn add_to_waitlist() {} pub fn seat_at_table() -> String { String::from(\"sit down please\") } } pub mod serving { pub fn take_order() {} pub fn serve_order() {} pub fn take_payment() {} // Maybe you don't want the guest hearing the your complaining about them // So just make it private fn complain() {} }\n} pub fn eat_at_restaurant() -> String { front_of_house::hosting::add_to_waitlist(); back_of_house::cook_order(); String::from(\"yummy yummy!\")\n} pub mod back_of_house { pub fn fix_incorrect_order() { cook_order(); crate::front_of_house::serving::serve_order(); } pub fn cook_order() {}\n} 🌟🌟🌟🌟 Please separate the modules and codes above into files resident in below dir tree : .\n├── Cargo.toml\n├── src\n│ ├── back_of_house.rs\n│ ├── front_of_house\n│ │ ├── hosting.rs\n│ │ ├── mod.rs\n│ │ └── serving.rs\n│ ├── lib.rs\n│ └── main.rs // In src/lib.rs // IMPLEMENT... // In src/back_of_house.rs // IMPLEMENT... // In src/front_of_house/mod.rs // IMPLEMENT... // In src/front_of_house/hosting.rs // IMPLEMENT... // In src/front_of_house/serving.rs // IMPLEMENT...","breadcrumbs":"Crate and Module » Module » Separating modules into different files","id":"154","title":"Separating modules into different files"},"155":{"body":"Please ensure you have completed the 4th exercise before making further progress. You should have below structures and the corresponding codes in them when reaching here: .\n├── Cargo.toml\n├── src\n│ ├── back_of_house.rs\n│ ├── front_of_house\n│ │ ├── hosting.rs\n│ │ ├── mod.rs\n│ │ └── serving.rs\n│ ├── lib.rs\n│ └── main.rs 🌟🌟🌟 Now we will call a few library functions from the binary crate. // In src/main.rs // FILL in the blank and FIX the errors\nfn main() { assert_eq!(__, \"sit down please\"); assert_eq!(__,\"yummy yummy!\");\n} You can find the solutions here (under the solutions path), but only use it when you need it :)","breadcrumbs":"Crate and Module » Module » Accessing code in library crate from binary crate","id":"155","title":"Accessing code in library crate from binary crate"},"156":{"body":"🌟 We can bring two types of the same name into the same scope with use, but you need as keyword. use std::fmt::Result;\nuse std::io::Result; fn main() {} 🌟🌟 If we are using multiple items defined in the same crate or module, then listing each item on its own line will take up too much vertical space. // FILL in the blank in two ways\n// DON'T add new code line\nuse std::collections::__; fn main() { let _c1:HashMap<&str, i32> = HashMap::new(); let mut c2 = BTreeMap::new(); c2.insert(1, \"a\"); let _c3: HashSet<i32> = HashSet::new();\n}","breadcrumbs":"Crate and Module » Advanced use and pub » Use and pub","id":"156","title":"Use and pub"},"157":{"body":"🌟🌟🌟 In our recently created package hello-package, add something to make the below code work fn main() { assert_eq!(hello_package::hosting::seat_at_table(), \"sit down please\"); assert_eq!(hello_package::eat_at_restaurant(),\"yummy yummy!\");\n}","breadcrumbs":"Crate and Module » Advanced use and pub » Re-exporting names with pub use","id":"157","title":"Re-exporting names with pub use"},"158":{"body":"Sometimes we want an item only be public to a certain crate. For this we can use the pub(in Crate) syntax. Example pub mod a { pub const I: i32 = 3; fn semisecret(x: i32) -> i32 { use self::b::c::J; x + J } pub fn bar(z: i32) -> i32 { semisecret(I) * z } pub fn foo(y: i32) -> i32 { semisecret(I) + y } mod b { pub(in crate::a) mod c { pub(in crate::a) const J: i32 = 4; } }\n}","breadcrumbs":"Crate and Module » Advanced use and pub » Pub(in Crate)","id":"158","title":"Pub(in Crate)"},"159":{"body":"The full code of hello-package is here . You can find the solutions here (under the solutions path), but only use it when you need it :)","breadcrumbs":"Crate and Module » Advanced use and pub » Full Code","id":"159","title":"Full Code"},"16":{"body":"You can declare a new variable with the same name as a previous variable, here we can say the first one is shadowed by the second one. 🌟🌟 // Only modify `assert_eq!` to make the `println!` work(print `42` in terminal)\nfn main() { let x: i32 = 5; { let x = 12; assert_eq!(x, 5); } assert_eq!(x, 12); let x = 42; println!(\"{}\", x); // Prints \"42\".\n} 🌟🌟 // Remove a line in the code to make it compile\nfn main() { let mut x: i32 = 1; x = 7; // Shadowing and re-binding let x = x; x += 3; let y = 4; // Shadowing let y = \"I can also be bound to text!\"; println!(\"Success!\");\n}","breadcrumbs":"Variables » Shadowing","id":"16","title":"Shadowing"},"160":{"body":"Every program requires comments:","breadcrumbs":"Comments and Docs » Comments and Docs","id":"160","title":"Comments and Docs"},"161":{"body":"Regular comments which are ignored by the compiler: // Line comment, which goes to the end of the line /* Block comment, which goes to the end of the closing delimiter */","breadcrumbs":"Comments and Docs » Comments","id":"161","title":"Comments"},"162":{"body":"fn main() { // This is an example of a line comment // There are two slashes at the beginning of the line // And nothing written inside these will be read by the compiler // println!(\"Hello, world!\"); // Run it. See? Now try deleting the two slashes, and run it again. /* * This is another type of comment, a block comment. In general, * line comments are the recommended comment style. But * block comments are extremely useful for temporarily disabling * chunks of code. /* Block comments can be /* nested, */ */ * so it takes only a few keystrokes to comment out everything * in this main() function. /*/*/* Try it yourself! */*/*/ */ /* Note: The previous column of `*` was entirely for style. There's no actual need for it. */\n}","breadcrumbs":"Comments and Docs » Examples","id":"162","title":"Examples"},"163":{"body":"🌟🌟 /* Make it work, only using comments! */\nfn main() { todo!(); unimplemented!(); assert_eq!(6, 5 + 3 + 2 + 1 )\n}","breadcrumbs":"Comments and Docs » Exercises","id":"163","title":"Exercises"},"164":{"body":"Doc comments which are parsed into HTML and supported Markdown /// Generate library docs for the following item //! Generate library docs for the eclosing item Before starting, we need to create a new package for practice: cargo new --lib doc-comments.","breadcrumbs":"Comments and Docs » Doc Comments","id":"164","title":"Doc Comments"},"165":{"body":"Add docs for function add_one // in lib.rs /// Add one to the given value and return the value\n///\n/// # Examples\n///\n/// ```\n/// let arg = 5;\n/// let answer = my_crate::add_one(arg);\n///\n/// assert_eq!(6, answer);\n/// ```\npub fn add_one(x: i32) -> i32 { x + 1\n}","breadcrumbs":"Comments and Docs » Line doc comments ///","id":"165","title":"Line doc comments ///"},"166":{"body":"We can use cargo doc --open to generate html files and open them in the browser.","breadcrumbs":"Comments and Docs » Cargo doc","id":"166","title":"Cargo doc"},"167":{"body":"Add docs for function add_two: /** Add two to the given value and return a new value # Examples let arg = 5;\nlet answer = my_crate::add_two(arg); assert_eq!(7, answer); */\npub fn add_two(x: i32) -> i32 { x + 2\n}","breadcrumbs":"Comments and Docs » Block doc comments /** ... */","id":"167","title":"Block doc comments /** ... */"},"168":{"body":"We can also add doc comments for our crates and modules. Firstly, let's add some doc comments for our library crate: Note: We must place crates and module comments at the top of crate root or module file. //! # Doc comments\n//! //! A library for showing how to use doc comments // in lib.rs\npub mod compute; You can also use block comments to achieve this: /*! # Doc comments A library for showing how to use doc comments */ Next, create a new module file src/compute.rs, and add following comments to it: //! //! Do some complicated arithmetic that you can't do by yourself // in compute.rs Then run cargo doc --open and see the results.","breadcrumbs":"Comments and Docs » Doc comments for crate and module","id":"168","title":"Doc comments for crate and module"},"169":{"body":"The doc comments of add_one and add_two contain two example code blocks. The examples can not only demonstrate how to use your library, but also running as test with cargo test command. 🌟🌟 But there are errors in the two examples, please fix them, and running with cargo test to get following result: running 0 tests test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s Doc-tests doc-comments running 2 tests\ntest src/lib.rs - add_one (line 11) ... ok\ntest src/lib.rs - add_two (line 26) ... ok test result: ok. 2 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.55s 🌟🌟 Sometimes we expect an example to be panic, add following code to src/compute.rs and make the cargo test passed. You can only modify the comments, DON'T modify fn div // in src/compute.rs /// # Panics\n///\n/// The function panics if the second argument is zero.\n///\n/// ```rust,should_panic\n/// // panics on division by zero\n/// doc_comments::compute::div(10, 0);\n/// ```\npub fn div(a: i32, b: i32) -> i32 { if b == 0 { panic!(\"Divide-by-zero error\"); } a / b\n} 🌟🌟 Sometimes we want to hide the doc comments, but keep the doc tests. Add following code to src/compute.rs , // in src/compute.rs /// ```\n/// # fn try_main() -> Result<(), String> {\n/// # let res = doc_comments::compute::try_div(10, 0)?;\n/// # Ok(()) // returning from try_main\n/// # }\n/// # fn main() { /// # try_main().unwrap();\n/// #\n/// # }\n/// ```\npub fn try_div(a: i32, b: i32) -> Result<i32, String> { if b == 0 { Err(String::from(\"Divide-by-zero\")) } else { Ok(a / b) }\n} and modify this code to achieve two goals: The doc comments must not be presented in html files generated by cargo doc --open run the tests, you should see results as below: running 0 tests test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s Doc-tests doc-comments running 4 tests\ntest src/compute.rs - compute::div (line 7) ... ok\ntest src/lib.rs - add_two (line 27) ... ok\ntest src/lib.rs - add_one (line 11) ... ok\ntest src/compute.rs - compute::try_div (line 20) ... ok test result: ok. 4 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.51s","breadcrumbs":"Comments and Docs » Doc tests","id":"169","title":"Doc tests"},"17":{"body":"Fix the warning below with : 🌟 Only one solution 🌟🌟 Two distinct solutions Note: none of the solutions is to remove the line let x = 1 fn main() { let x = 1; } // Warning: unused variable: `x`","breadcrumbs":"Variables » Unused variables","id":"17","title":"Unused variables"},"170":{"body":"Rust provide a very powerful feature for us, that is code navigation in doc comments. Add following code to src/lib.rs: // in lib.rs /// Add three to the given value and return a [`Option`] type\npub fn add_three(x: i32) -> Option<i32> { Some(x + 3)\n} Besides jump into the standard library, you can also jump to another module in the package. // in lib.rs mod a { /// Add four to the given value and return a [`Option`] type /// [`crate::MySpecialFormatter`] pub fn add_four(x: i32) -> Option<i32> { Some(x + 4) }\n} struct MySpecialFormatter;","breadcrumbs":"Comments and Docs » Code navigation","id":"170","title":"Code navigation"},"171":{"body":"Below are a few examples of the most common #[doc] attributes used with rustdoc.","breadcrumbs":"Comments and Docs » Doc attributes","id":"171","title":"Doc attributes"},"172":{"body":"Used to inline docs, instead of linking out to separate page. #[doc(inline)]\npub use bar::Bar; /// bar docs\nmod bar { /// the docs for Bar pub struct Bar;\n}","breadcrumbs":"Comments and Docs » inline","id":"172","title":"inline"},"173":{"body":"Used to prevent linking out to separate page or anywhere. // Example from libcore/prelude\n#[doc(no_inline)]\npub use crate::mem::drop;","breadcrumbs":"Comments and Docs » no_inline","id":"173","title":"no_inline"},"174":{"body":"Using this tells rustdoc not to include this in documentation: // Example from the futures-rs library\n#[doc(hidden)]\npub use self::async_await::*; For documentation, rustdoc is widely used by the community. It's what is used to generate the std library docs .","breadcrumbs":"Comments and Docs » hidden","id":"174","title":"hidden"},"175":{"body":"The full code of package doc-comments is here .","breadcrumbs":"Comments and Docs » Full Code","id":"175","title":"Full Code"},"176":{"body":"fn main() { // In general, the `{}` will be automatically replaced with any // arguments. These will be stringified. println!(\"{} days\", 31); // Without a suffix, 31 becomes an i32. You can change what type 31 is // by providing a suffix. The number 31i64 for example has the type i64. // There are various optional patterns this works with. Positional // arguments can be used. println!(\"{0}, this is {1}. {1}, this is {0}\", \"Alice\", \"Bob\"); // As can named arguments. println!(\"{subject} {verb} {object}\", object=\"the lazy dog\", subject=\"the quick brown fox\", verb=\"jumps over\"); // Special formatting can be specified after a `:`. println!(\"{} of {:b} people know binary, the other half doesn't\", 1, 2); // You can right-align text with a specified width. This will output // \" 1\". 5 white spaces and a \"1\". println!(\"{number:>width$}\", number=1, width=6); // You can pad numbers with extra zeroes. This will output \"000001\". println!(\"{number:0>width$}\", number=1, width=6); // Rust even checks to make sure the correct number of arguments are // used. println!(\"My name is {0}, {1} {0}\", \"Bond\"); // FIXME ^ Add the missing argument: \"James\" // Create a structure named `Structure` which contains an `i32`. #[allow(dead_code)] struct Structure(i32); // However, custom types such as this structure require more complicated // handling. This will not work. println!(\"This struct `{}` won't print...\", Structure(3)); // FIXME ^ Comment out this line. // For Rust 1.58 and above, you can directly capture the argument from // surrounding variable. Just like the above, this will output // \" 1\". 5 white spaces and a \"1\". let number: f64 = 1.0; let width: usize = 6; println!(\"{number:>width$}\");\n} [std::fmt][fmt] contains many [traits][traits] which govern the display of text. The base form of two important ones are listed below: fmt::Debug: Uses the {:?} marker. Format text for debugging purposes. fmt::Display: Uses the {} marker. Format text in a more elegant, user friendly fashion. Here, we used fmt::Display because the std library provides implementations for these types. To print text for custom types, more steps are required. Implementing the fmt::Display trait automatically implements the [ToString] trait which allows us to [convert] the type to [String][string].","breadcrumbs":"Formatted output » Formatted output","id":"176","title":"Formatted output"},"177":{"body":"Printing is handled by a series of [macros][macros] defined in [std::fmt][fmt] Some of which include: format!: write formatted text to [String][string] print!: same as format! but the text is printed to the console (io::stdout). println!: same as print! but a newline is appended. eprint!: same as format! but the text is printed to the standard error (io::stderr). eprintln!: same as eprint!but a newline is appended. All parse text in the same fashion. As a plus, Rust checks format correctness at compile time.","breadcrumbs":"Formatted output » println! and format! » println! and format!","id":"177","title":"println! and format!"},"178":{"body":"1.🌟 fn main() { let s1 = \"hello\"; /* Fill in the blank */ let s = format!(__); assert_eq!(s, \"hello, world!\");\n}","breadcrumbs":"Formatted output » println! and format! » format!","id":"178","title":"format!"},"179":{"body":"2.🌟 fn main() { /* Fill in the blanks to make it print: Hello world, I am Sunface! */ __(\"hello world, \"); __(\"I am\"); __(\"Sunface!\");\n} You can find the solutions here (under the solutions path), but only use it when you need it :)","breadcrumbs":"Formatted output » println! and format! » print!, println!","id":"179","title":"print!, println!"},"18":{"body":"🌟🌟 We can use a pattern with let to destructure a tuple to separate variables. Tips: you can use Shadowing or Mutability // Fix the error below with least amount of modification\nfn main() { let (x, y) = (1, 2); x += 2; assert_eq!(x, 3); assert_eq!(y, 2); println!(\"Success!\");\n}","breadcrumbs":"Variables » Destructuring","id":"18","title":"Destructuring"},"180":{"body":"All types which want to be printable must implement the std::fmt formatting trait: std::fmt::Debug or std::fmt::Display. Automatic implementations are only provided for types such as in the std library. All others have to be manually implemented.","breadcrumbs":"Formatted output » Debug and Display » Debug and Display","id":"180","title":"Debug and Display"},"181":{"body":"The implementation of Debug is very straightforward: All types can derive the std::fmt::Debug implementation. This is not true for std::fmt::Display which must be manually implemented. {:?} must be used to print out the type which has implemented the Debug trait. // This structure cannot be printed either with `fmt::Display` or\n// with `fmt::Debug`.\nstruct UnPrintable(i32); // To make this struct printable with `fmt::Debug`, we can derive the automatic implementations provided by Rust\n#[derive(Debug)]\nstruct DebugPrintable(i32); 🌟 /* Fill in the blanks and Fix the errors */\nstruct Structure(i32); fn main() { // Types in std and Rust have implemented the fmt::Debug trait println!(\"__ months in a year.\", 12); println!(\"Now __ will print!\", Structure(3));\n} 🌟🌟 So fmt::Debug definitely makes one type printable, but sacrifices some elegance. Maybe we can get more elegant by replacing {:?} with something else( but not {} !) #[derive(Debug)]\nstruct Person { name: String, age: u8\n} fn main() { let person = Person { name: \"Sunface\".to_string(), age: 18 }; /* Make it output: Person { name: \"Sunface\", age: 18, } */ println!(\"{:?}\", person);\n} 🌟🌟 We can also manually implement Debug trait for our types #[derive(Debug)]\nstruct Structure(i32); #[derive(Debug)]\nstruct Deep(Structure); fn main() { // The problem with `derive` is there is no control over how // the results look. What if I want this to just show a `7`? /* Make it print: Now 7 will print! */ println!(\"Now {:?} will print!\", Deep(Structure(7)));\n}","breadcrumbs":"Formatted output » Debug and Display » Debug","id":"181","title":"Debug"},"182":{"body":"Yeah, Debug is simple and easy to use. But sometimes we want to customize the output appearance of our type. This is where Display really shines. Unlike Debug, there is no way to derive the implementation of the Display trait, we have to manually implement it. Another thing to note: the placeholder for Display is {} not {:?}. 🌟🌟 /* Make it work*/\nuse std::fmt; struct Point2D { x: f64, y: f64,\n} impl fmt::Display for Point2D { /* Implement.. */\n} impl fmt::Debug for Point2D { /* Implement.. */\n} fn main() { let point = Point2D { x: 3.3, y: 7.2 }; assert_eq!(format!(\"{}\",point), \"Display: 3.3 + 7.2i\"); assert_eq!(format!(\"{:?}\",point), \"Debug: Complex { real: 3.3, imag: 7.2 }\"); println!(\"Success!\");\n}","breadcrumbs":"Formatted output » Debug and Display » Display","id":"182","title":"Display"},"183":{"body":"Implementing fmt::Display for a structure whose elements must be handled separately is tricky. The problem is each write! generates a fmt::Result which must be handled in the same place. Fortunately, Rust provides the ? operator to help us eliminate some unnecessary codes for dealing with fmt::Result. 🌟🌟 /* Make it work */\nuse std::fmt; struct List(Vec<i32>); impl fmt::Display for List { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { // Extract the value using tuple indexing, // and create a reference to `vec`. let vec = &self.0; write!(f, \"[\")?; // Iterate over `v` in `vec` while enumerating the iteration // count in `count`. for (count, v) in vec.iter().enumerate() { // For every element except the first, add a comma. // Use the ? operator to return on errors. if count != 0 { write!(f, \", \")?; } write!(f, \"{}\", v)?; } // Close the opened bracket and return a fmt::Result value. write!(f, \"]\") }\n} fn main() { let v = List(vec![1, 2, 3]); assert_eq!(format!(\"{}\",v), \"[0: 1, 1: 2, 2: 3]\"); println!(\"Success!\");\n} You can find the solutions here (under the solutions path), but only use it when you need it :)","breadcrumbs":"Formatted output » Debug and Display » ? operator","id":"183","title":"? operator"},"184":{"body":"","breadcrumbs":"Formatted output » formating » Formatting","id":"184","title":"Formatting"},"185":{"body":"1.🌟🌟 /* Fill in the blanks */\nfn main() { println!(\"{0}, this is {1}. {1}, this is {0}\", \"Alice\", \"Bob\"); // => Alice, this is Bob. Bob, this is Alice assert_eq!(format!(\"{1}{0}\", 1, 2), __); assert_eq!(format!(__, 1, 2), \"2112\"); println!(\"Success!\");\n}","breadcrumbs":"Formatted output » formating » Positional arguments","id":"185","title":"Positional arguments"},"186":{"body":"2.🌟🌟 fn main() { println!(\"{argument}\", argument = \"test\"); // => \"test\" /* Fill in the blanks */ assert_eq!(format!(\"{name}{}\", 1, __), \"21\"); assert_eq!(format!(__,a = \"a\", b = 'b', c = 3 ), \"a 3 b\"); /* Fix the error */ // Named argument must be placed after other arguments println!(\"{abc} {1}\", abc = \"def\", 2); println!(\"Success!\");\n}","breadcrumbs":"Formatted output » formating » Named arguments","id":"186","title":"Named arguments"},"187":{"body":"3.🌟🌟 By default, you can pad string with spaces fn main() { // The following two are padding with 5 spaces println!(\"Hello {:5}!\", \"x\"); // => \"Hello x !\" println!(\"Hello {:1$}!\", \"x\", 5); // => \"Hello x !\" /* Fill in the blanks */ assert_eq!(format!(\"Hello __!\", 5, \"x\"), \"Hello x !\"); assert_eq!(format!(\"Hello __!\", \"x\", width = 5), \"Hello x !\"); println!(\"Success!\");\n} 4.🌟🌟🌟 Left align, right align, pad with specified characters. fn main() { // Left align println!(\"Hello {:<5}!\", \"x\"); // => Hello x ! // Right align assert_eq!(format!(\"Hello __!\", \"x\"), \"Hello x!\"); // Center align assert_eq!(format!(\"Hello __!\", \"x\"), \"Hello x !\"); // Left align, pad with '&' assert_eq!(format!(\"Hello {:&<5}!\", \"x\"), __); println!(\"Success!\");\n} 5.🌟🌟 You can pad numbers with extra zeros. fn main() { println!(\"Hello {:5}!\", 5); // => Hello 5! println!(\"Hello {:+}!\", 5); // => Hello +5! println!(\"Hello {:05}!\", 5); // => Hello 00005! println!(\"Hello {:05}!\", -5); // => Hello -0005! /* Fill in the blank */ assert!(format!(\"{number:0>width$}\", number=1, width=6) == __); println!(\"Success!\")\n;}","breadcrumbs":"Formatted output » formating » Padding with string","id":"187","title":"Padding with string"},"188":{"body":"6.🌟🌟 Floating point precision /* Fill in the blanks */\nfn main() { let v = 3.1415926; println!(\"{:.1$}\", v, 4); // same as {:.4} => 3.1416 assert_eq!(format!(\"__\", v), \"3.14\"); assert_eq!(format!(\"__\", v), \"+3.14\"); assert_eq!(format!(\"__\", v), \"3\"); println!(\"Success!\");\n} 7.🌟🌟🌟 String length fn main() { let s = \"Hello, world!\"; println!(\"{0:.5}\", s); // => Hello assert_eq!(format!(\"Hello __!\", 3, \"abcdefg\"), \"Hello abc!\"); println!(\"Success!\");\n}","breadcrumbs":"Formatted output » formating » Precision","id":"188","title":"Precision"},"189":{"body":"format!(\"{}\", foo) -> \"3735928559\" format!(\"0x{:X}\", foo) -> \"0xDEADBEEF\" format!(\"0o{:o}\", foo) -> \"0o33653337357\" 8.🌟🌟 fn main() { assert_eq!(format!(\"__\", 27), \"0b11011\"); assert_eq!(format!(\"__\", 27), \"0o33\"); assert_eq!(format!(\"__\", 27), \"0x1b\"); assert_eq!(format!(\"__\", 27), \"0x1B\"); println!(\"{:x}!\", 27); // Hex with no prefix => 1b println!(\"{:#010b}\", 27); // Pad binary with 0, width = 10, => 0b00011011 println!(\"Success!\");\n}","breadcrumbs":"Formatted output » formating » Binary, octal, hex","id":"189","title":"Binary, octal, hex"},"19":{"body":"Introduced in Rust 1.59: You can now use tuple, slice, and struct patterns as the left-hand side of an assignment. 🌟🌟 Note: the feature Destructuring assignments need 1.59 or higher Rust version fn main() { let (x, y); (x,..) = (3, 4); [.., y] = [1, 2]; // Fill the blank to make the code work assert_eq!([x,y], __); println!(\"Success!\");\n} You can find the solutions here (under the solutions path), but only use it when you need it","breadcrumbs":"Variables » Destructuring assignments","id":"19","title":"Destructuring assignments"},"190":{"body":"9.🌟🌟🌟 fn get_person() -> String { String::from(\"sunface\")\n} fn get_format() -> (usize, usize) { (4, 1)\n} fn main() { let person = get_person(); println!(\"Hello, {person}!\"); let (width, precision) = get_format(); let scores = [(\"sunface\", 99.12), (\"jack\", 60.34)]; /* Make it print: sunface: 99.1 jack: 60.3 */ for (name, score) in scores { println!(\"{name}: __\"); }\n}","breadcrumbs":"Formatted output » formating » Capture the environment","id":"190","title":"Capture the environment"},"191":{"body":"Example fn main() { // Exponent println!(\"{:2e}\", 1000000000); // => 1e9 println!(\"{:2E}\", 1000000000); // => 1E9 // Pointer address let v= vec![1, 2, 3]; println!(\"{:p}\", v.as_ptr()); // => 0x600002324050 // Escape println!(\"Hello {{}}\"); // => Hello {}\n} You can find the solutions here (under the solutions path), but only use it when you need it :)","breadcrumbs":"Formatted output » formating » Others","id":"191","title":"Others"},"192":{"body":"Learning resources: English: Rust Book 10.3 简体中文: Rust语言圣经 - 生命周期","breadcrumbs":"Lifetime » Lifetime","id":"192","title":"Lifetime"},"193":{"body":"The compiler uses lifetime to ensure all borrows are valid. Typically, a variable's lifetime begins when it is created and ends when it is destroyed.","breadcrumbs":"Lifetime » basic » Lifetime","id":"193","title":"Lifetime"},"194":{"body":"🌟 /* Annotate the lifetime of `i` and `borrow2` */ // Lifetimes are annotated below with lines denoting the creation\n// and destruction of each variable.\n// `i` has the longest lifetime because its scope entirely encloses // both `borrow1` and `borrow2`. The duration of `borrow1` compared // to `borrow2` is irrelevant since they are disjoint.\nfn main() { let i = 3; { let borrow1 = &i; // `borrow1` lifetime starts. ──┐ // │ println!(\"borrow1: {}\", borrow1); // │ } // `borrow1 ends. ──────────────────────────────────┘ { let borrow2 = &i; println!(\"borrow2: {}\", borrow2); } } 🌟🌟 Example { let x = 5; // ----------+-- 'b // | let r = &x; // --+-- 'a | // | | println!(\"r: {}\", r); // | | // --+ |\n} // ----------+ /* Annotate `r` and `x` as above, and explain why this code fails to compile, in the lifetime aspect. */ fn main() { { let r; // ---------+-- 'a // | { // | let x = 5; // -+-- 'b | r = &x; // | | } // -+ | // | println!(\"r: {}\", r); // | } // ---------+\n}","breadcrumbs":"Lifetime » basic » The scope of lifetime","id":"194","title":"The scope of lifetime"},"195":{"body":"The borrow checker uses explicit lifetime annotations to determine how long a reference should be valid. But for us users, in most cases, there is no need to annotate the lifetime, because there are several elision rules, before learning these rules, we need to know how to annotate lifetime manually. Function Ignoring elision rules, lifetimes in function signatures have a few constraints: Any reference must have an annotated lifetime Any reference being returned must have the same lifetime as one of the inputs or be static Example // One input reference with lifetime `'a` which must live\n// at least as long as the function.\nfn print_one<'a>(x: &'a i32) { println!(\"`print_one`: x is {}\", x);\n} // Mutable references are possible with lifetimes as well.\nfn add_one<'a>(x: &'a mut i32) { *x += 1;\n} // Multiple elements with different lifetimes. In this case, it\n// would be fine for both to have the same lifetime `'a`, but\n// in more complex cases, different lifetimes may be required.\nfn print_multi<'a, 'b>(x: &'a i32, y: &'b i32) { println!(\"`print_multi`: x is {}, y is {}\", x, y);\n} // Returning references that have been passed in is acceptable.\n// However, the correct lifetime must be returned.\nfn pass_x<'a, 'b>(x: &'a i32, _: &'b i32) -> &'a i32 { x } fn main() { let x = 7; let y = 9; print_one(&x); print_multi(&x, &y); let z = pass_x(&x, &y); print_one(z); let mut t = 3; add_one(&mut t); print_one(&t);\n} 🌟 /* Make it work by adding proper lifetime annotation */\nfn longest(x: &str, y: &str) -> &str { if x.len() > y.len() { x } else { y }\n} fn main() {} 🌟🌟🌟 // `'a` must live longer than the function.\n// Here, `&String::from(\"foo\")` would create a `String`, followed by a\n// reference. Then the data is dropped upon exiting the scope, leaving\n// a reference to invalid data to be returned. /* Fix the error in three ways */\nfn invalid_output<'a>() -> &'a String { &String::from(\"foo\") } fn main() {\n} 🌟🌟 // `print_refs` takes two references to `i32` which have different\n// lifetimes `'a` and `'b`. These two lifetimes must both be at\n// least as long as the function `print_refs`.\nfn print_refs<'a, 'b>(x: &'a i32, y: &'b i32) { println!(\"x is {} and y is {}\", x, y);\n} /* Make it work */\n// A function which takes no arguments, but has a lifetime parameter `'a`.\nfn failed_borrow<'a>() { let _x = 12; // ERROR: `_x` does not live long enough let y: &'a i32 = &_x; // Attempting to use the lifetime `'a` as an explicit type annotation // inside the function will fail because the lifetime of `&_x` is shorter // than `'a` . A short lifetime cannot be coerced into a longer one.\n} fn main() { let (four, nine) = (4, 9); // Borrows (`&`) of both variables are passed into the function. print_refs(&four, &nine); // Any input which is borrowed must outlive the borrower. // In other words, the lifetime of `four` and `nine` must // be longer than that of `print_refs`. failed_borrow(); // `failed_borrow` contains no references to force `'a` to be // longer than the lifetime of the function, but `'a` is longer. // Because the lifetime is never constrained, it defaults to `'static`.\n} Structs 🌟 /* Make it work by adding proper lifetime annotation */ // A type `Borrowed` which houses a reference to an\n// `i32`. The reference to `i32` must outlive `Borrowed`.\n#[derive(Debug)]\nstruct Borrowed(&i32); // Similarly, both references here must outlive this structure.\n#[derive(Debug)]\nstruct NamedBorrowed { x: &i32, y: &i32,\n} // An enum which is either an `i32` or a reference to one.\n#[derive(Debug)]\nenum Either { Num(i32), Ref(&i32),\n} fn main() { let x = 18; let y = 15; let single = Borrowed(&x); let double = NamedBorrowed { x: &x, y: &y }; let reference = Either::Ref(&x); let number = Either::Num(y); println!(\"x is borrowed in {:?}\", single); println!(\"x and y are borrowed in {:?}\", double); println!(\"x is borrowed in {:?}\", reference); println!(\"y is *not* borrowed in {:?}\", number);\n} 🌟🌟 /* Make it work */ #[derive(Debug)]\nstruct NoCopyType {} #[derive(Debug)]\nstruct Example<'a, 'b> { a: &'a u32, b: &'b NoCopyType\n} fn main()\n{ /* 'a tied to fn-main stackframe */ let var_a = 35; let example: Example; { /* Lifetime 'b tied to new stackframe/scope */ let var_b = NoCopyType {}; /* fixme */ example = Example { a: &var_a, b: &var_b }; } println!(\"(Success!) {:?}\", example);\n} 🌟🌟 #[derive(Debug)]\nstruct NoCopyType {} #[derive(Debug)]\n#[allow(dead_code)]\nstruct Example<'a, 'b> { a: &'a u32, b: &'b NoCopyType\n} /* Fix function signature */\nfn fix_me(foo: &Example) -> &NoCopyType\n{ foo.b } fn main()\n{ let no_copy = NoCopyType {}; let example = Example { a: &1, b: &no_copy }; fix_me(&example); println!(\"Success!\")\n}","breadcrumbs":"Lifetime » basic » Lifetime annotating","id":"195","title":"Lifetime annotating"},"196":{"body":"Methods are annotated similarly to functions. Example struct Owner(i32); impl Owner { // Annotate lifetimes as in a standalone function. fn add_one<'a>(&'a mut self) { self.0 += 1; } fn print<'a>(&'a self) { println!(\"`print`: {}\", self.0); }\n} fn main() { let mut owner = Owner(18); owner.add_one(); owner.print();\n} 🌟🌟 /* Make it work by adding proper lifetime annotations */\nstruct ImportantExcerpt { part: &str,\n} impl ImportantExcerpt { fn level(&'a self) -> i32 { 3 }\n} fn main() {}","breadcrumbs":"Lifetime » basic » Method","id":"196","title":"Method"},"197":{"body":"Some lifetime patterns are so common that borrow checker will allow you to omit them to save typing and improve readability. This is known as Elision . Elision exist in Rust only because these patterns are common. For a more comprehensive understanding of elision, please see lifetime elision in the official book. 🌟🌟 /* Remove all the lifetimes that can be elided */ fn input<'a>(x: &'a i32) { println!(\"`annotated_input`: {}\", x);\n} fn pass<'a>(x: &'a i32) -> &'a i32 { x } fn longest<'a, 'b>(x: &'a str, y: &'b str) -> &'a str { x\n} struct Owner(i32); impl Owner { // Annotate lifetimes as in a standalone function. fn add_one<'a>(&'a mut self) { self.0 += 1; } fn print<'a>(&'a self) { println!(\"`print`: {}\", self.0); }\n} struct Person<'a> { age: u8, name: &'a str,\n} enum Either<'a> { Num(i32), Ref(&'a i32),\n} fn main() {} You can find the solutions here (under the solutions path), but only use it when you need it :)","breadcrumbs":"Lifetime » basic » Elision","id":"197","title":"Elision"},"198":{"body":"'static is a reserved lifetime name, you might have encountered it several times: // A reference with 'static lifetime:\nlet s: &'static str = \"hello world\"; // 'static as part of a trait bound:\nfn generic<T>(x: T) where T: 'static {} Though they are all 'static, but subtly different.","breadcrumbs":"Lifetime » &'static and T: 'static » &'static and T: 'static","id":"198","title":"&'static and T: 'static"},"199":{"body":"As a reference lifetime, &'static indicates the data pointed to by the reference lives as long as the running program. But it can still be coerced to a shorter lifetime. 🌟🌟 There are several ways to make a variable with 'static lifetime, two of them are stored in the read-only memory of the binary. /* Fill in the blank in two ways */\nfn main() { __; need_static(v); println!(\"Success!\")\n} fn need_static(r : &'static str) { assert_eq!(r, \"hello\");\n} 🌟🌟🌟🌟 Another way to make 'static lifetime is using Box::leak #[derive(Debug)]\nstruct Config { a: String, b: String,\n}\nstatic mut config: Option<&mut Config> = None; /* Make it work without changing the function signatures of `init`*/\nfn init() -> Option<&'static mut Config> { Some(&mut Config { a: \"A\".to_string(), b: \"B\".to_string(), })\n} fn main() { unsafe { config = init(); println!(\"{:?}\",config) }\n} 🌟 &'static only indicates that the data can live forever, not the reference. The latter one will be constrained by its scope. fn main() { { // Make a `string` literal and print it: let static_string = \"I'm in read-only memory\"; println!(\"static_string: {}\", static_string); // When `static_string` goes out of scope, the reference // can no longer be used, but the data remains in the binary. } println!(\"static_string reference remains alive: {}\", static_string);\n} &'static can be coerced to a shorter lifetime. Example // Make a constant with `'static` lifetime.\nstatic NUM: i32 = 18; // Returns a reference to `NUM` where its `'static`\n// lifetime is coerced to that of the input argument.\nfn coerce_static<'a>(_: &'a i32) -> &'a i32 { &NUM\n} fn main() { { // Make an integer to use for `coerce_static`: let lifetime_num = 9; // Coerce `NUM` to lifetime of `lifetime_num`: let coerced_static = coerce_static(&lifetime_num); println!(\"coerced_static: {}\", coerced_static); } println!(\"NUM: {} stays accessible!\", NUM);\n}","breadcrumbs":"Lifetime » &'static and T: 'static » &'static","id":"199","title":"&'static"},"2":{"body":"Part of our examples and exercises are borrowed from Rust By Example , thanks for your great works! Although they are so awesome, we have our own secret weapons :) There are three parts in each chapter: examples, exercises and practices Besides examples, we have a lot of exercises, you can Read, Edit and Run them ONLINE Covering nearly all aspects of Rust, such as async/await, threads, sync primitives, optimizing, standard libraries, tool chain, data structures and algorithms etc. Every exercise has its own solutions The overall difficulties are a bit higher and from easy to super hard: easy 🌟 medium 🌟🌟 hard 🌟🌟🌟 super hard 🌟🌟🌟🌟 What we want to do is to fill the gap between learning and getting started with real projects!","breadcrumbs":"Rust By Practice » Features","id":"2","title":"Features"},"20":{"body":"Learning resources: English: Rust Book 3.2 and 3.3 简体中文: Rust语言圣经 - 基本类型","breadcrumbs":"Basic Types » Basic Types","id":"20","title":"Basic Types"},"200":{"body":"As a trait bound, it means the type does not contain any non-static references. Eg. the receiver can hold on to the type for as long as they want and it will never become invalid until they drop it. It's important to understand this means that any owned data always passes a 'static lifetime bound, but a reference to that owned data generally does not. 🌟🌟 /* Make it work */\nuse std::fmt::Debug; fn print_it<T: Debug + 'static>( input: T) { println!( \"'static value passed in is: {:?}\", input );\n} fn print_it1( input: impl Debug + 'static ) { println!( \"'static value passed in is: {:?}\", input );\n} fn print_it2<T: Debug + 'static>( input: &T) { println!( \"'static value passed in is: {:?}\", input );\n} fn main() { // i is owned and contains no references, thus it's 'static: let i = 5; print_it(i); // oops, &i only has the lifetime defined by the scope of // main(), so it's not 'static: print_it(&i); print_it1(&i); // but this one WORKS ! print_it2(&i);\n} 🌟🌟🌟 use std::fmt::Display; fn main() { let mut string = \"First\".to_owned(); string.push_str(string.to_uppercase().as_str()); print_a(&string); print_b(&string); print_c(&string); // Compilation error print_d(&string); // Compilation error print_e(&string); print_f(&string); print_g(&string); // Compilation error\n} fn print_a<T: Display + 'static>(t: &T) { println!(\"{}\", t);\n} fn print_b<T>(t: &T)\nwhere T: Display + 'static,\n{ println!(\"{}\", t);\n} fn print_c(t: &'static dyn Display) { println!(\"{}\", t)\n} fn print_d(t: &'static impl Display) { println!(\"{}\", t)\n} fn print_e(t: &(dyn Display + 'static)) { println!(\"{}\", t)\n} fn print_f(t: &(impl Display + 'static)) { println!(\"{}\", t)\n} fn print_g(t: &'static String) { println!(\"{}\", t);\n} You can find the solutions here (under the solutions path), but only use it when you need it :)","breadcrumbs":"Lifetime » &'static and T: 'static » T: 'static","id":"200","title":"T: 'static"},"201":{"body":"","breadcrumbs":"Lifetime » advanced » Advance lifetime","id":"201","title":"Advance lifetime"},"202":{"body":"Just like generic types can be bounded, lifetimes can also be bounded as below: T: 'aall references in T must outlive the lifetime 'a T: Trait + 'a: T must implement trait Trait and all references in T must outlive 'a Example use std::fmt::Debug; // Trait to bound with. #[derive(Debug)]\nstruct Ref<'a, T: 'a>(&'a T);\n// `Ref` contains a reference to a generic type `T` that has\n// an unknown lifetime `'a`. `T` is bounded such that any\n// *references* in `T` must outlive `'a`. Additionally, the lifetime\n// of `Ref` may not exceed `'a`. // A generic function which prints using the `Debug` trait.\nfn print<T>(t: T) where T: Debug { println!(\"`print`: t is {:?}\", t);\n} // Here a reference to `T` is taken where `T` implements\n// `Debug` and all *references* in `T` outlive `'a`. In\n// addition, `'a` must outlive the function.\nfn print_ref<'a, T>(t: &'a T) where T: Debug + 'a { println!(\"`print_ref`: t is {:?}\", t);\n} fn main() { let x = 7; let ref_x = Ref(&x); print_ref(&ref_x); print(ref_x);\n} 🌟 /* Annotate struct with lifetime:\n1. `r` and `s` must have different lifetimes\n2. lifetime of `s` is bigger than that of 'r'\n*/\nstruct DoubleRef<T> { r: &T, s: &T\n}\nfn main() { println!(\"Success!\")\n} 🌟🌟 /* Adding trait bounds to make it work */\nstruct ImportantExcerpt<'a> { part: &'a str,\n} impl<'a, 'b> ImportantExcerpt<'a> { fn announce_and_return_part(&'a self, announcement: &'b str) -> &'b str { println!(\"Attention please: {}\", announcement); self.part }\n} fn main() { println!(\"Success!\")\n} 🌟🌟 /* Adding trait bounds to make it work */\nfn f<'a, 'b>(x: &'a i32, mut y: &'b i32) { y = x; let r: &'b &'a i32 = &&0; } fn main() { println!(\"Success!\")\n}","breadcrumbs":"Lifetime » advanced » Trait Bounds","id":"202","title":"Trait Bounds"},"203":{"body":"Type bounds may be higher ranked over lifetimes. These bounds specify a bound is true for all lifetimes. For example, a bound such as for<'a> &'a T: PartialEq<i32> would require an implementation like: impl<'a> PartialEq<i32> for &'a T { // ...\n} and could then be used to compare a &'a T with any lifetime to an i32. Only a higher-ranked bound can be used here, because the lifetime of the reference is shorter than any possible lifetime parameter on the function. 🌟🌟🌟 /* Adding HRTB to make it work!*/\nfn call_on_ref_zero<'a, F>(f: F) where F: Fn(&'a i32) { let zero = 0; f(&zero);\n} fn main() { println!(\"Success!\");\n}","breadcrumbs":"Lifetime » advanced » HRTB(Higher-ranked trait bounds)","id":"203","title":"HRTB(Higher-ranked trait bounds)"},"204":{"body":"Before explaining NLL, let's see some code first: fn main() { let mut s = String::from(\"hello\"); let r1 = &s; let r2 = &s; println!(\"{} and {}\", r1, r2); let r3 = &mut s; println!(\"{}\", r3);\n} Based on our current knowledge, this code will cause en error due to violating the borrowing rules in Rust. But if you cargo run it, then everything will be ok, so what's going on here? The ability of the compiler to tell that a reference is no longer used at a point before the end of the scope, is called Non-Lexical Lifetimes ( NLL for short). With this ability the compiler knows when is the last time that a reference is used and optimizing the borrowing rules based on this knowledge. let mut u = 0i32;\nlet mut v = 1i32;\nlet mut w = 2i32; // lifetime of `a` = α β γ\nlet mut a = &mut u; // --+ α. lifetime of `&mut u` --+ lexical \"lifetime\" of `&mut u`,`&mut u`, `&mut w` and `a`\nuse(a); // | |\n*a = 3; // <-----------------+ |\n... // |\na = &mut v; // --+ β. lifetime of `&mut v` |\nuse(a); // | |\n*a = 4; // <-----------------+ |\n... // |\na = &mut w; // --+ γ. lifetime of `&mut w` |\nuse(a); // | |\n*a = 5; // <-----------------+ <--------------------------+","breadcrumbs":"Lifetime » advanced » NLL (Non-Lexical Lifetime)","id":"204","title":"NLL (Non-Lexical Lifetime)"},"205":{"body":"After learning NLL, we can easily understand reborrow now. Example #[derive(Debug)]\nstruct Point { x: i32, y: i32,\n} impl Point { fn move_to(&mut self, x: i32, y: i32) { self.x = x; self.y = y; }\n} fn main() { let mut p = Point { x: 0, y: 0 }; let r = &mut p; // Here comes the reborrow let rr: &Point = &*r; println!(\"{:?}\", rr); // Reborrow ends here, NLL introduced // Reborrow is over, we can continue using `r` now r.move_to(10, 10); println!(\"{:?}\", r);\n} 🌟🌟 /* Make it work by reordering some code */\nfn main() { let mut data = 10; let ref1 = &mut data; let ref2 = &mut *ref1; *ref1 += 1; *ref2 += 2; println!(\"{}\", data);\n}","breadcrumbs":"Lifetime » advanced » Reborrow","id":"205","title":"Reborrow"},"206":{"body":"See more info in Nomicon - Unbounded Lifetimes .","breadcrumbs":"Lifetime » advanced » Unbound lifetime","id":"206","title":"Unbound lifetime"},"207":{"body":"impl<'a> Reader for BufReader<'a> { // 'a is not used in the following methods\n} // can be written as :\nimpl Reader for BufReader<'_> { } // Rust 2015\nstruct Ref<'a, T: 'a> { field: &'a T\n} // Rust 2018\nstruct Ref<'a, T> { field: &'a T\n}","breadcrumbs":"Lifetime » advanced » More elision rules","id":"207","title":"More elision rules"},"208":{"body":"🌟🌟🌟🌟 /* Make it work */\nstruct Interface<'a> { manager: &'a mut Manager<'a>\n} impl<'a> Interface<'a> { pub fn noop(self) { println!(\"interface consumed\"); }\n} struct Manager<'a> { text: &'a str\n} struct List<'a> { manager: Manager<'a>,\n} impl<'a> List<'a> { pub fn get_interface(&'a mut self) -> Interface { Interface { manager: &mut self.manager } }\n} fn main() { let mut list = List { manager: Manager { text: \"hello\" } }; list.get_interface().noop(); println!(\"Interface should be dropped here and the borrow released\"); use_list(&list);\n} fn use_list(list: &List) { println!(\"{}\", list.manager.text);\n} You can find the solutions here (under the solutions path), but only use it when you need it :)","breadcrumbs":"Lifetime » advanced » A difficult exercise","id":"208","title":"A difficult exercise"},"209":{"body":"Learning resources: English: Rust Book 13 简体中文: Rust语言圣经 - 函数式编程:闭包和迭代器","breadcrumbs":"Functional programing » Functional programing","id":"209","title":"Functional programing"},"21":{"body":"","breadcrumbs":"Basic Types » Numbers » Numbers","id":"21","title":"Numbers"},"210":{"body":"Closures can capture the enclosing environments. For example we can capture the x variable : fn main() { let x = 1; let closure = |val| val + x; assert_eq!(closure(2), 3);\n} From the syntax, we can see that closures are very convenient for on the fly usage. Unlike functions, both the input and return types of a closure can be inferred by the compiler. fn main() { // Increment via closures and functions. fn function(i: i32) -> i32 { i + 1 } // Closures are anonymous, here we are binding them to references // // These nameless functions are assigned to appropriately named variables. let closure_annotated = |i: i32| -> i32 { i + 1 }; let closure_inferred = |i | i + 1 ; let i = 1; // Call the function and closures. println!(\"function: {}\", function(i)); println!(\"closure_annotated: {}\", closure_annotated(i)); println!(\"closure_inferred: {}\", closure_inferred(i)); // A closure taking no arguments which returns an `i32`. // The return type is inferred. let one = || 1; println!(\"closure returning one: {}\", one()); }","breadcrumbs":"Functional programing » Closure » Closure","id":"210","title":"Closure"},"211":{"body":"Closures can capture variables by borrowing or moving. But they prefer to capture by borrowing and only go lower when required: By reference: &T By mutable reference: &mut T By value: T 🌟 /* Make it work with least amount of changes*/\nfn main() { let color = String::from(\"green\"); let print = move || println!(\"`color`: {}\", color); print(); print(); // `color` can be borrowed immutably again, because the closure only holds // an immutable reference to `color`. let _reborrow = &color; println!(\"{}\",color);\n} 🌟🌟 /* Make it work - Dont use `_reborrow` and `_count_reborrowed`\n- Dont modify `assert_eq`\n*/\nfn main() { let mut count = 0; let mut inc = || { count += 1; println!(\"`count`: {}\", count); }; inc(); let _reborrow = &count; inc(); // The closure no longer needs to borrow `&mut count`. Therefore, it is // possible to reborrow without an error let _count_reborrowed = &mut count; assert_eq!(count, 0);\n} 🌟🌟 /* Make it work in two ways, none of them is to remove `take(movable)` away from the code\n*/\nfn main() { let movable = Box::new(3); let consume = || { println!(\"`movable`: {:?}\", movable); take(movable); }; consume(); consume();\n} fn take<T>(_v: T) {} For comparison, the following code has no error: fn main() { let movable = Box::new(3); let consume = move || { println!(\"`movable`: {:?}\", movable); }; consume(); consume();\n}","breadcrumbs":"Functional programing » Closure » Capturing","id":"211","title":"Capturing"},"212":{"body":"The following four closures has no difference in input and return types. fn add_one_v1 (x: u32) -> u32 { x + 1 }\nlet add_one_v2 = |x: u32| -> u32 { x + 1 };\nlet add_one_v3 = |x| { x + 1 };\nlet add_one_v4 = |x| x + 1 ; 🌟 fn main() { let example_closure = |x| x; let s = example_closure(String::from(\"hello\")); /* Make it work, only change the following line */ let n = example_closure(5);\n}","breadcrumbs":"Functional programing » Closure » Type inferred","id":"212","title":"Type inferred"},"213":{"body":"When taking a closure as an input parameter, the closure's complete type must be annotated using one of the following traits: Fn: the closure uses the captured value by reference (&T) FnMut: the closure uses the captured value by mutable reference (&mut T) FnOnce: the closure uses the captured value by value (T) 🌟🌟 /* Make it work by changing the trait bound, in two ways*/\nfn fn_once<F>(func: F)\nwhere F: FnOnce(usize) -> bool,\n{ println!(\"{}\", func(3)); println!(\"{}\", func(4));\n} fn main() { let x = vec![1, 2, 3]; fn_once(|z|{z == x.len()})\n} 🌟🌟 fn main() { let mut s = String::new(); let update_string = |str| s.push_str(str); exec(update_string); println!(\"{:?}\",s);\n} /* Fill in the blank */\nfn exec<'a, F: __>(mut f: F) { f(\"hello\")\n} Which trait does the compiler prefer to use? Fn: the closure uses the captured value by reference (&T) FnMut: the closure uses the captured value by mutable reference (&mut T) FnOnce: the closure uses the captured value by value (T) On a variable-by-variable basis, the compiler will capture variables in the least restrictive manner possible. For instance, consider a parameter annotated as FnOnce. This specifies that the closure may capture by &T, &mut T, or T, but the compiler will ultimately choose based on how the captured variables are used in the closure. Which trait to use is determined by what the closure does with captured value. This is because if a move is possible, then any type of borrow should also be possible. Note that the reverse is not true. If the parameter is annotated as Fn, then capturing variables by &mut T or T are not allowed. 🌟🌟 /* Fill in the blank */ // A function which takes a closure as an argument and calls it.\n// <F> denotes that F is a \"Generic type parameter\"\nfn apply<F>(f: F) where // The closure takes no input and returns nothing. F: __ { f();\n} // A function which takes a closure and returns an `i32`.\nfn apply_to_3<F>(f: F) -> i32 where // The closure takes an `i32` and returns an `i32`. F: Fn(i32) -> i32 { f(3)\n} fn main() { use std::mem; let greeting = \"hello\"; // A non-copy type. // `to_owned` creates owned data from borrowed one let mut farewell = \"goodbye\".to_owned(); // Capture 2 variables: `greeting` by reference and // `farewell` by value. let diary = || { // `greeting` is by reference: requires `Fn`. println!(\"I said {}.\", greeting); // Mutation forces `farewell` to be captured by // mutable reference. Now requires `FnMut`. farewell.push_str(\"!!!\"); println!(\"Then I screamed {}.\", farewell); println!(\"Now I can sleep. zzzzz\"); // Manually calling drop forces `farewell` to // be captured by value. Now requires `FnOnce`. mem::drop(farewell); }; // Call the function which applies the closure. apply(diary); // `double` satisfies `apply_to_3`'s trait bound let double = |x| 2 * x; println!(\"3 doubled: {}\", apply_to_3(double));\n} Move closures may still implement Fn or FnMut, even though they capture variables by move. This is because the traits implemented by a closure type are determined by what the closure does with captured values, not how it captures them. The move keyword only specifies the latter. fn main() { let s = String::new(); let update_string = move || println!(\"{}\",s); exec(update_string);\n} fn exec<F: FnOnce()>(f: F) { f()\n} The following code also has no error: fn main() { let s = String::new(); let update_string = move || println!(\"{}\",s); exec(update_string);\n} fn exec<F: Fn()>(f: F) { f()\n} 🌟🌟 /* Fill in the blank */\nfn main() { let mut s = String::new(); let update_string = |str| -> String {s.push_str(str); s }; exec(update_string);\n} fn exec<'a, F: __>(mut f: F) { f(\"hello\");\n}","breadcrumbs":"Functional programing » Closure » Fn, FnMut, FnOnce","id":"213","title":"Fn, FnMut, FnOnce"},"214":{"body":"Since closure can be used as arguments, you might wonder can we use functions as arguments too? And indeed we can. 🌟🌟 /* Implement `call_me` to make it work */\nfn call_me { f();\n} fn function() { println!(\"I'm a function!\");\n} fn main() { let closure = || println!(\"I'm a closure!\"); call_me(closure); call_me(function);\n}","breadcrumbs":"Functional programing » Closure » Input functions","id":"214","title":"Input functions"},"215":{"body":"Returning a closure is much harder than you may have thought of. 🌟🌟 /* Fill in the blank using two approaches, and fix the error */\nfn create_fn() -> __ { let num = 5; // How does the following closure capture the environment variable `num` // &T, &mut T, T ? |x| x + num\n} fn main() { let fn_plain = create_fn(); fn_plain(1);\n} 🌟🌟 /* Fill in the blank and fix the error*/\nfn factory(x:i32) -> __ { let num = 5; if x > 1{ move |x| x + num } else { move |x| x + num }\n}","breadcrumbs":"Functional programing » Closure » Closure as return types","id":"215","title":"Closure as return types"},"216":{"body":"Example struct Cacher<T,E>\nwhere T: Fn(E) -> E, E: Copy\n{ query: T, value: Option<E>,\n} impl<T,E> Cacher<T,E>\nwhere T: Fn(E) -> E, E: Copy\n{ fn new(query: T) -> Cacher<T,E> { Cacher { query, value: None, } } fn value(&mut self, arg: E) -> E { match self.value { Some(v) => v, None => { let v = (self.query)(arg); self.value = Some(v); v } } }\n}\nfn main() { } #[test]\nfn call_with_different_values() { let mut c = Cacher::new(|a| a); let v1 = c.value(1); let v2 = c.value(2); assert_eq!(v2, 1);\n} You can find the solutions here (under the solutions path), but only use it when you need it :)","breadcrumbs":"Functional programing » Closure » Closure in structs","id":"216","title":"Closure in structs"},"217":{"body":"The iterator pattern allows us to perform some tasks on a sequence of items in turn. An iterator is responsible for the logic of iterating over each item and determining when the sequence has finished.","breadcrumbs":"Functional programing » Iterator » Iterator","id":"217","title":"Iterator"},"218":{"body":"fn main() { let v = vec![1, 2, 3]; for x in v { println!(\"{}\",x) }\n} In the code above, You may consider for as a simple loop, but actually it is iterating over a iterator. By default for will apply the into_iter to the collection, and change it into a iterator. As a result, the following code is equivalent to previous one: fn main() { let v = vec![1, 2, 3]; for x in v.into_iter() { println!(\"{}\",x) }\n} 🌟 /* Refactoring the following code using iterators */\nfn main() { let arr = [0; 10]; for i in 0..arr.len() { println!(\"{}\",arr[i]); }\n} 🌟 One of the easiest ways to create an iterator is to use the range notion: a..b. /* Fill in the blank */\nfn main() { let mut v = Vec::new(); for n in __ { v.push(n); } assert_eq!(v.len(), 100);\n}","breadcrumbs":"Functional programing » Iterator » for and iterator","id":"218","title":"for and iterator"},"219":{"body":"All iterators implement a trait named Iterator that is defined in the standard library: pub trait Iterator { type Item; fn next(&mut self) -> Option<Self::Item>; // Methods with default implementations elided\n} And we can call the next method on iterators directly. 🌟🌟 /* Fill the blanks and fix the errors.\nUsing two ways if possible */\nfn main() { let v1 = vec![1, 2]; assert_eq!(v1.next(), __); assert_eq!(v1.next(), __); assert_eq!(v1.next(), __);\n}","breadcrumbs":"Functional programing » Iterator » next method","id":"219","title":"next method"},"22":{"body":"🌟 Tips: If we don't explicitly assign a type to a variable, then the compiler will infer one for us. // Remove something to make it work\nfn main() { let x: i32 = 5; let mut y: u32 = 5; y = x; let z = 10; // Type of z ? println!(\"Success!\");\n} 🌟 // Fill the blank\nfn main() { let v: u16 = 38_u8 as __; println!(\"Success!\");\n} 🌟🌟🌟 Tips: If we don't explicitly assign a type to a variable, then the compiler will infer one for us. // Modify `assert_eq!` to make it work\nfn main() { let x = 5; assert_eq!(\"u32\".to_string(), type_of(&x)); println!(\"Success!\");\n} // Get the type of given variable, return a string representation of the type , e.g \"i8\", \"u8\", \"i32\", \"u32\"\nfn type_of<T>(_: &T) -> String { format!(\"{}\", std::any::type_name::<T>())\n} 🌟🌟 // Fill the blanks to make it work\nfn main() { assert_eq!(i8::MAX, __); assert_eq!(u8::MAX, __); println!(\"Success!\");\n} 🌟🌟 // Fix errors and panics to make it work\nfn main() { let v1 = 251_u8 + 8; let v2 = i8::checked_add(251, 8).unwrap(); println!(\"{},{}\",v1,v2);\n} 🌟🌟 // Modify `assert!` to make it work\nfn main() { let v = 1_024 + 0xff + 0o77 + 0b1111_1111; assert!(v == 1579); println!(\"Success!\");\n}","breadcrumbs":"Basic Types » Numbers » Integer","id":"22","title":"Integer"},"220":{"body":"In the previous section, we have mentioned that for will apply the into_iter to the collection, and change it into a iterator. However, this is not the only way to convert collections into iterators. into_iter, iter, iter_mut, all of them can convert a collection into iterator, but in different ways. into_iter consumes the collection, once the collection has been consumed, it is no longer available for reuse, because its ownership has been moved within the loop. iter, this borrows each element of the collection through each iteration, thus leaving the collection untouched and available for reuse after the loop iter_mut, this mutably borrows each element of the collection, allowing for the collection to be modified in place. 🌟 /* Make it work */\nfn main() { let arr = vec![0; 10]; for i in arr { println!(\"{}\", i); } println!(\"{:?}\",arr);\n} 🌟 /* Fill in the blank */\nfn main() { let mut names = vec![\"Bob\", \"Frank\", \"Ferris\"]; for name in names.__{ *name = match name { &mut \"Ferris\" => \"There is a rustacean among us!\", _ => \"Hello\", } } println!(\"names: {:?}\", names);\n} 🌟🌟 /* Fill in the blank */\nfn main() { let mut values = vec![1, 2, 3]; let mut values_iter = values.__; if let Some(v) = values_iter.__{ __ } assert_eq!(values, vec![0, 2, 3]);\n}","breadcrumbs":"Functional programing » Iterator » into_iter, iter and iter_mut","id":"220","title":"into_iter, iter and iter_mut"},"221":{"body":"We can not only create iterators from collection's types, but also can create iterators by implementing the Iterator trait on our own types. Example struct Counter { count: u32,\n} impl Counter { fn new() -> Counter { Counter { count: 0 } }\n} impl Iterator for Counter { type Item = u32; fn next(&mut self) -> Option<Self::Item> { if self.count < 5 { self.count += 1; Some(self.count) } else { None } }\n} fn main() { let mut counter = Counter::new(); assert_eq!(counter.next(), Some(1)); assert_eq!(counter.next(), Some(2)); assert_eq!(counter.next(), Some(3)); assert_eq!(counter.next(), Some(4)); assert_eq!(counter.next(), Some(5)); assert_eq!(counter.next(), None);\n} 🌟🌟🌟 struct Fibonacci { curr: u32, next: u32,\n} // Implement `Iterator` for `Fibonacci`.\n// The `Iterator` trait only requires a method to be defined for the `next` element.\nimpl Iterator for Fibonacci { // We can refer to this type using Self::Item type Item = u32; /* Implement next method */ fn next(&mut self)\n} // Returns a Fibonacci sequence generator\nfn fibonacci() -> Fibonacci { Fibonacci { curr: 0, next: 1 }\n} fn main() { let mut fib = fibonacci(); assert_eq!(fib.next(), Some(1)); assert_eq!(fib.next(), Some(1)); assert_eq!(fib.next(), Some(2)); assert_eq!(fib.next(), Some(3)); assert_eq!(fib.next(), Some(5));\n}","breadcrumbs":"Functional programing » Iterator » Creating our own iterator","id":"221","title":"Creating our own iterator"},"222":{"body":"The Iterator trait has a number of methods with default implementations provided by the standard library.","breadcrumbs":"Functional programing » Iterator » Methods that Consume the Iterator","id":"222","title":"Methods that Consume the Iterator"},"223":{"body":"Some of these methods call the method nextto use up the iterator, so they are called consuming adaptors . 🌟🌟 /* Fill in the blank and fix the errors */\nfn main() { let v1 = vec![1, 2, 3]; let v1_iter = v1.iter(); // The sum method will take the ownership of the iterator and iterates through the items by repeatedly calling next method let total = v1_iter.sum(); assert_eq!(total, __); println!(\"{:?}, {:?}\",v1, v1_iter);\n} Collect Other than converting a collection into an iterator, we can also collect the result values into a collection, collect will consume the iterator. 🌟🌟 /* Make it work */\nuse std::collections::HashMap;\nfn main() { let names = [(\"sunface\",18), (\"sunfei\",18)]; let folks: HashMap<_, _> = names.into_iter().collect(); println!(\"{:?}\",folks); let v1: Vec<i32> = vec![1, 2, 3]; let v2 = v1.iter().collect(); assert_eq!(v2, vec![1, 2, 3]);\n}","breadcrumbs":"Functional programing » Iterator » Consuming adaptors","id":"223","title":"Consuming adaptors"},"224":{"body":"Methods allowing you to change one iterator into another iterator are known as iterator adaptors . You can chain multiple iterator adaptors to perform complex actions in a readable way. But because all iterators are lazy , you have to call one of the consuming adapters to get results from calls to iterator adapters. 🌟🌟 /* Fill in the blanks */\nfn main() { let v1: Vec<i32> = vec![1, 2, 3]; let v2: Vec<_> = v1.iter().__.__; assert_eq!(v2, vec![2, 3, 4]);\n} 🌟🌟 /* Fill in the blanks */\nuse std::collections::HashMap;\nfn main() { let names = [\"sunface\", \"sunfei\"]; let ages = [18, 18]; let folks: HashMap<_, _> = names.into_iter().__.collect(); println!(\"{:?}\",folks);\n} Using closures in iterator adaptors 🌟🌟 /* Fill in the blanks */\n#[derive(PartialEq, Debug)]\nstruct Shoe { size: u32, style: String,\n} fn shoes_in_size(shoes: Vec<Shoe>, shoe_size: u32) -> Vec<Shoe> { shoes.into_iter().__.collect()\n} fn main() { let shoes = vec![ Shoe { size: 10, style: String::from(\"sneaker\"), }, Shoe { size: 13, style: String::from(\"sandal\"), }, Shoe { size: 10, style: String::from(\"boot\"), }, ]; let in_my_size = shoes_in_size(shoes, 10); assert_eq!( in_my_size, vec![ Shoe { size: 10, style: String::from(\"sneaker\") }, Shoe { size: 10, style: String::from(\"boot\") }, ] );\n} You can find the solutions here (under the solutions path), but only use it when you need it :)","breadcrumbs":"Functional programing » Iterator » Iterator adaptors","id":"224","title":"Iterator adaptors"},"225":{"body":"","breadcrumbs":"newtype and DST » newtype and Sized","id":"225","title":"newtype and Sized"},"226":{"body":"The orphan rule tells us that we are allowed to implement a trait on a type as long as either the trait or the type are local to our crate. The newtype pattern can help us get around this restriction, which involves creating a new type in a tuple struct . 🌟 use std::fmt; /* Define the Wrapper type */\n__; // Display is an external trait\nimpl fmt::Display for Wrapper { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, \"[{}]\", self.0.join(\", \")) }\n} fn main() { // Vec is an external type, so you cannot implement Display trait on Vec type let w = Wrapper(vec![String::from(\"hello\"), String::from(\"world\")]); println!(\"w = {}\", w);\n} 🌟 Hide the methods of the original type. /* Make it workd */\nstruct Meters(u32); fn main() { let i: u32 = 2; assert_eq!(i.pow(2), 4); let n = Meters(i); // The `pow` method is defined on `u32` type, we can't directly call it assert_eq!(n.pow(2), 4);\n} 🌟🌟 The newtype idiom gives compile time guarantees that the right type of value is supplied to a program. /* Make it work */\nstruct Years(i64); struct Days(i64); impl Years { pub fn to_days(&self) -> Days { Days(self.0 * 365) }\n} impl Days { pub fn to_years(&self) -> Years { Years(self.0 / 365) }\n} // An age verification function that checks age in years, must be given a value of type Years.\nfn old_enough(age: &Years) -> bool { age.0 >= 18\n} fn main() { let age = Years(5); let age_days = age.to_days(); println!(\"Old enough {}\", old_enough(&age)); println!(\"Old enough {}\", old_enough(&age_days));\n} 🌟🌟 use std::ops::Add;\nuse std::fmt::{self, format}; struct Meters(u32);\nimpl fmt::Display for Meters { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, \"There are still {} meters left\", self.0) }\n} impl Add for Meters { type Output = Self; fn add(self, other: Meters) -> Self { Self(self.0 + other.0) }\n}\nfn main() { let d = calculate_distance(Meters(10), Meters(20)); assert_eq!(format!(\"{}\",d), \"There are still 30 meters left\");\n} /* Implement calculate_distance */\nfn calculate_distance","breadcrumbs":"newtype and DST » Newtype","id":"226","title":"Newtype"},"227":{"body":"Type alias is important to improve the readability of our code. type Thunk = Box<dyn Fn() + Send + 'static>; let f: Thunk = Box::new(|| println!(\"hi\")); fn takes_long_type(f: Thunk) { // --snip--\n} fn returns_long_type() -> Thunk { // --snip--\n} type Result<T> = std::result::Result<T, std::io::Error>; And Unlike newtype, type alias don't create new types, so the following code is valid: type Meters = u32; let x: u32 = 5;\nlet y: Meters = 5; println!(\"x + y = {}\", x + y); 🌟 enum VeryVerboseEnumOfThingsToDoWithNumbers { Add, Subtract,\n} /* Fill in the blank */\n__ fn main() { // We can refer to each variant via its alias, not its long and inconvenient // name. let x = Operations::Add;\n} 🌟🌟 There are a few preserved aliases in Rust, one of which can be used in impl blocks. enum VeryVerboseEnumOfThingsToDoWithNumbers { Add, Subtract,\n} impl VeryVerboseEnumOfThingsToDoWithNumbers { fn run(&self, x: i32, y: i32) -> i32 { match self { __::Add => x + y, __::Subtract => x - y, } }\n}","breadcrumbs":"newtype and DST » Type alias","id":"227","title":"Type alias"},"228":{"body":"These concepts are complicated, so we are not going to explain here, but you can find them in The Book . 🌟🌟🌟 Array with dynamic length is a Dynamic Sized Type ( DST ), we can't directly use it /* Make it work with const generics */\nfn my_function(n: usize) -> [u32; usize] { [123; n]\n} fn main() { let arr = my_function(); println!(\"{:?}\",arr);\n} 🌟🌟 Slice is unsized type, but the reference of slice is not. /* Make it work with slice references */\nfn main() { let s: str = \"Hello there!\"; let arr: [u8] = [1, 2, 3];\n} 🌟🌟 Trait is also an unsized type /* Make it work in two ways */\nuse std::fmt::Display;\nfn foobar(thing: Display) {} fn main() {\n}","breadcrumbs":"newtype and DST » DST and unsized type","id":"228","title":"DST and unsized type"},"229":{"body":"","breadcrumbs":"Smart pointers TODO » Smart pointers","id":"229","title":"Smart pointers"},"23":{"body":"🌟 // Fill the blank to make it work\nfn main() { let x = 1_000.000_1; // ? let y: f32 = 0.12; // f32 let z = 0.01_f64; // f64 assert_eq!(type_of(&x), \"__\".to_string()); println!(\"Success!\");\n} fn type_of<T>(_: &T) -> String { format!(\"{}\", std::any::type_name::<T>())\n} 🌟🌟 Make it work in two distinct ways fn main() { assert!(0.1+0.2==0.3); println!(\"Success!\");\n}","breadcrumbs":"Basic Types » Numbers » Floating-Point","id":"23","title":"Floating-Point"},"230":{"body":"🌟 // Make it work\nfn main() { // Create a new box `b` that contains the integer 5 assert_eq!(*b, 5); println!(\"Success!\");\n} 🌟 // Make it work\nfn main() { let b = Box::new(\"Hello\"); print_boxed_string(b);\n} fn print_boxed_string(b : _) { println!(\"{}\", b);\n} 🌟 // Make it work\nfn main() { let b1 = Box::new(5); let b2 = b1; assert_eq!(_, 5); println!(\"Success!\");\n} 🌟 // Make it work\nfn main() { // Create a box `b` with an array [1, 2, 3, 4, 5] // Print each integer in `b`\n} You can find the solutions here (under the solutions path), but only use it when you need it","breadcrumbs":"Smart pointers TODO » Box » Box","id":"230","title":"Box"},"231":{"body":"","breadcrumbs":"Smart pointers TODO » Deref » Deref","id":"231","title":"Deref"},"232":{"body":"","breadcrumbs":"Smart pointers TODO » Drop » Drop","id":"232","title":"Drop"},"233":{"body":"","breadcrumbs":"Smart pointers TODO » Rc and Arc » Rc and Arc","id":"233","title":"Rc and Arc"},"234":{"body":"","breadcrumbs":"Smart pointers TODO » Cell and RefCell » Cell and RefCell","id":"234","title":"Cell and RefCell"},"235":{"body":"","breadcrumbs":"Weak and Circle reference TODO » Weak and Circle reference","id":"235","title":"Weak and Circle reference"},"236":{"body":"","breadcrumbs":"Self referential TODO » Self referential","id":"236","title":"Self referential"},"237":{"body":"","breadcrumbs":"Threads TODO » Threads","id":"237","title":"Threads"},"238":{"body":"","breadcrumbs":"Threads TODO » Basic using » Basic using","id":"238","title":"Basic using"},"239":{"body":"","breadcrumbs":"Threads TODO » Message passing » Message passing","id":"239","title":"Message passing"},"24":{"body":"🌟🌟 Two goals: 1. Modify assert! to make it work 2. Make println! output list of numbers between 97 and 122 fn main() { let mut sum = 0; for i in -3..2 { sum += i } assert!(sum == -3); for c in 'a'..='z' { println!(\"{}\",c); }\n} 🌟🌟 // Fill the blanks\nuse std::ops::{Range, RangeInclusive};\nfn main() { assert_eq!((1..__), Range{ start: 1, end: 5 }); assert_eq!((1..__), RangeInclusive::new(1, 5)); println!(\"Success!\");\n}","breadcrumbs":"Basic Types » Numbers » Range","id":"24","title":"Range"},"240":{"body":"","breadcrumbs":"Threads TODO » Sync » Sync","id":"240","title":"Sync"},"241":{"body":"","breadcrumbs":"Threads TODO » Atomic » Atomic","id":"241","title":"Atomic"},"242":{"body":"","breadcrumbs":"Threads TODO » Send and Sync » Send and Sync","id":"242","title":"Send and Sync"},"243":{"body":"","breadcrumbs":"Global variables TODO » Global variables","id":"243","title":"Global variables"},"244":{"body":"","breadcrumbs":"Errors TODO » Errors","id":"244","title":"Errors"},"245":{"body":"","breadcrumbs":"Unsafe doing » Unsafe todo","id":"245","title":"Unsafe todo"},"246":{"body":"Rust provides support for inline assembly via the asm! macro. It can be used to embed handwritten assembly in the assembly output generated by the compiler. Generally this should not be necessary, but might be where the required performance or timing cannot be otherwise achieved. Accessing low level hardware primitives, e.g. in kernel code, may also demand this functionality. Note : the examples here are given in x86/x86-64 assembly, but other architectures are also supported. Inline assembly is currently supported on the following architectures: x86 and x86-64 ARM AArch64 RISC-V","breadcrumbs":"Unsafe doing » Inline assembly » Inline assembly","id":"246","title":"Inline assembly"},"247":{"body":"Let us start with the simplest possible example: use std::arch::asm; unsafe { asm!(\"nop\");\n} This will insert a NOP (no operation) instruction into the assembly generated by the compiler. Note that all asm! invocations have to be inside an unsafe block, as they could insert arbitrary instructions and break various invariants. The instructions to be inserted are listed in the first argument of the asm! macro as a string literal.","breadcrumbs":"Unsafe doing » Inline assembly » Basic usage","id":"247","title":"Basic usage"},"248":{"body":"Now inserting an instruction that does nothing is rather boring. Let us do something that actually acts on data: use std::arch::asm; let x: u64;\nunsafe { asm!(\"mov {}, 5\", out(reg) x);\n}\nassert_eq!(x, 5); This will write the value 5 into the u64 variable x. You can see that the string literal we use to specify instructions is actually a template string. It is governed by the same rules as Rust format strings . The arguments that are inserted into the template however look a bit different than you may be familiar with. First we need to specify if the variable is an input or an output of the inline assembly. In this case it is an output. We declared this by writing out. We also need to specify in what kind of register the assembly expects the variable. In this case we put it in an arbitrary general purpose register by specifying reg. The compiler will choose an appropriate register to insert into the template and will read the variable from there after the inline assembly finishes executing. Let us see another example that also uses an input: use std::arch::asm; let i: u64 = 3;\nlet o: u64;\nunsafe { asm!( \"mov {0}, {1}\", \"add {0}, 5\", out(reg) o, in(reg) i, );\n}\nassert_eq!(o, 8); This will add 5 to the input in variable i and write the result to variable o. The particular way this assembly does this is first copying the value from i to the output, and then adding 5 to it. The example shows a few things: First, we can see that asm! allows multiple template string arguments; each one is treated as a separate line of assembly code, as if they were all joined together with newlines between them. This makes it easy to format assembly code. Second, we can see that inputs are declared by writing in instead of out. Third, we can see that we can specify an argument number, or name as in any format string. For inline assembly templates this is particularly useful as arguments are often used more than once. For more complex inline assembly using this facility is generally recommended, as it improves readability, and allows reordering instructions without changing the argument order. We can further refine the above example to avoid the mov instruction: use std::arch::asm; let mut x: u64 = 3;\nunsafe { asm!(\"add {0}, 5\", inout(reg) x);\n}\nassert_eq!(x, 8); We can see that inout is used to specify an argument that is both input and output. This is different from specifying an input and output separately in that it is guaranteed to assign both to the same register. It is also possible to specify different variables for the input and output parts of an inout operand: use std::arch::asm; let x: u64 = 3;\nlet y: u64;\nunsafe { asm!(\"add {0}, 5\", inout(reg) x => y);\n}\nassert_eq!(y, 8);","breadcrumbs":"Unsafe doing » Inline assembly » Inputs and outputs","id":"248","title":"Inputs and outputs"},"249":{"body":"The Rust compiler is conservative with its allocation of operands. It is assumed that an out can be written at any time, and can therefore not share its location with any other argument. However, to guarantee optimal performance it is important to use as few registers as possible, so they won't have to be saved and reloaded around the inline assembly block. To achieve this Rust provides a lateout specifier. This can be used on any output that is written only after all inputs have been consumed. There is also a inlateout variant of this specifier. Here is an example where inlateout cannot be used: use std::arch::asm; let mut a: u64 = 4;\nlet b: u64 = 4;\nlet c: u64 = 4;\nunsafe { asm!( \"add {0}, {1}\", \"add {0}, {2}\", inout(reg) a, in(reg) b, in(reg) c, );\n}\nassert_eq!(a, 12); Here the compiler is free to allocate the same register for inputs b and c since it knows they have the same value. However it must allocate a separate register for a since it uses inout and not inlateout. If inlateout was used, then a and c could be allocated to the same register, in which case the first instruction to overwrite the value of c and cause the assembly code to produce the wrong result. However the following example can use inlateout since the output is only modified after all input registers have been read: use std::arch::asm; let mut a: u64 = 4;\nlet b: u64 = 4;\nunsafe { asm!(\"add {0}, {1}\", inlateout(reg) a, in(reg) b);\n}\nassert_eq!(a, 8); As you can see, this assembly fragment will still work correctly if a and b are assigned to the same register.","breadcrumbs":"Unsafe doing » Inline assembly » Late output operands","id":"249","title":"Late output operands"},"25":{"body":"🌟 // Fill the blanks and fix the errors\nfn main() { // Integer addition assert!(1u32 + 2 == __); // Integer subtraction assert!(1i32 - 2 == __); assert!(1u8 - 2 == -1); assert!(3 * 50 == __); assert!(9.6 / 3.2 == 3.0); // error ! make it work assert!(24 % 5 == __); // Short-circuiting boolean logic assert!(true && false == __); assert!(true || false == __); assert!(!true == __); // Bitwise operations println!(\"0011 AND 0101 is {:04b}\", 0b0011u32 & 0b0101); println!(\"0011 OR 0101 is {:04b}\", 0b0011u32 | 0b0101); println!(\"0011 XOR 0101 is {:04b}\", 0b0011u32 ^ 0b0101); println!(\"1 << 5 is {}\", 1u32 << 5); println!(\"0x80 >> 2 is 0x{:x}\", 0x80u32 >> 2);\n} You can find the solutions here (under the solutions path), but only use it when you need it","breadcrumbs":"Basic Types » Numbers » Computations","id":"25","title":"Computations"},"250":{"body":"Some instructions require that the operands be in a specific register. Therefore, Rust inline assembly provides some more specific constraint specifiers. While reg is generally available on any architecture, explicit registers are highly architecture specific. E.g. for x86 the general purpose registers eax, ebx, ecx, edx, ebp, esi, and edi among others can be addressed by their name. use std::arch::asm; let cmd = 0xd1;\nunsafe { asm!(\"out 0x64, eax\", in(\"eax\") cmd);\n} In this example we call the out instruction to output the content of the cmd variable to port 0x64. Since the out instruction only accepts eax (and its sub registers) as operand we had to use the eax constraint specifier. Note : unlike other operand types, explicit register operands cannot be used in the template string: you can't use {} and should write the register name directly instead. Also, they must appear at the end of the operand list after all other operand types. Consider this example which uses the x86 mul instruction: use std::arch::asm; fn mul(a: u64, b: u64) -> u128 { let lo: u64; let hi: u64; unsafe { asm!( // The x86 mul instruction takes rax as an implicit input and writes // the 128-bit result of the multiplication to rax:rdx. \"mul {}\", in(reg) a, inlateout(\"rax\") b => lo, lateout(\"rdx\") hi ); } ((hi as u128) << 64) + lo as u128\n} This uses the mul instruction to multiply two 64-bit inputs with a 128-bit result. The only explicit operand is a register, that we fill from the variable a. The second operand is implicit, and must be the rax register, which we fill from the variable b. The lower 64 bits of the result are stored in rax from which we fill the variable lo. The higher 64 bits are stored in rdx from which we fill the variable hi.","breadcrumbs":"Unsafe doing » Inline assembly » Explicit register operands","id":"250","title":"Explicit register operands"},"251":{"body":"In many cases inline assembly will modify state that is not needed as an output. Usually this is either because we have to use a scratch register in the assembly or because instructions modify state that we don't need to further examine. This state is generally referred to as being \"clobbered\". We need to tell the compiler about this since it may need to save and restore this state around the inline assembly block. use core::arch::asm; fn main() { // three entries of four bytes each let mut name_buf = [0_u8; 12]; // String is stored as ascii in ebx, edx, ecx in order // Because ebx is reserved, we get a scratch register and move from // ebx into it in the asm. The asm needs to preserve the value of // that register though, so it is pushed and popped around the main asm // (in 64 bit mode for 64 bit processors, 32 bit processors would use ebx) unsafe { asm!( \"push rbx\", \"cpuid\", \"mov [{0}], ebx\", \"mov [{0} + 4], edx\", \"mov [{0} + 8], ecx\", \"pop rbx\", // We use a pointer to an array for storing the values to simplify // the Rust code at the cost of a couple more asm instructions // This is more explicit with how the asm works however, as opposed // to explicit register outputs such as `out(\"ecx\") val` // The *pointer itself* is only an input even though it's written behind in(reg) name_buf.as_mut_ptr(), // select cpuid 0, also specify eax as clobbered inout(\"eax\") 0 => _, // cpuid clobbers these registers too out(\"ecx\") _, out(\"edx\") _, ); } let name = core::str::from_utf8(&name_buf).unwrap(); println!(\"CPU Manufacturer ID: {}\", name);\n} In the example above we use the cpuid instruction to read the CPU manufacturer ID. This instruction writes to eax with the maximum supported cpuid argument and ebx, esx, and ecx with the CPU manufacturer ID as ASCII bytes in that order. Even though eax is never read we still need to tell the compiler that the register has been modified so that the compiler can save any values that were in these registers before the asm. This is done by declaring it as an output but with _ instead of a variable name, which indicates that the output value is to be discarded. This code also works around the limitation that ebx is a reserved register by LLVM. That means that LLVM assumes that it has full control over the register and it must be restored to its original state before exiting the asm block, so it cannot be used as an output. To work around this we save the register via push, read from ebx inside the asm block into a temporary register allocated with out(reg) and then restoring ebx to its original state via pop. The push and pop use the full 64-bit rbx version of the register to ensure that the entire register is saved. On 32 bit targets the code would instead use ebx in the push/pop. This can also be used with a general register class (e.g. reg) to obtain a scratch register for use inside the asm code: use std::arch::asm; // Multiply x by 6 using shifts and adds\nlet mut x: u64 = 4;\nunsafe { asm!( \"mov {tmp}, {x}\", \"shl {tmp}, 1\", \"shl {x}, 2\", \"add {x}, {tmp}\", x = inout(reg) x, tmp = out(reg) _, );\n}\nassert_eq!(x, 4 * 6);","breadcrumbs":"Unsafe doing » Inline assembly » Clobbered registers","id":"251","title":"Clobbered registers"},"252":{"body":"By default, asm! assumes that any register not specified as an output will have its contents preserved by the assembly code. The clobber_abi argument to asm! tells the compiler to automatically insert the necessary clobber operands according to the given calling convention ABI: any register which is not fully preserved in that ABI will be treated as clobbered. Multiple clobber_abi arguments may be provided and all clobbers from all specified ABIs will be inserted. use std::arch::asm; extern \"C\" fn foo(arg: i32) -> i32 { println!(\"arg = {}\", arg); arg * 2\n} fn call_foo(arg: i32) -> i32 { unsafe { let result; asm!( \"call *{}\", // Function pointer to call in(reg) foo, // 1st argument in rdi in(\"rdi\") arg, // Return value in rax out(\"rax\") result, // Mark all registers which are not preserved by the \"C\" calling // convention as clobbered. clobber_abi(\"C\"), ); result }\n}","breadcrumbs":"Unsafe doing » Inline assembly » Symbol operands and ABI clobbers","id":"252","title":"Symbol operands and ABI clobbers"},"253":{"body":"In some cases, fine control is needed over the way a register name is formatted when inserted into the template string. This is needed when an architecture's assembly language has several names for the same register, each typically being a \"view\" over a subset of the register (e.g. the low 32 bits of a 64-bit register). By default the compiler will always choose the name that refers to the full register size (e.g. rax on x86-64, eax on x86, etc). This default can be overridden by using modifiers on the template string operands, just like you would with format strings: use std::arch::asm; let mut x: u16 = 0xab; unsafe { asm!(\"mov {0:h}, {0:l}\", inout(reg_abcd) x);\n} assert_eq!(x, 0xabab); In this example, we use the reg_abcd register class to restrict the register allocator to the 4 legacy x86 registers (ax, bx, cx, dx) of which the first two bytes can be addressed independently. Let us assume that the register allocator has chosen to allocate x in the ax register. The h modifier will emit the register name for the high byte of that register and the l modifier will emit the register name for the low byte. The asm code will therefore be expanded as mov ah, al which copies the low byte of the value into the high byte. If you use a smaller data type (e.g. u16) with an operand and forget the use template modifiers, the compiler will emit a warning and suggest the correct modifier to use.","breadcrumbs":"Unsafe doing » Inline assembly » Register template modifiers","id":"253","title":"Register template modifiers"},"254":{"body":"Sometimes assembly instructions require operands passed via memory addresses/memory locations. You have to manually use the memory address syntax specified by the target architecture. For example, on x86/x86_64 using Intel assembly syntax, you should wrap inputs/outputs in [] to indicate they are memory operands: use std::arch::asm; fn load_fpu_control_word(control: u16) { unsafe { asm!(\"fldcw [{}]\", in(reg) &control, options(nostack)); }\n}","breadcrumbs":"Unsafe doing » Inline assembly » Memory address operands","id":"254","title":"Memory address operands"},"255":{"body":"Any reuse of a named label, local or otherwise, can result in an assembler or linker error or may cause other strange behavior. Reuse of a named label can happen in a variety of ways including: explicitly: using a label more than once in one asm! block, or multiple times across blocks. implicitly via inlining: the compiler is allowed to instantiate multiple copies of an asm! block, for example when the function containing it is inlined in multiple places. implicitly via LTO: LTO can cause code from other crates to be placed in the same codegen unit, and so could bring in arbitrary labels. As a consequence, you should only use GNU assembler numeric local labels inside inline assembly code. Defining symbols in assembly code may lead to assembler and/or linker errors due to duplicate symbol definitions. Moreover, on x86 when using the default Intel syntax, due to an LLVM bug , you shouldn't use labels exclusively made of 0 and 1 digits, e.g. 0, 11 or 101010, as they may end up being interpreted as binary values. Using options(att_syntax) will avoid any ambiguity, but that affects the syntax of the entire asm! block. (See Options , below, for more on options.) use std::arch::asm; let mut a = 0;\nunsafe { asm!( \"mov {0}, 10\", \"2:\", \"sub {0}, 1\", \"cmp {0}, 3\", \"jle 2f\", \"jmp 2b\", \"2:\", \"add {0}, 2\", out(reg) a );\n}\nassert_eq!(a, 5); This will decrement the {0} register value from 10 to 3, then add 2 and store it in a. This example shows a few things: First, that the same number can be used as a label multiple times in the same inline block. Second, that when a numeric label is used as a reference (as an instruction operand, for example), the suffixes “b” (“backward”) or ”f” (“forward”) should be added to the numeric label. It will then refer to the nearest label defined by this number in this direction.","breadcrumbs":"Unsafe doing » Inline assembly » Labels","id":"255","title":"Labels"},"256":{"body":"By default, an inline assembly block is treated the same way as an external FFI function call with a custom calling convention: it may read/write memory, have observable side effects, etc. However, in many cases it is desirable to give the compiler more information about what the assembly code is actually doing so that it can optimize better. Let's take our previous example of an add instruction: use std::arch::asm; let mut a: u64 = 4;\nlet b: u64 = 4;\nunsafe { asm!( \"add {0}, {1}\", inlateout(reg) a, in(reg) b, options(pure, nomem, nostack), );\n}\nassert_eq!(a, 8); Options can be provided as an optional final argument to the asm! macro. We specified three options here: pure means that the asm code has no observable side effects and that its output depends only on its inputs. This allows the compiler optimizer to call the inline asm fewer times or even eliminate it entirely. nomem means that the asm code does not read or write to memory. By default the compiler will assume that inline assembly can read or write any memory address that is accessible to it (e.g. through a pointer passed as an operand, or a global). nostack means that the asm code does not push any data onto the stack. This allows the compiler to use optimizations such as the stack red zone on x86-64 to avoid stack pointer adjustments. These allow the compiler to better optimize code using asm!, for example by eliminating pure asm! blocks whose outputs are not needed. See the reference for the full list of available options and their effects.","breadcrumbs":"Unsafe doing » Inline assembly » Options","id":"256","title":"Options"},"257":{"body":"","breadcrumbs":"Macro TODO » macro","id":"257","title":"macro"},"258":{"body":"","breadcrumbs":"Tests TODO » Tests","id":"258","title":"Tests"},"259":{"body":"","breadcrumbs":"Tests TODO » Write Tests » Write Tests","id":"259","title":"Write Tests"},"26":{"body":"","breadcrumbs":"Basic Types » Char, Bool and Unit » Char, Bool and Unit","id":"26","title":"Char, Bool and Unit"},"260":{"body":"https://doc.rust-lang.org/unstable-book/library-features/test.html","breadcrumbs":"Tests TODO » Benchmark » Benchmark","id":"260","title":"Benchmark"},"261":{"body":"","breadcrumbs":"Tests TODO » Unit and Integration » Unit and Integration","id":"261","title":"Unit and Integration"},"262":{"body":"","breadcrumbs":"Tests TODO » Assertions » Assertions","id":"262","title":"Assertions"},"263":{"body":"","breadcrumbs":"Async/Await TODO » Async/Await","id":"263","title":"Async/Await"},"264":{"body":"","breadcrumbs":"Async/Await TODO » async and await! » async and await!","id":"264","title":"async and await!"},"265":{"body":"","breadcrumbs":"Async/Await TODO » Future » Future","id":"265","title":"Future"},"266":{"body":"","breadcrumbs":"Async/Await TODO » Pin and Unpin » Pin and Unpin","id":"266","title":"Pin and Unpin"},"267":{"body":"","breadcrumbs":"Async/Await TODO » Stream » Stream","id":"267","title":"Stream"},"268":{"body":"","breadcrumbs":"Standard Library TODO » Stand Library todo","id":"268","title":"Stand Library todo"},"269":{"body":"","breadcrumbs":"Standard Library TODO » String » String","id":"269","title":"String"},"27":{"body":"🌟 // Make it work\nuse std::mem::size_of_val;\nfn main() { let c1 = 'a'; assert_eq!(size_of_val(&c1),1); let c2 = '中'; assert_eq!(size_of_val(&c2),3); println!(\"Success!\");\n} 🌟 // Make it work\nfn main() { let c1 = \"中\"; print_char(c1);\n} fn print_char(c : char) { println!(\"{}\", c);\n}","breadcrumbs":"Basic Types » Char, Bool and Unit » Char","id":"27","title":"Char"},"270":{"body":"Fighting with compiler is very common in our daily coding, especially for those unfamiliar with Rust. This chapter will provide some exercises to help us avoid such cases to lower the steep learning curve.","breadcrumbs":"Fighting with Compiler » Fighting with Compiler","id":"270","title":"Fighting with Compiler"},"271":{"body":"🌟🌟 // FIX the error without removing any code line\nstruct test { list: Vec<i32>, a: i32\n} impl test { pub fn new() -> Self { test { list:vec![1,2,3,4,5,6,7], a:0 } } pub fn run(&mut self) { for i in self.list.iter() { self.do_something(*i) } } pub fn do_something(&mut self, n: i32) { self.a = n; }\n} fn main() {} You can find the solutions here (under the solutions path), but only use it when you need it :)","breadcrumbs":"Fighting with Compiler » Borrowing » Borrowing","id":"271","title":"Borrowing"},"28":{"body":"🌟 // Make println! work\nfn main() { let _f: bool = false; let t = true; if !t { println!(\"Success!\"); }\n} 🌟 // Make it work\nfn main() { let f = true; let t = true && false; assert_eq!(t, f); println!(\"Success!\");\n}","breadcrumbs":"Basic Types » Char, Bool and Unit » Bool","id":"28","title":"Bool"},"29":{"body":"🌟🌟 // Make it work, don't modify `implicitly_ret_unit` !\nfn main() { let _v: () = (); let v = (2, 3); assert_eq!(v, implicitly_ret_unit()); println!(\"Success!\");\n} fn implicitly_ret_unit() { println!(\"I will return a ()\");\n} // Don't use this one\nfn explicitly_ret_unit() -> () { println!(\"I will return a ()\");\n} 🌟🌟 What's the size of the unit type? // Modify `4` in assert to make it work\nuse std::mem::size_of_val;\nfn main() { let unit: () = (); assert!(size_of_val(&unit) == 4); println!(\"Success!\");\n} You can find the solutions here (under the solutions path), but only use it when you need it","breadcrumbs":"Basic Types » Char, Bool and Unit » Unit type","id":"29","title":"Unit type"},"3":{"body":"Following questions come up weekly in online Rust discussions: I just finished reading The Book, what should I do next ? What projects would you recommend to a Rust beginner? Looking for small projects with an elegant code base Codes that is easy to read and learn The answers to these questions are always Practice : doing some exercises, and then reading some small and excellent Rust projects. This is precisely the goal of this book, so, collecting relative resourses and representing in Rust By Practice seems not a bad idea.","breadcrumbs":"Small projects with Elegant code » Small projects with Elegant code base","id":"3","title":"Small projects with Elegant code base"},"30":{"body":"","breadcrumbs":"Basic Types » Statements and Expressions » Statements and Expressions","id":"30","title":"Statements and Expressions"},"31":{"body":"fn main() { let x = 5u32; let y = { let x_squared = x * x; let x_cube = x_squared * x; // This expression will be assigned to `y` x_cube + x_squared + x }; let z = { // The semicolon suppresses this expression and `()` is assigned to `z` 2 * x; }; println!(\"x is {:?}\", x); println!(\"y is {:?}\", y); println!(\"z is {:?}\", z);\n}","breadcrumbs":"Basic Types » Statements and Expressions » Examples","id":"31","title":"Examples"},"32":{"body":"🌟🌟 // Make it work with two ways\nfn main() { let v = { let mut x = 1; x += 2 }; assert_eq!(v, 3); println!(\"Success!\");\n} 🌟 fn main() { let v = (let x = 3); assert!(v == 3); println!(\"Success!\");\n} 🌟 fn main() { let s = sum(1 , 2); assert_eq!(s, 3); println!(\"Success!\");\n} fn sum(x: i32, y: i32) -> i32 { x + y\n} You can find the solutions here (under the solutions path), but only use it when you need it","breadcrumbs":"Basic Types » Statements and Expressions » Exercises","id":"32","title":"Exercises"},"33":{"body":"🌟🌟🌟 fn main() { // Don't modify the following two lines! let (x, y) = (1, 2); let s = sum(x, y); assert_eq!(s, 3); println!(\"Success!\");\n} fn sum(x, y: i32) { x + y;\n} 🌟 fn main() { print();\n} // Replace i32 with another type\nfn print() -> i32 { println!(\"Success!\");\n} 🌟🌟🌟 // Solve it in two ways\n// DON'T let `println!` work\nfn main() { never_return(); println!(\"Failed!\");\n} fn never_return() -> ! { // Implement this function, don't modify the fn signatures }","breadcrumbs":"Basic Types » Functions » Functions","id":"33","title":"Functions"},"34":{"body":"Diverging functions never return to the caller, so they may be used in places where a value of any type is expected. 🌟🌟 fn main() { println!(\"Success!\");\n} fn get_option(tp: u8) -> Option<i32> { match tp { 1 => { // TODO } _ => { // TODO } }; // Rather than returning a None, we use a diverging function instead never_return_fn()\n} // IMPLEMENT this function in THREE ways\nfn never_return_fn() -> ! { } 🌟🌟 fn main() { // FILL in the blank let b = __; let _v = match b { true => 1, // Diverging functions can also be used in match expression to replace a value of any value false => { println!(\"Success!\"); panic!(\"we have no value for `false`, but we can panic\"); } }; println!(\"Exercise Failed if printing out this line!\");\n} You can find the solutions here (under the solutions path), but only use it when you need it","breadcrumbs":"Basic Types » Functions » Diverging functions","id":"34","title":"Diverging functions"},"35":{"body":"Learning resources: English: Rust Book 4.1-4.4 简体中文: Rust语言圣经 - 所有权与借用","breadcrumbs":"Ownership and Borrowing » Ownership and Borrowing","id":"35","title":"Ownership and Borrowing"},"36":{"body":"🌟🌟 fn main() { // Use as many approaches as you can to make it work let x = String::from(\"Hello world\"); let y = x; println!(\"{}, {}\",x, y);\n} 🌟🌟 // Don't modify code in main!\nfn main() { let s1 = String::from(\"Hello world\"); let s2 = take_ownership(s1); println!(\"{}\", s2);\n} // Only modify the code below!\nfn take_ownership(s: String) { println!(\"{}\", s);\n} 🌟🌟 fn main() { let s = give_ownership(); println!(\"{}\", s);\n} // Only modify the code below!\nfn give_ownership() -> String { let s = String::from(\"Hello world\"); // Convert String to Vec let _s = s.into_bytes(); s\n} 🌟🌟 // Fix the error without removing any code\nfn main() { let s = String::from(\"Hello World\"); print_str(s); println!(\"{}\", s);\n} fn print_str(s: String) { println!(\"{}\",s)\n} 🌟🌟 // Don't use clone ,use copy instead\nfn main() { let x = (1, 2, (), \"hello\".to_string()); let y = x.clone(); println!(\"{:?}, {:?}\", x, y);\n} Mutability Mutability can be changed when ownership is transferred. 🌟 // make the necessary variable mutable\nfn main() { let s = String::from(\"Hello \"); let s1 = s; s1.push_str(\"World!\"); println!(\"Success!\");\n} 🌟🌟🌟 fn main() { let x = Box::new(5); let ... // update this line, don't change other lines! *y = 4; assert_eq!(*x, 5); println!(\"Success!\");\n}","breadcrumbs":"Ownership and Borrowing » Ownership » Ownership","id":"36","title":"Ownership"},"37":{"body":"Within the destructuring of a single variable, both by-move and by-reference pattern bindings can be used at the same time. Doing this will result in a partial move of the variable, which means that parts of the variable will be moved while other parts stay. In such a case, the parent variable cannot be used afterwards as a whole, however the parts that are only referenced (and not moved) can still be used. Example fn main() { #[derive(Debug)] struct Person { name: String, age: Box<u8>, } let person = Person { name: String::from(\"Alice\"), age: Box::new(20), }; // `name` is moved out of person, but `age` is referenced let Person { name, ref age } = person; println!(\"The person's age is {}\", age); println!(\"The person's name is {}\", name); // Error! borrow of partially moved value: `person` partial move occurs //println!(\"The person struct is {:?}\", person); // `person` cannot be used but `person.age` can be used as it is not moved println!(\"The person's age from person struct is {}\", person.age);\n} Exercises 🌟 fn main() { let t = (String::from(\"hello\"), String::from(\"world\")); let _s = t.0; // Modify this line only, don't use `_s` println!(\"{:?}\", t);\n} 🌟🌟 fn main() { let t = (String::from(\"hello\"), String::from(\"world\")); // Fill the blanks let (__, __) = __; println!(\"{:?}, {:?}, {:?}\", s1, s2, t); // -> \"hello\", \"world\", (\"hello\", \"world\")\n} You can find the solutions here (under the solutions path), but only use it when you need it","breadcrumbs":"Ownership and Borrowing » Ownership » Partial move","id":"37","title":"Partial move"},"38":{"body":"","breadcrumbs":"Ownership and Borrowing » Reference and Borrowing » Reference and Borrowing","id":"38","title":"Reference and Borrowing"},"39":{"body":"🌟 fn main() { let x = 5; // Fill the blank let p = __; println!(\"the memory address of x is {:p}\", p); // One possible output: 0x16fa3ac84\n} 🌟 fn main() { let x = 5; let y = &x; // Modify this line only assert_eq!(5, y); println!(\"Success!\");\n} 🌟 // Fix error\nfn main() { let mut s = String::from(\"hello, \"); borrow_object(s); println!(\"Success!\");\n} fn borrow_object(s: &String) {} 🌟 // Fix error\nfn main() { let mut s = String::from(\"hello, \"); push_str(s); println!(\"Success!\");\n} fn push_str(s: &mut String) { s.push_str(\"world\")\n} 🌟🌟 fn main() { let mut s = String::from(\"hello, \"); // Fill the blank to make it work let p = __; p.push_str(\"world\"); println!(\"Success!\");\n} Ref ref can be used to take references to a value, similar to &. 🌟🌟🌟 fn main() { let c = '中'; let r1 = &c; // Fill the blankdont change other code let __ r2 = c; assert_eq!(*r1, *r2); // Check the equality of the two address strings assert_eq!(get_addr(r1),get_addr(r2)); println!(\"Success!\");\n} // Get memory address string\nfn get_addr(r: &char) -> String { format!(\"{:p}\", r)\n}","breadcrumbs":"Ownership and Borrowing » Reference and Borrowing » Reference","id":"39","title":"Reference"},"4":{"body":"Answers for above questions usually came with ripgrep , though I don't think it is a small project, but yes, go for it if you are not afraid to delve deep a bit.","breadcrumbs":"Small projects with Elegant code » 1. Ripgrep","id":"4","title":"1. Ripgrep"},"40":{"body":"🌟 // Remove something to make it work\n// Don't remove a whole line !\nfn main() { let mut s = String::from(\"hello\"); let r1 = &mut s; let r2 = &mut s; println!(\"{}, {}\", r1, r2); println!(\"Success!\");\n} Mutability 🌟 Error: Borrow an immutable object as mutable fn main() { // Fix error by modifying this line let s = String::from(\"hello, \"); borrow_object(&mut s); println!(\"Success!\");\n} fn borrow_object(s: &mut String) {} 🌟🌟 Ok: Borrow a mutable object as immutable // This code has no errors!\nfn main() { let mut s = String::from(\"hello, \"); borrow_object(&s); s.push_str(\"world\"); println!(\"Success!\");\n} fn borrow_object(s: &String) {}","breadcrumbs":"Ownership and Borrowing » Reference and Borrowing » Borrowing rules","id":"40","title":"Borrowing rules"},"41":{"body":"🌟🌟 // Comment one line to make it work\nfn main() { let mut s = String::from(\"hello, \"); let r1 = &mut s; r1.push_str(\"world\"); let r2 = &mut s; r2.push_str(\"!\"); println!(\"{}\",r1);\n} 🌟🌟 fn main() { let mut s = String::from(\"hello, \"); let r1 = &mut s; let r2 = &mut s; // Add one line below to make a compiler error: cannot borrow `s` as mutable more than once at a time // You can't use r1 and r2 at the same time\n} You can find the solutions here (under the solutions path), but only use it when you need it","breadcrumbs":"Ownership and Borrowing » Reference and Borrowing » NLL","id":"41","title":"NLL"},"42":{"body":"Learning resources: English: Rust Book 4.3, 5.1, 6.1, 8.2 简体中文: Rust语言圣经 - 复合类型","breadcrumbs":"Compound Types » Compound Types","id":"42","title":"Compound Types"},"43":{"body":"The type of string literal \"hello, world\" is &str, e.g let s: &str = \"hello, world\".","breadcrumbs":"Compound Types » string » String","id":"43","title":"String"},"44":{"body":"🌟 We can't use str type in normal ways, but we can use &str. // Fix error without adding new line\nfn main() { let s: str = \"hello, world\"; println!(\"Success!\");\n} 🌟🌟 We can only use str by boxing it, & can be used to convert Box<str> to &str // Fix the error with at least two solutions\nfn main() { let s: Box<str> = \"hello, world\".into(); greetings(s)\n} fn greetings(s: &str) { println!(\"{}\",s)\n}","breadcrumbs":"Compound Types » string » Str and &str","id":"44","title":"Str and &str"},"45":{"body":"String type is defined in std and stored as a vector of bytes (Vec), but guaranteed to always be a valid UTF-8 sequence. String is heap allocated, growable and not null terminated. 🌟 // Fill the blank\nfn main() { let mut s = __; s.push_str(\"hello, world\"); s.push('!'); assert_eq!(s, \"hello, world!\"); println!(\"Success!\");\n} 🌟🌟🌟 // Fix all errors without adding newline\nfn main() { let s = String::from(\"hello\"); s.push(','); s.push(\" world\"); s += \"!\".to_string(); println!(\"{}\", s);\n} 🌟🌟 replace can be used to replace substring // Fill the blank\nfn main() { let s = String::from(\"I like dogs\"); // Allocate new memory and store the modified string there let s1 = s.__(\"dogs\", \"cats\"); assert_eq!(s1, \"I like cats\"); println!(\"Success!\");\n} More String methods can be found under String module. 🌟🌟 You can only concat a String with &str, and String's ownership can be moved to another variable. // Fix errors without removing any line\nfn main() { let s1 = String::from(\"hello,\"); let s2 = String::from(\"world!\"); let s3 = s1 + s2; assert_eq!(s3, \"hello,world!\"); println!(\"{}\", s1);\n}","breadcrumbs":"Compound Types » string » String","id":"45","title":"String"},"46":{"body":"Opposite to the seldom using of str, &str and String are used everywhere! 🌟🌟 &str can be converted to String in two ways // Fix error with at least two solutions\nfn main() { let s = \"hello, world\"; greetings(s)\n} fn greetings(s: String) { println!(\"{}\", s)\n} 🌟🌟 We can use String::from or to_string to convert a &str to String // Use two approaches to fix the error and without adding a new line\nfn main() { let s = \"hello, world\".to_string(); let s1: &str = s; println!(\"Success!\");\n}","breadcrumbs":"Compound Types » string » &str and String","id":"46","title":"&str and String"},"47":{"body":"🌟 fn main() { // You can use escapes to write bytes by their hexadecimal values // Fill the blank below to show \"I'm writing Rust\" let byte_escape = \"I'm writing Ru\\x73__!\"; println!(\"What are you doing\\x3F (\\\\x3F means ?) {}\", byte_escape); // ...Or Unicode code points. let unicode_codepoint = \"\\u{211D}\"; let character_name = \"\\\"DOUBLE-STRUCK CAPITAL R\\\"\"; println!(\"Unicode character {} (U+211D) is called {}\", unicode_codepoint, character_name ); let long_string = \"String literals can span multiple lines. The linebreak and indentation here \\ can be escaped too!\"; println!(\"{}\", long_string);\n} 🌟🌟🌟 Sometimes there are just too many characters that need to be escaped or it's just much more convenient to write a string out as-is. This is where raw string literals come into play. /* Fill in the blank and fix the errors */\nfn main() { let raw_str = r\"Escapes don't work here: \\x3F \\u{211D}\"; // Modify above line to make it work assert_eq!(raw_str, \"Escapes don't work here: ? \"); // If you need quotes in a raw string, add a pair of #s let quotes = r#\"And then I said: \"There is no escape!\"\"#; println!(\"{}\", quotes); // If you need \"# in your string, just use more #s in the delimiter. // You can use up to 65535 #s. let delimiter = r###\"A string with \"# in it. And even \"##!\"###; println!(\"{}\", delimiter); // Fill the blank let long_delimiter = __; assert_eq!(long_delimiter, \"Hello, \\\"##\\\"\"); println!(\"Success!\");\n}","breadcrumbs":"Compound Types » string » String escapes","id":"47","title":"String escapes"},"48":{"body":"Want a string that's not UTF-8? (Remember, str and String must be valid UTF-8). Or maybe you want an array of bytes that's mostly text? Byte strings to the rescue! Example : use std::str; fn main() { // Note that this is not actually a `&str` let bytestring: &[u8; 21] = b\"this is a byte string\"; // Byte arrays don't have the `Display` trait, so printing them is a bit limited println!(\"A byte string: {:?}\", bytestring); // Byte strings can have byte escapes... let escaped = b\"\\x52\\x75\\x73\\x74 as bytes\"; // ...But no unicode escapes // let escaped = b\"\\u{211D} Is not allowed\"; println!(\"Some escaped bytes: {:?}\", escaped); // Raw byte strings work just like raw strings let raw_bytestring = br\"\\u{211D} is not escaped here\"; println!(\"{:?}\", raw_bytestring); // Converting a byte array to `str` can fail if let Ok(my_str) = str::from_utf8(raw_bytestring) { println!(\"And the same as text: '{}'\", my_str); } let _quotes = br#\"You can also use \"fancier\" formatting, \\ like with normal raw strings\"#; // Byte strings don't have to be UTF-8 let shift_jis = b\"\\x82\\xe6\\x82\\xa8\\x82\\xb1\\x82\\xbb\"; // \"ようこそ\" In SHIFT-JIS // But then they can't always be converted to `str` match str::from_utf8(shift_jis) { Ok(my_str) => println!(\"Conversion successful: '{}'\", my_str), Err(e) => println!(\"Conversion failed: {:?}\", e), };\n} A more detailed listing of the ways to write string literals and escape characters is given in the 'Tokens' chapter of the Rust Reference.","breadcrumbs":"Compound Types » string » Byte string","id":"48","title":"Byte string"},"49":{"body":"🌟🌟🌟 You can't use index to access a char in a string, but you can use slice &s1[start..end]. fn main() { let s1 = String::from(\"hi,中国\"); let h = s1[0]; // Modify this line to fix the error, tips: `h` only takes 1 byte in UTF8 format assert_eq!(h, \"h\"); let h1 = &s1[3..5]; // Modify this line to fix the error, tips: `中` takes 3 bytes in UTF8 format assert_eq!(h1, \"中\"); println!(\"Success!\");\n}","breadcrumbs":"Compound Types » string » String index","id":"49","title":"String index"},"5":{"body":"Tutorial https://www.flenker.blog/hecto/ will lead you to build a text editor from scratch.","breadcrumbs":"Small projects with Elegant code » 2. Building a text editor","id":"5","title":"2. Building a text editor"},"50":{"body":"🌟 fn main() { // Fill the blank to print each char in \"你好,世界\" for c in \"你好,世界\".__ { println!(\"{}\", c) }\n} utf8_slice You can use utf8_slice to slice UTF8 string, it can index chars instead of bytes. Example use utf8_slice;\nfn main() { let s = \"The 🚀 goes to the 🌑!\"; let rocket = utf8_slice::slice(s, 4, 5); // Will equal \"🚀\"\n} You can find the solutions here (under the solutions path), but only use it when you need it","breadcrumbs":"Compound Types » string » Operate on UTF8 string","id":"50","title":"Operate on UTF8 string"},"51":{"body":"The type of array is [T; Length], as you can see, array's length is part of their type signature. So their length must be known at compile time. For example, you cant initialize an array like below: fn init_arr(n: i32) { let arr = [1; n];\n} This will cause an error, because the compiler has no idea of the exact size of the array at compile time. 🌟 fn main() { // Fill the blank with proper array type let arr: __ = [1, 2, 3, 4, 5]; // Modify the code below to make it work assert!(arr.len() == 4); println!(\"Success!\");\n} 🌟🌟 fn main() { // We can ignore parts of the array type or even the whole type, let the compiler infer it for us let arr0 = [1, 2, 3]; let arr: [_; 3] = ['a', 'b', 'c']; // Fill the blank // Arrays are stack allocated, `std::mem::size_of_val` returns the bytes which an array occupies // A char takes 4 bytes in Rust: Unicode char assert!(std::mem::size_of_val(&arr) == __); println!(\"Success!\");\n} 🌟 All elements in an array can be initialized to the same value at once. fn main() { // Fill the blank let list: [i32; 100] = __ ; assert!(list[0] == 1); assert!(list.len() == 100); println!(\"Success!\");\n} 🌟 All elements in an array must be of the same type fn main() { // Fix the error let _arr = [1, 2, '3']; println!(\"Success!\");\n} 🌟 Indexing starts at 0. fn main() { let arr = ['a', 'b', 'c']; let ele = arr[1]; // Only modify this line to make the code work! assert!(ele == 'a'); println!(\"Success!\");\n} 🌟 Out of bounds indexing causes panic. // Fix the error\nfn main() { let names = [String::from(\"Sunfei\"), \"Sunface\".to_string()]; // `Get` returns an Option<&T>, it's safe to use let name0 = names.get(0).unwrap(); // But indexing is not safe let _name1 = &names[2]; println!(\"Success!\");\n} You can find the solutions here (under the solutions path), but only use it when you need it","breadcrumbs":"Compound Types » Array » Array","id":"51","title":"Array"},"52":{"body":"Slices are similar to arrays, but their length is not known at compile time, so you can't use slice directly. 🌟🌟 Here, both [i32] and str are slice types, but directly using it will cause errors. You have to use the reference of the slice instead: &[i32], &str. // Fix the errors, DON'T add new lines!\nfn main() { let arr = [1, 2, 3]; let s1: [i32] = arr[0..2]; let s2: str = \"hello, world\" as str; println!(\"Success!\");\n} A slice reference is a two-word object, for simplicity reasons, from now on we will use slice instead of slice reference. The first word is a pointer to the data, and the second word is the length of the slice. The word size is the same as usize, determined by the processor architecture, e.g. 64 bits on an x86-64. Slices can be used to borrow a section of an array, and have the type signature &[T]. 🌟🌟🌟 fn main() { let arr: [char; 3] = ['中', '国', '人']; let slice = &arr[..2]; // Modify '8' to make it work // TIPS: slice( reference ) IS NOT an array, if it is an array, then `assert!` will be passed: Each of the two chars '中' and '国' occupies 4 bytes, 2 * 4 = 8 assert!(std::mem::size_of_val(&slice) == 8); println!(\"Success!\");\n} 🌟🌟 fn main() { let arr: [i32; 5] = [1, 2, 3, 4, 5]; // Fill the blanks to make the code work let slice: __ = __; assert_eq!(slice, &[2, 3, 4]); println!(\"Success!\");\n}","breadcrumbs":"Compound Types » Slice » Slice","id":"52","title":"Slice"},"53":{"body":"🌟 fn main() { let s = String::from(\"hello\"); let slice1 = &s[0..2]; // Fill the blank to make the code work, DON'T USE 0..2 again let slice2 = &s[__]; assert_eq!(slice1, slice2); println!(\"Success!\");\n} 🌟 fn main() { let s = \"你好,世界\"; // Modify this line to make the code work let slice = &s[0..2]; assert!(slice == \"你\"); println!(\"Success!\");\n} 🌟🌟 &String can be implicitly converted into &str. // Fix errors\nfn main() { let mut s = String::from(\"hello world\"); // Here, &s is `&String` type, but `first_letter` needs a `&str` type. // It works because `&String` can be implicitly converted to `&str. If you want to know more, this is called `Deref coercion`. let letter = first_letter(&s); s.clear(); // error! println!(\"the first letter is: {}\", letter);\n}\nfn first_letter(s: &str) -> &str { &s[..1]\n} You can find the solutions here (under the solutions path), but only use it when you need it","breadcrumbs":"Compound Types » Slice » String slices","id":"53","title":"String slices"},"54":{"body":"🌟 Elements in a tuple can have different types. Tuple's type signature is (T1, T2, ...), where T1, T2 are the types of tuple's members. fn main() { let _t0: (u8,i16) = (0, -1); // Tuples can be tuple's members let _t1: (u8, (i16, u32)) = (0, (-1, 1)); // Fill the blanks to make the code work let t: (u8, __, i64, __, __) = (1u8, 2u16, 3i64, \"hello\", String::from(\", world\")); println!(\"Success!\");\n} 🌟 Members can be extracted from the tuple using indexing. // Make it work\nfn main() { let t = (\"i\", \"am\", \"sunface\"); assert_eq!(t.1, \"sunface\"); println!(\"Success!\");\n} 🌟 Long tuples cannot be printed // Fix the error\nfn main() { let too_long_tuple = (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13); println!(\"too long tuple: {:?}\", too_long_tuple);\n} 🌟 Destructuring tuple with pattern. fn main() { let tup = (1, 6.4, \"hello\"); // Fill the blank to make the code work let __ = tup; assert_eq!(x, 1); assert_eq!(y, \"hello\"); assert_eq!(z, 6.4); println!(\"Success!\");\n} 🌟🌟 Destructure assignments. fn main() { let (x, y, z); // Fill the blank __ = (1, 2, 3); assert_eq!(x, 3); assert_eq!(y, 1); assert_eq!(z, 2); println!(\"Success!\");\n} 🌟🌟 Tuples can be used as function arguments and return values fn main() { // Fill the blank, need a few computations here. let (x, y) = sum_multiply(__); assert_eq!(x, 5); assert_eq!(y, 6); println!(\"Success!\");\n} fn sum_multiply(nums: (i32, i32)) -> (i32, i32) { (nums.0 + nums.1, nums.0 * nums.1)\n} You can find the solutions here (under the solutions path), but only use it when you need it","breadcrumbs":"Compound Types » Tuple » Tuple","id":"54","title":"Tuple"},"55":{"body":"","breadcrumbs":"Compound Types » Struct » Struct","id":"55","title":"Struct"},"56":{"body":"🌟 We must specify concrete values for each of the fields in struct. // Fix the error\nstruct Person { name: String, age: u8, hobby: String\n}\nfn main() { let age = 30; let p = Person { name: String::from(\"sunface\"), age, }; println!(\"Success!\");\n} 🌟 Unit struct don't have any fields. It can be useful when you need to implement a trait on some type but dont have any data that you want to store in the type itself. struct Unit;\ntrait SomeTrait { // ...Some behaviors defined here.\n} // We don't care about what fields are in the Unit, but we care about its behaviors.\n// So we use a struct with no fields and implement some behaviors for it\nimpl SomeTrait for Unit { }\nfn main() { let u = Unit; do_something_with_unit(u); println!(\"Success!\");\n} // Fill the blank to make the code work\nfn do_something_with_unit(u: __) { } 🌟🌟🌟 Tuple struct looks similar to tuples, it has added meaning the struct name provides but has no named fields. It's useful when you want to give the whole tuple a name, but don't care about the fields's names. // Fix the error and fill the blanks\nstruct Color(i32, i32, i32);\nstruct Point(i32, i32, i32);\nfn main() { let v = Point(__, __, __); check_color(v); println!(\"Success!\");\n} fn check_color(p: Color) { let (x, _, _) = p; assert_eq!(x, 0); assert_eq!(p.1, 127); assert_eq!(__, 255); }","breadcrumbs":"Compound Types » Struct » The types of structs","id":"56","title":"The types of structs"},"57":{"body":"🌟 You can make a whole struct mutable when instantiating it, but Rust doesn't allow us to mark only certain fields as mutable. // Fill the blank and fix the error without adding/removing new line\nstruct Person { name: String, age: u8,\n}\nfn main() { let age = 18; let p = Person { name: String::from(\"sunface\"), age, }; // How can you believe sunface is only 18? p.age = 30; // Fill the blank __ = String::from(\"sunfei\"); println!(\"Success!\");\n} 🌟 Using field init shorthand syntax to reduce repetitions. // Fill the blank\nstruct Person { name: String, age: u8,\n}\nfn main() { println!(\"Success!\");\n} fn build_person(name: String, age: u8) -> Person { Person { age, __ }\n} 🌟 You can create instance from other instance with struct update syntax // Fill the blank to make the code work\nstruct User { active: bool, username: String, email: String, sign_in_count: u64,\n}\nfn main() { let u1 = User { email: String::from(\"someone@example.com\"), username: String::from(\"sunface\"), active: true, sign_in_count: 1, }; let u2 = set_email(u1); println!(\"Success!\");\n} fn set_email(u: User) -> User { User { email: String::from(\"contact@im.dev\"), __ }\n}","breadcrumbs":"Compound Types » Struct » Operating on structs","id":"57","title":"Operating on structs"},"58":{"body":"🌟🌟 We can use #[derive(Debug)] to make a struct printable . // Fill the blanks to make the code work\n#[__]\nstruct Rectangle { width: u32, height: u32,\n} fn main() { let scale = 2; let rect1 = Rectangle { width: dbg!(30 * scale), // Print debug info to stderr and assign the value of `30 * scale` to `width` height: 50, }; dbg!(&rect1); // Print debug info to stderr println!(__, rect1); // Print debug info to stdout\n}","breadcrumbs":"Compound Types » Struct » Print the structs","id":"58","title":"Print the structs"},"59":{"body":"Within the destructuring of a single variable, both by-move and by-reference pattern bindings can be used at the same time. Doing this will result in a partial move of the variable, which means that parts of the variable will be moved while other parts stay. In such a case, the parent variable cannot be used afterwards as a whole, however the parts that are only referenced (and not moved) can still be used. Example fn main() { #[derive(Debug)] struct Person { name: String, age: Box<u8>, } let person = Person { name: String::from(\"Alice\"), age: Box::new(20), }; // `name` is moved out of person, but `age` is referenced let Person { name, ref age } = person; println!(\"The person's age is {}\", age); println!(\"The person's name is {}\", name); // Error! borrow of partially moved value: `person` partial move occurs //println!(\"The person struct is {:?}\", person); // `person` cannot be used but `person.age` can be used as it is not moved println!(\"The person's age from person struct is {}\", person.age);\n} Exercises 🌟🌟 // Fix errors to make it work\n#[derive(Debug)]\nstruct File { name: String, data: String,\n}\nfn main() { let f = File { name: String::from(\"readme.md\"), data: \"Rust By Practice\".to_string() }; let _name = f.name; // ONLY modify this line println!(\"{}, {}, {:?}\",f.name, f.data, f);\n} You can find the solutions here (under the solutions path), but only use it when you need it","breadcrumbs":"Compound Types » Struct » Partial move","id":"59","title":"Partial move"},"6":{"body":"Ncspot , a terminal Spotify client. Small, simple, well organized and async, it's good for learning.","breadcrumbs":"Small projects with Elegant code » 3. Ncspot","id":"6","title":"3. Ncspot"},"60":{"body":"🌟🌟 Enums can be created with explicit discriminator. // Fix the errors\nenum Number { Zero, One, Two,\n} enum Number1 { Zero = 0, One, Two,\n} // C-like enum\nenum Number2 { Zero = 0.0, One = 1.0, Two = 2.0,\n} fn main() { // An enum variant can be converted to a integer by `as` assert_eq!(Number::One, Number1::One); assert_eq!(Number1::One, Number2::One); println!(\"Success!\");\n} 🌟 Each enum variant can hold its own data. // Fill in the blank\nenum Message { Quit, Move { x: i32, y: i32 }, Write(String), ChangeColor(i32, i32, i32),\n} fn main() { let msg1 = Message::Move{__}; // Instantiating with x = 1, y = 2 let msg2 = Message::Write(__); // Instantiating with \"hello, world!\" println!(\"Success!\");\n} 🌟🌟 We can get the data which an enum variant is holding by pattern match. // Fill in the blank and fix the error\nenum Message { Quit, Move { x: i32, y: i32 }, Write(String), ChangeColor(i32, i32, i32),\n} fn main() { let msg = Message::Move{x: 1, y: 2}; if let Message::Move{__} = msg { assert_eq!(a, b); } else { panic!(\"NEVER LET THIS RUN\"); } println!(\"Success!\");\n} 🌟🌟 // Fill in the blank and fix the errors\nenum Message { Quit, Move { x: i32, y: i32 }, Write(String), ChangeColor(i32, i32, i32),\n} fn main() { let msgs: __ = [ Message::Quit, Message::Move{x:1, y:3}, Message::ChangeColor(255,255,0) ]; for msg in msgs { show_message(msg) }\n} fn show_message(msg: Message) { println!(\"{}\", msg);\n} 🌟🌟 Since there is no null in Rust, we have to use enum Option<T> to deal with the cases when the value is absent. // Fill in the blank to make the `println` work.\n// Also add some code to prevent the `panic` from running.\nfn main() { let five = Some(5); let six = plus_one(five); let none = plus_one(None); if let __ = six { println!(\"{}\", n); println!(\"Success!\"); } panic!(\"NEVER LET THIS RUN\");\n} fn plus_one(x: Option<i32>) -> Option<i32> { match x { __ => None, __ => Some(i + 1), }\n} 🌟🌟🌟🌟 Implement a linked-list via enums. use crate::List::*; enum List { // Cons: Tuple struct that wraps an element and a pointer to the next node Cons(u32, Box<List>), // Nil: A node that signifies the end of the linked list Nil,\n} // Methods can be attached to an enum\nimpl List { // Create an empty list fn new() -> List { // `Nil` has type `List` Nil } // Consume a list, and return the same list with a new element at its front fn prepend(self, elem: u32) -> __ { // `Cons` also has type List Cons(elem, Box::new(self)) } // Return the length of the list fn len(&self) -> u32 { // `self` has to be matched, because the behavior of this method // depends on the variant of `self` // `self` has type `&List`, and `*self` has type `List`, matching on a // concrete type `T` is preferred over a match on a reference `&T` // After Rust 2018 you can use self here and tail (with no ref) below as well, // rust will infer &s and ref tail. // See https://doc.rust-lang.org/edition-guide/rust-2018/ownership-and-lifetimes/default-match-bindings.html match *self { // Can't take ownership of the tail, because `self` is borrowed; // Instead take a reference to the tail Cons(_, ref tail) => 1 + tail.len(), // Base Case: An empty list has zero length Nil => 0 } } // Return representation of the list as a (heap allocated) string fn stringify(&self) -> String { match *self { Cons(head, __ tail) => { // `format!` is similar to `print!`, but returns a heap // allocated string instead of printing to the console format!(\"{}, {}\", head, tail.__()) }, Nil => { format!(\"Nil\") }, } }\n} fn main() { // Create an empty linked list let mut list = List::new(); // Prepend some elements list = list.prepend(1); list = list.prepend(2); list = list.prepend(3); // Show the final state of the list println!(\"linked list has length: {}\", list.len()); println!(\"{}\", list.stringify());\n} You can find the solutions here (under the solutions path), but only use it when you need it","breadcrumbs":"Compound Types » Enum » Enum","id":"60","title":"Enum"},"61":{"body":"","breadcrumbs":"Flow Control » Flow control","id":"61","title":"Flow control"},"62":{"body":"🌟 // Fill in the blanks\nfn main() { let n = 5; if n < 0 { println!(\"{} is negative\", n); } __ n > 0 { println!(\"{} is positive\", n); } __ { println!(\"{} is zero\", n); }\n} 🌟🌟 If/else expression can be used in assignments. // Fix the errors\nfn main() { let n = 5; let big_n = if n < 10 && n > -10 { println!(\", and is a small number, increase ten-fold\"); 10 * n } else { println!(\", and is a big number, halve the number\"); n / 2.0 ; } println!(\"{} -> {}\", n, big_n);\n}","breadcrumbs":"Flow Control » If/else","id":"62","title":"If/else"},"63":{"body":"🌟 The for in construct can be used to iterate through an Iterator, e.g a range a..b. fn main() { for n in 1..=100 { // modify this line to make the code work if n == 100 { panic!(\"NEVER LET THIS RUN\") } } println!(\"Success!\");\n} 🌟🌟 // Fix the errors without adding or removing lines\nfn main() { let names = [String::from(\"liming\"),String::from(\"hanmeimei\")]; for name in names { // Do something with name... } println!(\"{:?}\", names); let numbers = [1, 2, 3]; // The elements in numbers are Copyso there is no move here for n in numbers { // Do something with n... } println!(\"{:?}\", numbers);\n} 🌟 fn main() { let a = [4, 3, 2, 1]; // Iterate the indexing and value in 'a' for (i,v) in a.__ { println!(\"The {}th element is {}\",i+1,v); }\n}","breadcrumbs":"Flow Control » For","id":"63","title":"For"},"64":{"body":"🌟🌟 The while keyword can be used to run a loop when a condition is true. // Fill in the blanks to make the last println! work !\nfn main() { // A counter variable let mut n = 1; // Loop while the condition is true while n __ 10 { if n % 15 == 0 { println!(\"fizzbuzz\"); } else if n % 3 == 0 { println!(\"fizz\"); } else if n % 5 == 0 { println!(\"buzz\"); } else { println!(\"{}\", n); } __; } println!(\"n reached {}, so loop is over\",n);\n}","breadcrumbs":"Flow Control » While","id":"64","title":"While"},"65":{"body":"🌟 Use break to break the loop. // Fill in the blank\nfn main() { let mut n = 0; for i in 0..=100 { if n == 66 { __ } n += 1; } assert_eq!(n, 66); println!(\"Success!\");\n} 🌟🌟 continue will skip over the remaining code in current iteration and go to the next iteration. // Fill in the blanks\nfn main() { let mut n = 0; for i in 0..=100 { if n != 66 { n+=1; __; } __ } assert_eq!(n, 66); println!(\"Success!\");\n}","breadcrumbs":"Flow Control » Continue and break","id":"65","title":"Continue and break"},"66":{"body":"🌟🌟 Loop is usually used together with break or continue. // Fill in the blanks\nfn main() { let mut count = 0u32; println!(\"Let's count until infinity!\"); // Infinite loop loop { count += 1; if count == 3 { println!(\"three\"); // Skip the rest of this iteration __; } println!(\"{}\", count); if count == 5 { println!(\"OK, that's enough\"); __; } } assert_eq!(count, 5); println!(\"Success!\");\n} 🌟🌟 Loop is an expression, so we can use it with break to return a value // Fill in the blank\nfn main() { let mut counter = 0; let result = loop { counter += 1; if counter == 10 { __; } }; assert_eq!(result, 20); println!(\"Success!\");\n} 🌟🌟🌟 It's possible to break or continue outer loops when dealing with nested loops. In these cases, the loops must be annotated with some 'label, and the label must be passed to the break/continue statement. // Fill in the blank\nfn main() { let mut count = 0; 'outer: loop { 'inner1: loop { if count >= 20 { // This would break only the inner1 loop break 'inner1; // `break` is also works. } count += 2; } count += 5; 'inner2: loop { if count >= 30 { // This breaks the outer loop break 'outer; } // This will continue the outer loop continue 'outer; } } assert!(count == __); println!(\"Success!\");\n} You can find the solutions here (under the solutions path), but only use it when you need it","breadcrumbs":"Flow Control » Loop","id":"66","title":"Loop"},"67":{"body":"Learning resources: English: Rust Book 18 简体中文: Rust语言圣经 - 模式匹配","breadcrumbs":"Pattern Match » Pattern Match","id":"67","title":"Pattern Match"},"68":{"body":"","breadcrumbs":"Pattern Match » match, matches! and if let » Match, if let","id":"68","title":"Match, if let"},"69":{"body":"🌟🌟 // Fill the blanks\nenum Direction { East, West, North, South,\n} fn main() { let dire = Direction::South; match dire { Direction::East => println!(\"East\"), __ => { // Matching South or North here println!(\"South or North\"); }, _ => println!(__), };\n} 🌟🌟 Match is an expression, so we can use it in assignments. fn main() { let boolean = true; // Fill the blank with a match expression: // // boolean = true => binary = 1 // boolean = false => binary = 0 let binary = __; assert_eq!(binary, 1); println!(\"Success!\");\n} 🌟🌟 Using match to get the data an enum variant holds. // Fill in the blanks\nenum Message { Quit, Move { x: i32, y: i32 }, Write(String), ChangeColor(i32, i32, i32),\n} fn main() { let msgs = [ Message::Quit, Message::Move{x:1, y:3}, Message::ChangeColor(255,255,0) ]; for msg in msgs { show_message(msg) } println!(\"Success!\");\n} fn show_message(msg: Message) { match msg { __ => { // match Message::Move assert_eq!(a, 1); assert_eq!(b, 3); }, Message::ChangeColor(_, g, b) => { assert_eq!(g, __); assert_eq!(b, __); } __ => println!(\"no data in these variants\") }\n}","breadcrumbs":"Pattern Match » match, matches! and if let » Match","id":"69","title":"Match"},"7":{"body":"This project is for the book Command-Line Rust(O'Reily), it will show you how to write small CLIs (clones of head, cat, ls).","breadcrumbs":"Small projects with Elegant code » 4. Command Line Rust","id":"7","title":"4. Command Line Rust"},"70":{"body":"matches! looks like match, but can do something different. 🌟🌟 fn main() { let alphabets = ['a', 'E', 'Z', '0', 'x', '9' , 'Y']; // Fill the blank with `matches!` to make the code work for ab in alphabets { assert!(__) } println!(\"Success!\");\n} 🌟🌟 enum MyEnum { Foo, Bar\n} fn main() { let mut count = 0; let v = vec![MyEnum::Foo,MyEnum::Bar,MyEnum::Foo]; for e in v { if e == MyEnum::Foo { // Fix the error by changing only this line count += 1; } } assert_eq!(count, 2); println!(\"Success!\");\n}","breadcrumbs":"Pattern Match » match, matches! and if let » matches!","id":"70","title":"matches!"},"71":{"body":"For some cases, when matching enums, match is too heavy. We can use if let instead. 🌟 fn main() { let o = Some(7); // Remove the whole `match` block, using `if let` instead match o { Some(i) => { println!(\"This is a really long string and `{:?}`\", i); println!(\"Success!\"); } _ => {} };\n} 🌟🌟 // Fill in the blank\nenum Foo { Bar(u8)\n} fn main() { let a = Foo::Bar(1); __ { println!(\"foobar holds the value: {}\", i); println!(\"Success!\"); }\n} 🌟🌟 enum Foo { Bar, Baz, Qux(u32)\n} fn main() { let a = Foo::Qux(10); // Remove the codes below, using `match` instead if let Foo::Bar = a { println!(\"match foo::bar\") } else if let Foo::Baz = a { println!(\"match foo::baz\") } else { println!(\"match others\") }\n}","breadcrumbs":"Pattern Match » match, matches! and if let » If let","id":"71","title":"If let"},"72":{"body":"🌟🌟 // Fix the errors in-place\nfn main() { let age = Some(30); if let Some(age) = age { // Create a new variable with the same name as previous `age` assert_eq!(age, Some(30)); } // The new variable `age` goes out of scope here match age { // Match can also introduce a new shadowed variable Some(age) => println!(\"age is a new variable, it's value is {}\",age), _ => () } } You can find the solutions here (under the solutions path), but only use it when you need it","breadcrumbs":"Pattern Match » match, matches! and if let » Shadowing","id":"72","title":"Shadowing"},"73":{"body":"🌟🌟 Use | to match several values, use ..= to match an inclusive range. fn main() {}\nfn match_number(n: i32) { match n { // Match a single value 1 => println!(\"One!\"), // Fill in the blank with `|`, DON'T use `..` or `..=` __ => println!(\"match 2 -> 5\"), // Match an inclusive range 6..=10 => { println!(\"match 6 -> 10\") }, _ => { println!(\"match -infinite -> 0 or 11 -> +infinite\") } }\n} 🌟🌟🌟 The @ operator lets us create a variable that holds a value, at the same time we are testing that value to see whether it matches a pattern. struct Point { x: i32, y: i32,\n} fn main() { // Fill in the blank to let p match the second arm let p = Point { x: __, y: __ }; match p { Point { x, y: 0 } => println!(\"On the x axis at {}\", x), // Second arm Point { x: 0..=5, y: y@ (10 | 20 | 30) } => println!(\"On the y axis at {}\", y), Point { x, y } => println!(\"On neither axis: ({}, {})\", x, y), }\n} 🌟🌟🌟 // Fix the errors\nenum Message { Hello { id: i32 },\n} fn main() { let msg = Message::Hello { id: 5 }; match msg { Message::Hello { id: 3..=7, } => println!(\"Found an id in range [3, 7]: {}\", id), Message::Hello { id: newid@10 | 11 | 12 } => { println!(\"Found an id in another range [10, 12]: {}\", newid) } Message::Hello { id } => println!(\"Found some other id: {}\", id), }\n} 🌟🌟 A match guard is an additional if condition specified after the pattern in a match arm that must also match, along with the pattern matching, for that arm to be chosen. // Fill in the blank to make the code work, `split` MUST be used\nfn main() { let num = Some(4); let split = 5; match num { Some(x) __ => assert!(x < split), Some(x) => assert!(x >= split), None => (), } println!(\"Success!\");\n} 🌟🌟 Ignoring remaining parts of the value with .. // Fill the blank to make the code work\nfn main() { let numbers = (2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048); match numbers { __ => { assert_eq!(first, 2); assert_eq!(last, 2048); } } println!(\"Success!\");\n} 🌟🌟 Using pattern &mut V to match a mutable reference requires you to be very careful, due to V being a value after matching. // FIX the error with least changing\n// DON'T remove any code line\nfn main() { let mut v = String::from(\"hello,\"); let r = &mut v; match r { &mut value => value.push_str(\" world!\") }\n} You can find the solutions here (under the solutions path), but only use it when you need it","breadcrumbs":"Pattern Match » Patterns » Patterns","id":"73","title":"Patterns"},"74":{"body":"","breadcrumbs":"Method & Associated function » Associated functions & Methods","id":"74","title":"Associated functions & Methods"},"75":{"body":"struct Point { x: f64, y: f64,\n} // Implementation block, all `Point` associated functions & methods go in here.\nimpl Point { // This is an \"associated function\" because this function is associated with // a particular type, that is, Point. // // Associated functions don't need to be called with an instance. // These functions are generally used like constructors. fn origin() -> Point { Point { x: 0.0, y: 0.0 } } // Another associated function, taking two arguments: fn new(x: f64, y: f64) -> Point { Point { x: x, y: y } }\n} struct Rectangle { p1: Point, p2: Point,\n} impl Rectangle { // This is a method. // `&self` is sugar for `self: &Self`, where `Self` is the type of the // caller object. In this case `Self` = `Rectangle` fn area(&self) -> f64 { // `self` gives access to the struct fields via the dot operator. let Point { x: x1, y: y1 } = self.p1; let Point { x: x2, y: y2 } = self.p2; // `abs` is a `f64` method that returns the absolute value of the // caller ((x1 - x2) * (y1 - y2)).abs() } fn perimeter(&self) -> f64 { let Point { x: x1, y: y1 } = self.p1; let Point { x: x2, y: y2 } = self.p2; 2.0 * ((x1 - x2).abs() + (y1 - y2).abs()) } // This method requires the caller object to be mutable // `&mut self` desugars to `self: &mut Self` fn translate(&mut self, x: f64, y: f64) { self.p1.x += x; self.p2.x += x; self.p1.y += y; self.p2.y += y; }\n} // `Pair` owns resources: two heap allocated integers.\nstruct Pair(Box<i32>, Box<i32>); impl Pair { // This method \"consumes\" the resources of the caller object // `self` desugars to `self: Self` fn destroy(self) { // Destructure `self` let Pair(first, second) = self; println!(\"Destroying Pair({}, {})\", first, second); // `first` and `second` go out of scope and get freed. }\n} fn main() { let rectangle = Rectangle { // Associated functions are called using double colons p1: Point::origin(), p2: Point::new(3.0, 4.0), }; // Methods are called using the dot operator. // Note that the first argument `&self` is implicitly passed, i.e. // `rectangle.perimeter()` === `Rectangle::perimeter(&rectangle)` println!(\"Rectangle perimeter: {}\", rectangle.perimeter()); println!(\"Rectangle area: {}\", rectangle.area()); let mut square = Rectangle { p1: Point::origin(), p2: Point::new(1.0, 1.0), }; // Error! `rectangle` is immutable, but this method requires a mutable // object. //rectangle.translate(1.0, 0.0); // TODO ^ Try uncommenting this line // Okay! Mutable objects can call mutable methods square.translate(1.0, 1.0); let pair = Pair(Box::new(1), Box::new(2)); pair.destroy(); // Error! Previous `destroy` call \"consumed\" `pair` //pair.destroy(); // TODO ^ Try uncommenting this line\n}","breadcrumbs":"Method & Associated function » Examples","id":"75","title":"Examples"},"76":{"body":"","breadcrumbs":"Method & Associated function » Exercises","id":"76","title":"Exercises"},"77":{"body":"🌟🌟 Methods are similar to functions: Declare with fn, have parameters and a return value. Unlike functions, methods are defined within the context of a struct (or an enum or a trait object), and their first parameter is always self, which represents the instance of the struct the method is being called on. struct Rectangle { width: u32, height: u32,\n} impl Rectangle { // Complete the area method which return the area of a Rectangle. fn area\n} fn main() { let rect1 = Rectangle { width: 30, height: 50 }; assert_eq!(rect1.area(), 1500); println!(\"Success!\");\n} 🌟🌟 self will take the ownership of current struct instance, however, &self will only borrow a reference from the instance. // Only fill in the blanks, DON'T remove any line!\n#[derive(Debug)]\nstruct TrafficLight { color: String,\n} impl TrafficLight { pub fn show_state(__) { println!(\"the current state is {}\", __.color); }\n}\nfn main() { let light = TrafficLight{ color: \"red\".to_owned(), }; // Don't take the ownership of `light` here. light.show_state(); // ... Otherwise, there will be an error below println!(\"{:?}\", light);\n} 🌟🌟 The &self is actually short for self: &Self. Within an impl block, the type Self is an alias for the type that the impl block is for. Methods must have a parameter named self of type Self for their first parameter, so Rust lets you abbreviate this with only the name self in the first parameter spot. struct TrafficLight { color: String,\n} impl TrafficLight { // Using `Self` to fill in the blank. pub fn show_state(__) { println!(\"the current state is {}\", self.color); } // Fill in the blank, DON'T use any variants of `Self`. pub fn change_state(__) { self.color = \"green\".to_string() }\n}\nfn main() { println!(\"Success!\");\n}","breadcrumbs":"Method & Associated function » Method","id":"77","title":"Method"},"78":{"body":"🌟🌟 All functions defined within an impl block are called associated functions because theyre associated with the type named after the impl. We can define associated functions that dont have self as their first parameter (and thus are not methods) because they dont need an instance of the type to work with. #[derive(Debug)]\nstruct TrafficLight { color: String,\n} impl TrafficLight { // 1. Implement an associated function `new`, // 2. It will return a TrafficLight contains color \"red\" // 3. Must use `Self`, DONT use `TrafficLight` in fn signatures or body pub fn new() pub fn get_state(&self) -> &str { &self.color }\n} fn main() { let light = TrafficLight::new(); assert_eq!(light.get_state(), \"red\"); println!(\"Success!\");\n}","breadcrumbs":"Method & Associated function » Associated functions","id":"78","title":"Associated functions"},"79":{"body":"🌟 Each struct is allowed to have multiple impl blocks. struct Rectangle { width: u32, height: u32,\n} // Using multiple `impl` blocks to rewrite the code below.\nimpl Rectangle { fn area(&self) -> u32 { self.width * self.height } fn can_hold(&self, other: &Rectangle) -> bool { self.width > other.width && self.height > other.height }\n} fn main() { println!(\"Success!\");\n}","breadcrumbs":"Method & Associated function » Multiple impl blocks","id":"79","title":"Multiple impl blocks"},"8":{"body":"This book will guide you to make a command line program that lets you hide secret messages in PNG files. The primary goal here is to get you writing code. The secondary goal is to get you reading documentation.","breadcrumbs":"Small projects with Elegant code » 5. pngme book","id":"8","title":"5. pngme book"},"80":{"body":"🌟🌟🌟 We can also implement methods for enums. #[derive(Debug)]\nenum TrafficLightColor { Red, Yellow, Green,\n} // Implement TrafficLightColor with a method.\nimpl TrafficLightColor { } fn main() { let c = TrafficLightColor::Yellow; assert_eq!(c.color(), \"yellow\"); println!(\"{:?}\",c);\n}","breadcrumbs":"Method & Associated function » Enums","id":"80","title":"Enums"},"81":{"body":"@todo You can find the solutions here (under the solutions path), but only use it when you need it","breadcrumbs":"Method & Associated function » Practice","id":"81","title":"Practice"},"82":{"body":"Learning resources: English: Rust Book 10.1, 10.2 简体中文: Rust语言圣经 - 模式匹配","breadcrumbs":"Generics and Traits » Generics and Traits","id":"82","title":"Generics and Traits"},"83":{"body":"","breadcrumbs":"Generics and Traits » Generics » Generics","id":"83","title":"Generics"},"84":{"body":"🌟🌟🌟 // Fill in the blanks to make it work\nstruct A; // Concrete type `A`.\nstruct S(A); // Concrete type `S`.\nstruct SGen<T>(T); // Generic type `SGen`. fn reg_fn(_s: S) {} fn gen_spec_t(_s: SGen<A>) {} fn gen_spec_i32(_s: SGen<i32>) {} fn generic<T>(_s: SGen<T>) {} fn main() { // Using the non-generic functions reg_fn(__); // Concrete type. gen_spec_t(__); // Implicitly specified type parameter `A`. gen_spec_i32(__); // Implicitly specified type parameter `i32`. // Explicitly specified type parameter `char` to `generic()`. generic::<char>(__); // Implicitly specified type parameter `char` to `generic()`. generic(__); println!(\"Success!\");\n} 🌟🌟 A function call with explicitly specified type parameters looks like: fun::<A, B, ...>(). // Implement the generic function below.\nfn sum fn main() { assert_eq!(5, sum(2i8, 3i8)); assert_eq!(50, sum(20, 30)); assert_eq!(2.46, sum(1.23, 1.23)); println!(\"Success!\");\n}","breadcrumbs":"Generics and Traits » Generics » Functions","id":"84","title":"Functions"},"85":{"body":"🌟 // Implement struct Point to make it work. fn main() { let integer = Point { x: 5, y: 10 }; let float = Point { x: 1.0, y: 4.0 }; println!(\"Success!\");\n} 🌟🌟 // Modify this struct to make the code work\nstruct Point<T> { x: T, y: T,\n} fn main() { // DON'T modify this code. let p = Point{x: 5, y : \"hello\".to_string()}; println!(\"Success!\");\n} 🌟🌟 // Add generic for Val to make the code work, DON'T modify the code in `main`.\nstruct Val { val: f64,\n} impl Val { fn value(&self) -> &f64 { &self.val }\n} fn main() { let x = Val{ val: 3.0 }; let y = Val{ val: \"hello\".to_string()}; println!(\"{}, {}\", x.value(), y.value());\n}","breadcrumbs":"Generics and Traits » Generics » Struct and impl","id":"85","title":"Struct and impl"},"86":{"body":"🌟🌟🌟 struct Point<T, U> { x: T, y: U,\n} impl<T, U> Point<T, U> { // Implement mixup to make it work, DON'T modify other code. fn mixup\n} fn main() { let p1 = Point { x: 5, y: 10 }; let p2 = Point { x: \"Hello\", y: '中'}; let p3 = p1.mixup(p2); assert_eq!(p3.x, 5); assert_eq!(p3.y, '中'); println!(\"Success!\");\n} 🌟🌟 // Fix the errors to make the code work.\nstruct Point<T> { x: T, y: T,\n} impl Point<f32> { fn distance_from_origin(&self) -> f32 { (self.x.powi(2) + self.y.powi(2)).sqrt() }\n} fn main() { let p = Point{x: 5, y: 10}; println!(\"{}\",p.distance_from_origin());\n} You can find the solutions here (under the solutions path), but only use it when you need it","breadcrumbs":"Generics and Traits » Generics » Method","id":"86","title":"Method"},"87":{"body":"Const generics are generic arguments that range over constant values, rather than types or lifetimes. This allows, for instance, types to be parameterized by integers. In fact, there has been one example of const generic types since early on in Rust's development: the array types [T; N], for some type T and N: usize. However, there has previously been no way to abstract over arrays of an arbitrary size: if you wanted to implement a trait for arrays of any size, you would have to do so manually for each possible value. For a long time, even the standard library methods for arrays were limited to arrays of length at most 32 due to this problem.","breadcrumbs":"Generics and Traits » Const Generics » Const Generics","id":"87","title":"Const Generics"},"88":{"body":"Here's an example of a type and implementation making use of const generics: a type wrapping a pair of arrays of the same size. struct ArrayPair<T, const N: usize> { left: [T; N], right: [T; N],\n} impl<T: Debug, const N: usize> Debug for ArrayPair<T, N> { // ...\n} Currently, const parameters may only be instantiated by const arguments of the following forms: A standalone const parameter. A literal (i.e. an integer, bool, or character). A concrete constant expression (enclosed by {}), involving no generic parameters. fn foo<const N: usize>() {} fn bar<T, const M: usize>() { foo::<M>(); // Okay: `M` is a const parameter foo::<2021>(); // Okay: `2021` is a literal foo::<{20 * 100 + 20 * 10 + 1}>(); // Okay: const expression contains no generic parameters foo::<{ M + 1 }>(); // Error: const expression contains the generic parameter `M` foo::<{ std::mem::size_of::<T>() }>(); // Error: const expression contains the generic parameter `T` let _: [u8; M]; // Okay: `M` is a const parameter let _: [u8; std::mem::size_of::<T>()]; // Error: const expression contains the generic parameter `T`\n} fn main() {} Const generics can also let us avoid some runtime checks. /// A region of memory containing at least `N` `T`s.\npub struct MinSlice<T, const N: usize> { /// The bounded region of memory. Exactly `N` `T`s. pub head: [T; N], /// Zero or more remaining `T`s after the `N` in the bounded region. pub tail: [T],\n} fn main() { let slice: &[u8] = b\"Hello, world\"; let reference: Option<&u8> = slice.get(6); // We know this value is `Some(b' ')`, // but the compiler can't know that. assert!(reference.is_some()); let slice: &[u8] = b\"Hello, world\"; // Length check is performed when we construct a MinSlice, // and it's known at compile time to be of length 12. // If the `unwrap()` succeeds, no more checks are needed // throughout the `MinSlice`'s lifetime. let minslice = MinSlice::<u8, 12>::from_slice(slice).unwrap(); let value: u8 = minslice.head[6]; assert_eq!(value, b' ')\n}","breadcrumbs":"Generics and Traits » Const Generics » Examples","id":"88","title":"Examples"},"89":{"body":"🌟🌟 <T, const N: usize> is part of the struct type, it means Array<i32, 3> and Array<i32, 4> are different types. struct Array<T, const N: usize> { data : [T; N]\n} fn main() { let arrays = [ Array{ data: [1, 2, 3], }, Array { data: [1.0, 2.0, 3.0], }, Array { data: [1, 2] } ]; println!(\"Success!\");\n} 🌟🌟 // Fill in the blanks to make it work.\nfn print_array<__>(__) { println!(\"{:?}\", arr);\n}\nfn main() { let arr = [1, 2, 3]; print_array(arr); let arr = [\"hello\", \"world\"]; print_array(arr);\n} 🌟🌟🌟 Sometimes we want to limit the size of a variable, e.g when using in embedding environments, then const expressions will fit your needs. #![allow(incomplete_features)]\n#![feature(generic_const_exprs)] fn check_size<T>(val: T)\nwhere Assert<{ core::mem::size_of::<T>() < 768 }>: IsTrue,\n{ //...\n} // Fix the errors in main.\nfn main() { check_size([0u8; 767]); check_size([0i32; 191]); check_size([\"hello你好\"; __]); // Size of &str ? check_size([(); __].map(|_| \"hello你好\".to_string())); // Size of String? check_size(['中'; __]); // Size of char ? println!(\"Success!\");\n} pub enum Assert<const CHECK: bool> {} pub trait IsTrue {} impl IsTrue for Assert<true> {} You can find the solutions here (under the solutions path), but only use it when you need it :)","breadcrumbs":"Generics and Traits » Const Generics » Exercises","id":"89","title":"Exercises"},"9":{"body":"This blog series creates a small operating system in the Rust programming language. Each post is a small tutorial and includes all needed code, so you can follow along if you like. The source code is also available in the corresponding Github repository .","breadcrumbs":"Small projects with Elegant code » 6. Writing an OS in Rust","id":"9","title":"6. Writing an OS in Rust"},"90":{"body":"A trait tells the Rust compiler about functionality a particular type has and can share with other types. We can use traits to define shared behavior in an abstract way. We can use trait bounds to specify that a generic type can be any type that has certain behavior. Note: Traits are similar to interfaces in other languages, although with some differences.","breadcrumbs":"Generics and Traits » Traits » Traits","id":"90","title":"Traits"},"91":{"body":"struct Sheep { naked: bool, name: String } trait Animal { // Associated function signature; `Self` refers to the implementor type. fn new(name: String) -> Self; // Method signatures; these will return a string. fn name(&self) -> String; fn noise(&self) -> String; // Traits can provide default method definitions. fn talk(&self) { println!(\"{} says {}\", self.name(), self.noise()); }\n} impl Sheep { fn is_naked(&self) -> bool { self.naked } fn shear(&mut self) { if self.is_naked() { // Implementor methods can use the implementor's trait methods. println!(\"{} is already naked...\", self.name()); } else { println!(\"{} gets a haircut!\", self.name); self.naked = true; } }\n} // Implement the `Animal` trait for `Sheep`.\nimpl Animal for Sheep { // `Self` is the implementor type: `Sheep`. fn new(name: String) -> Sheep { Sheep { name: name, naked: false } } fn name(&self) -> String { self.name.clone() } fn noise(&self) -> String { if self.is_naked() { \"baaaaah?\".to_string() } else { \"baaaaah!\".to_string() } } // Default trait methods can be overridden. fn talk(&self) { // For example, we can add some quiet contemplation. println!(\"{} pauses briefly... {}\", self.name, self.noise()); }\n} fn main() { // Type annotation is necessary in this case. let mut dolly: Sheep = Animal::new(\"Dolly\".to_string()); // TODO ^ Try removing the type annotations. dolly.talk(); dolly.shear(); dolly.talk();\n}","breadcrumbs":"Generics and Traits » Traits » Examples","id":"91","title":"Examples"},"92":{"body":"🌟🌟 // Fill in the two impl blocks to make the code work.\n// DON'T modify the code in `main`.\ntrait Hello { fn say_hi(&self) -> String { String::from(\"hi\") } fn say_something(&self) -> String;\n} struct Student {}\nimpl Hello for Student {\n}\nstruct Teacher {}\nimpl Hello for Teacher {\n} fn main() { let s = Student {}; assert_eq!(s.say_hi(), \"hi\"); assert_eq!(s.say_something(), \"I'm a good student\"); let t = Teacher {}; assert_eq!(t.say_hi(), \"Hi, I'm your new teacher\"); assert_eq!(t.say_something(), \"I'm not a bad teacher\"); println!(\"Success!\");\n}","breadcrumbs":"Generics and Traits » Traits » Exercises","id":"92","title":"Exercises"},"93":{"body":"The compiler is capable of providing basic implementations for some traits via the #[derive] attribute. For more info, please visit here . 🌟🌟 // `Centimeters`, a tuple struct that can be compared\n#[derive(PartialEq, PartialOrd)]\nstruct Centimeters(f64); // `Inches`, a tuple struct that can be printed\n#[derive(Debug)]\nstruct Inches(i32); impl Inches { fn to_centimeters(&self) -> Centimeters { let &Inches(inches) = self; Centimeters(inches as f64 * 2.54) }\n} // ADD some attributes to make the code work!\n// DON'T modify other code!\nstruct Seconds(i32); fn main() { let _one_second = Seconds(1); println!(\"One second looks like: {:?}\", _one_second); let _this_is_true = (_one_second == _one_second); let _this_is_false = (_one_second > _one_second); let foot = Inches(12); println!(\"One foot equals {:?}\", foot); let meter = Centimeters(100.0); let cmp = if foot.to_centimeters() < meter { \"smaller\" } else { \"bigger\" }; println!(\"One foot is {} than one meter.\", cmp);\n}","breadcrumbs":"Generics and Traits » Traits » Derive","id":"93","title":"Derive"},"94":{"body":"In Rust, many of the operators can be overloaded via traits. That is, some operators can be used to accomplish different tasks based on their input arguments. This is possible because operators are syntactic sugar for method calls. For example, the + operator in a + b calls the add method (as in a.add(b)). This add method is part of the Add trait. Hence, the + operator can be used by any implementor of the Add trait. 🌟🌟 use std::ops; // Implement fn multiply to make the code work.\n// As mentioned above, `+` needs `T` to implement `std::ops::Add` Trait.\n// So, what about `*`? You can find the answer here: https://doc.rust-lang.org/core/ops/\nfn multiply fn main() { assert_eq!(6, multiply(2u8, 3u8)); assert_eq!(5.0, multiply(1.0, 5.0)); println!(\"Success!\");\n} 🌟🌟🌟 // Fix the errors, DON'T modify the code in `main`.\nuse std::ops; struct Foo;\nstruct Bar; struct FooBar; struct BarFoo; // The `std::ops::Add` trait is used to specify the functionality of `+`.\n// Here, we make `Add<Bar>` - the trait for addition with a RHS of type `Bar`.\n// The following block implements the operation: Foo + Bar = FooBar\nimpl ops::Add<Bar> for Foo { type Output = FooBar; fn add(self, _rhs: Bar) -> FooBar { FooBar }\n} impl ops::Sub<Foo> for Bar { type Output = BarFoo; fn sub(self, _rhs: Foo) -> BarFoo { BarFoo }\n} fn main() { // DON'T modify the code below. // You need to derive some trait for FooBar to make it comparable. assert_eq!(Foo + Bar, FooBar); assert_eq!(Foo - Bar, BarFoo); println!(\"Success!\");\n}","breadcrumbs":"Generics and Traits » Traits » Operator","id":"94","title":"Operator"},"95":{"body":"Instead of a concrete type for the item parameter, we specify the impl keyword and the trait name. This parameter accepts any type that implements the specified trait. 🌟🌟🌟 // Implement `fn summary` to make the code work.\n// Fix the errors without removing any code line\ntrait Summary { fn summarize(&self) -> String;\n} #[derive(Debug)]\nstruct Post { title: String, author: String, content: String,\n} impl Summary for Post { fn summarize(&self) -> String { format!(\"The author of post {} is {}\", self.title, self.author) }\n} #[derive(Debug)]\nstruct Weibo { username: String, content: String,\n} impl Summary for Weibo { fn summarize(&self) -> String { format!(\"{} published a weibo {}\", self.username, self.content) }\n} fn main() { let post = Post { title: \"Popular Rust\".to_string(), author: \"Sunface\".to_string(), content: \"Rust is awesome!\".to_string(), }; let weibo = Weibo { username: \"sunface\".to_string(), content: \"Weibo seems to be worse than Tweet\".to_string(), }; summary(post); summary(weibo); println!(\"{:?}\", post); println!(\"{:?}\", weibo);\n} // Implement `fn summary` below.","breadcrumbs":"Generics and Traits » Traits » Use trait as function parameters","id":"95","title":"Use trait as function parameters"},"96":{"body":"We can also use the impl Trait syntax in the return position to return a value of some type that implements a trait. However, you can only use impl Trait if youre returning a single type, use Trait Objects instead when you really need to return several types. 🌟🌟 struct Sheep {}\nstruct Cow {} trait Animal { fn noise(&self) -> String;\n} impl Animal for Sheep { fn noise(&self) -> String { \"baaaaah!\".to_string() }\n} impl Animal for Cow { fn noise(&self) -> String { \"moooooo!\".to_string() }\n} // Returns some struct that implements Animal, but we don't know which one at compile time.\n// FIX the errors here, you can make a fake random, or you can use trait object.\nfn random_animal(random_number: f64) -> impl Animal { if random_number < 0.5 { Sheep {} } else { Cow {} }\n} fn main() { let random_number = 0.234; let animal = random_animal(random_number); println!(\"You've randomly chosen an animal, and it says {}\", animal.noise());\n}","breadcrumbs":"Generics and Traits » Traits » Returning Types that Implement Traits","id":"96","title":"Returning Types that Implement Traits"},"97":{"body":"The impl Trait syntax works for straightforward cases but is actually syntax sugar for a longer form, which is called a trait bound. When working with generics, the type parameters often must use traits as bounds to stipulate what functionality a type implements. 🌟🌟 fn main() { assert_eq!(sum(1, 2), 3);\n} // Implement `fn sum` with trait bound in two ways.\nfn sum<T>(x: T, y: T) -> T { x + y\n} 🌟🌟 // FIX the errors.\nstruct Pair<T> { x: T, y: T,\n} impl<T> Pair<T> { fn new(x: T, y: T) -> Self { Self { x, y, } }\n} impl<T: std::fmt::Debug + PartialOrd> Pair<T> { fn cmp_display(&self) { if self.x >= self.y { println!(\"The largest member is x = {:?}\", self.x); } else { println!(\"The largest member is y = {:?}\", self.y); } }\n} struct Unit(i32); fn main() { let pair = Pair{ x: Unit(1), y: Unit(3) }; pair.cmp_display();\n} 🌟🌟🌟 // Fill in the blanks to make it work\nfn example1() { // `T: Trait` is the commonly used way. // `T: Fn(u32) -> u32` specifies that we can only pass a closure to `T`. struct Cacher<T: Fn(u32) -> u32> { calculation: T, value: Option<u32>, } impl<T: Fn(u32) -> u32> Cacher<T> { fn new(calculation: T) -> Cacher<T> { Cacher { calculation, value: None, } } fn value(&mut self, arg: u32) -> u32 { match self.value { Some(v) => v, None => { let v = (self.calculation)(arg); self.value = Some(v); v }, } } } let mut cacher = Cacher::new(|x| x+1); assert_eq!(cacher.value(10), __); assert_eq!(cacher.value(15), __);\n} fn example2() { // We can also use `where` to construct `T` struct Cacher<T> where T: Fn(u32) -> u32, { calculation: T, value: Option<u32>, } impl<T> Cacher<T> where T: Fn(u32) -> u32, { fn new(calculation: T) -> Cacher<T> { Cacher { calculation, value: None, } } fn value(&mut self, arg: u32) -> u32 { match self.value { Some(v) => v, None => { let v = (self.calculation)(arg); self.value = Some(v); v }, } } } let mut cacher = Cacher::new(|x| x+1); assert_eq!(cacher.value(20), __); assert_eq!(cacher.value(25), __);\n} fn main() { example1(); example2(); println!(\"Success!\");\n} You can find the solutions here (under the solutions path), but only use it when you need it :)","breadcrumbs":"Generics and Traits » Traits » Trait bound","id":"97","title":"Trait bound"},"98":{"body":"In traits chapter we have seen that we can't use impl Trait when returning multiple types. Another limitation of arrays is that they can only store elements of one type. Using enums is not a bad solution when we have a fixed set of types at compile time, but trait objects would be more flexible and powerful.","breadcrumbs":"Generics and Traits » Trait Object » Trait Object","id":"98","title":"Trait Object"},"99":{"body":"The Rust compiler needs to know how much space a function's return type requires. Because the different implementations of a trait probably uses different amounts of memory, functions need to either return a concrete type or the same type when using impl Trait, or return a trait object with dyn. 🌟🌟🌟 trait Bird { fn quack(&self) -> String;\n} struct Duck;\nimpl Duck { fn swim(&self) { println!(\"Look, the duck is swimming\") }\n}\nstruct Swan;\nimpl Swan { fn fly(&self) { println!(\"Look, the duck.. oh sorry, the swan is flying\") }\n} impl Bird for Duck { fn quack(&self) -> String{ \"duck duck\".to_string() }\n} impl Bird for Swan { fn quack(&self) -> String{ \"swan swan\".to_string() }\n} fn main() { // FILL in the blank. let duck = __; duck.swim(); let bird = hatch_a_bird(2); // This bird has forgotten how to swim, so below line will cause an error. // bird.swim(); // But it can quak. assert_eq!(bird.quack(), \"duck duck\"); let bird = hatch_a_bird(1); // This bird has forgotten how to fly, so below line will cause an error. // bird.fly(); // But it can quak too. assert_eq!(bird.quack(), \"swan swan\"); println!(\"Success!\");\n} // IMPLEMENT this function.\nfn hatch_a_bird...","breadcrumbs":"Generics and Traits » Trait Object » Returning Traits with dyn","id":"99","title":"Returning Traits with dyn"}},"length":272,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{".":{"1":{"0":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":2,"docs":{"115":{"tf":1.0},"53":{"tf":1.0}}},"5":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}},"=":{"1":{"0":{"0":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}},"1":{"_":{"df":0,"docs":{},"f":{"6":{"4":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"60":{"tf":1.0},"75":{"tf":1.7320508075688772}}},"1":{".":{"0":{"df":1,"docs":{"151":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"2":{"3":{"4":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"1":{"df":1,"docs":{"169":{"tf":1.0}}},"5":{"df":1,"docs":{"169":{"tf":1.0}}},"df":1,"docs":{"96":{"tf":1.0}}},"7":{"7":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"1":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"1":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"b":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"187":{"tf":1.4142135623730951}}},":":{"df":0,"docs":{},"h":{"df":1,"docs":{"253":{"tf":1.0}}},"l":{"df":1,"docs":{"253":{"tf":1.0}}}},"_":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}}},"b":{"0":{"0":{"0":{"1":{"1":{"0":{"1":{"1":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"df":0,"docs":{},"u":{"3":{"2":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"1":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"0":{"1":{"1":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"_":{"1":{"1":{"1":{"1":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":38,"docs":{"106":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.4142135623730951},"136":{"tf":2.449489742783178},"139":{"tf":2.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"169":{"tf":4.898979485566356},"176":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"185":{"tf":1.0},"189":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"218":{"tf":1.0},"221":{"tf":1.4142135623730951},"24":{"tf":1.0},"248":{"tf":2.0},"249":{"tf":1.7320508075688772},"251":{"tf":2.23606797749979},"255":{"tf":2.8284271247461903},"256":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}},"i":{"3":{"2":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"3":{"3":{"6":{"5":{"3":{"3":{"3":{"7":{"3":{"5":{"7":{"df":1,"docs":{"189":{"tf":1.0}}},"df":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":{"189":{"tf":1.0}}},"df":0,"docs":{}},"7":{"7":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"3":{"2":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"1":{"2":{"3":{"4":{"5":{"6":{"7":{"8":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"139":{"tf":1.0}}},"6":{"df":0,"docs":{},"f":{"a":{"3":{"a":{"c":{"8":{"4":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":1,"docs":{"189":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"4":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"5":{"6":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"6":{"0":{"0":{"0":{"0":{"2":{"3":{"2":{"4":{"0":{"5":{"0":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"250":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"7":{"8":{"5":{"6":{"3":{"4":{"1":{"2":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"df":0,"docs":{},"u":{"3":{"2":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"b":{"a":{"b":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}},"d":{"1":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"22":{"tf":1.0}}}},"{":{":":{"df":0,"docs":{},"x":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}}},"1":{".":{".":{"=":{"1":{"0":{"0":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":5,"docs":{"176":{"tf":1.0},"60":{"tf":1.0},"75":{"tf":1.4142135623730951},"85":{"tf":1.0},"89":{"tf":1.0}}},"1":{"df":0,"docs":{},"f":{"6":{"4":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"3":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"4":{"5":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"5":{"8":{"df":1,"docs":{"176":{"tf":1.0}}},"9":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"\"":{".":{"_":{"_":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"1":{"df":1,"docs":{"82":{"tf":1.0}}},"2":{"df":1,"docs":{"82":{"tf":1.0}}},"3":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"_":{"df":0,"docs":{},"f":{"3":{"2":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{":":{":":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"131":{"tf":1.4142135623730951}}},"1":{"_":{"df":0,"docs":{},"f":{"3":{"2":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"131":{"tf":1.4142135623730951}}},"df":6,"docs":{"125":{"tf":1.0},"127":{"tf":1.4142135623730951},"218":{"tf":1.0},"51":{"tf":1.4142135623730951},"63":{"tf":1.0},"88":{"tf":1.0}}},"1":{"0":{"1":{"0":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"114":{"tf":1.0}}},"2":{"4":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"114":{"tf":1.4142135623730951}}},"]":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":22,"docs":{"105":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":2.0},"125":{"tf":1.0},"128":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"189":{"tf":1.0},"205":{"tf":1.4142135623730951},"218":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"224":{"tf":2.23606797749979},"255":{"tf":1.4142135623730951},"54":{"tf":1.0},"62":{"tf":1.7320508075688772},"64":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"1":{"1":{"df":1,"docs":{"114":{"tf":1.0}}},"5":{"df":1,"docs":{"139":{"tf":1.7320508075688772}}},"6":{"df":1,"docs":{"139":{"tf":1.7320508075688772}}},"7":{"df":1,"docs":{"139":{"tf":1.7320508075688772}}},"df":5,"docs":{"122":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"255":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.4142135623730951}}},"2":{"2":{"df":1,"docs":{"24":{"tf":1.0}}},"3":{"df":1,"docs":{"228":{"tf":1.0}}},"7":{"df":1,"docs":{"56":{"tf":1.0}}},"8":{"df":2,"docs":{"250":{"tf":1.4142135623730951},"73":{"tf":1.0}}},">":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"126":{"tf":1.0},"146":{"tf":1.0},"16":{"tf":1.4142135623730951},"181":{"tf":1.0},"195":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"3":{"df":4,"docs":{"131":{"tf":1.7320508075688772},"209":{"tf":1.0},"224":{"tf":1.0},"54":{"tf":1.0}}},"5":{"0":{"0":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"131":{"tf":1.0}}},"7":{"9":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"195":{"tf":1.0},"64":{"tf":1.0}}},"6":{"df":1,"docs":{"73":{"tf":1.0}}},"8":{"df":7,"docs":{"181":{"tf":1.4142135623730951},"195":{"tf":1.0},"199":{"tf":1.0},"224":{"tf":1.4142135623730951},"226":{"tf":1.0},"57":{"tf":1.4142135623730951},"67":{"tf":1.0}}},"9":{"1":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{".":{"0":{"0":{"0":{"_":{"1":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"8":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}},"b":{"df":1,"docs":{"189":{"tf":1.0}}},"df":69,"docs":{"106":{"tf":1.4142135623730951},"112":{"tf":1.0},"114":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.4142135623730951},"124":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"153":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"17":{"tf":1.4142135623730951},"176":{"tf":2.8284271247461903},"178":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.4142135623730951},"185":{"tf":2.23606797749979},"186":{"tf":1.4142135623730951},"187":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"202":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":2.449489742783178},"211":{"tf":1.0},"212":{"tf":2.0},"215":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.4142135623730951},"228":{"tf":1.0},"230":{"tf":1.0},"24":{"tf":1.4142135623730951},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"25":{"tf":1.0},"251":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"4":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"54":{"tf":2.8284271247461903},"57":{"tf":1.0},"60":{"tf":2.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772}},"e":{"9":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"i":{"3":{"2":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"252":{"tf":1.0}}}},"u":{"3":{"2":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"2":{".":{"0":{"df":5,"docs":{"123":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"75":{"tf":1.0},"89":{"tf":1.0}}},"5":{"4":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"1":{"5":{"df":1,"docs":{"207":{"tf":1.0}}},"8":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"60":{"tf":1.0}}}}}}}}}}}},"df":2,"docs":{"207":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{"df":2,"docs":{"151":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{}},"4":{"8":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":4,"docs":{"169":{"tf":1.0},"66":{"tf":1.4142135623730951},"73":{"tf":1.0},"88":{"tf":1.0}}},"1":{"1":{"2":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"186":{"tf":1.0},"48":{"tf":1.0}}},"2":{"1":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":1,"docs":{"126":{"tf":1.0}}},"5":{"1":{"_":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"5":{"df":2,"docs":{"131":{"tf":1.4142135623730951},"56":{"tf":1.0}}},"6":{"df":3,"docs":{"131":{"tf":1.4142135623730951},"134":{"tf":1.0},"73":{"tf":1.0}}},"df":2,"docs":{"115":{"tf":1.7320508075688772},"126":{"tf":1.0}}},"6":{"df":1,"docs":{"169":{"tf":1.0}}},"7":{"df":2,"docs":{"169":{"tf":1.0},"189":{"tf":2.449489742783178}}},"8":{"df":1,"docs":{"107":{"tf":1.0}}},"b":{"df":1,"docs":{"255":{"tf":1.0}}},"df":65,"docs":{"106":{"tf":1.0},"112":{"tf":1.0},"118":{"tf":2.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"153":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.4142135623730951},"176":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.7320508075688772},"183":{"tf":1.7320508075688772},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"19":{"tf":1.0},"191":{"tf":1.0},"202":{"tf":1.0},"205":{"tf":1.0},"213":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"224":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"24":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":2.23606797749979},"251":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":2.0},"29":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"36":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":2.0},"54":{"tf":1.7320508075688772},"58":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"66":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.7320508075688772},"78":{"tf":1.0},"89":{"tf":1.7320508075688772},"97":{"tf":1.0}},"f":{"df":1,"docs":{"255":{"tf":1.0}}},"i":{"3":{"2":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"d":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"u":{"1":{"6":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{".":{".":{"2":{"df":1,"docs":{"24":{"tf":1.0}}},"=":{"7":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":3,"docs":{"25":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0}}},"1":{"4":{"1":{"5":{"9":{"2":{"6":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"188":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"df":2,"docs":{"20":{"tf":1.0},"25":{"tf":1.0}}},"3":{"df":2,"docs":{"182":{"tf":1.7320508075688772},"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{".":{"0":{"_":{"df":0,"docs":{},"f":{"3":{"2":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{":":{":":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"133":{"tf":1.4142135623730951},"226":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0}}},"1":{"df":1,"docs":{"176":{"tf":1.7320508075688772}},"i":{"6":{"4":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":4,"docs":{"251":{"tf":1.4142135623730951},"253":{"tf":1.0},"73":{"tf":1.0},"87":{"tf":1.0}}},"5":{"df":2,"docs":{"137":{"tf":1.0},"195":{"tf":1.0}}},"6":{"5":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"7":{"3":{"5":{"9":{"2":{"8":{"5":{"5":{"9":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"_":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":57,"docs":{"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"114":{"tf":1.0},"118":{"tf":2.23606797749979},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"158":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"170":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"19":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"228":{"tf":1.0},"230":{"tf":1.0},"24":{"tf":1.0},"248":{"tf":1.7320508075688772},"255":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":2.0},"33":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":2.0},"54":{"tf":1.7320508075688772},"6":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"89":{"tf":1.7320508075688772},"97":{"tf":1.0}},"i":{"6":{"4":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"u":{"8":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"4":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":2,"docs":{"75":{"tf":1.0},"85":{"tf":1.0}}},"1":{"df":1,"docs":{"35":{"tf":1.0}}},"3":{"df":1,"docs":{"42":{"tf":1.0}}},"4":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":4,"docs":{"103":{"tf":1.0},"121":{"tf":1.7320508075688772},"125":{"tf":1.0},"16":{"tf":1.7320508075688772}}},"4":{"df":1,"docs":{"131":{"tf":1.0}}},"df":35,"docs":{"114":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.4142135623730951},"137":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"19":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"204":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.4142135623730951},"230":{"tf":1.0},"249":{"tf":2.23606797749979},"251":{"tf":1.7320508075688772},"253":{"tf":1.0},"256":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"36":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":2.0},"54":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.0},"89":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"155":{"tf":1.0}}}}},"5":{"\"":{".":{"_":{"_":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{".":{"=":{"8":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"94":{"tf":1.0}}},"1":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":5,"docs":{"125":{"tf":1.4142135623730951},"127":{"tf":1.0},"25":{"tf":1.0},"58":{"tf":1.0},"77":{"tf":1.0}}},"1":{"2":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"125":{"tf":1.0}}},"df":36,"docs":{"114":{"tf":1.0},"120":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"163":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.4142135623730951},"187":{"tf":3.872983346207417},"194":{"tf":1.4142135623730951},"200":{"tf":1.0},"204":{"tf":1.0},"215":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"221":{"tf":1.0},"227":{"tf":1.4142135623730951},"230":{"tf":2.0},"24":{"tf":1.4142135623730951},"248":{"tf":2.8284271247461903},"25":{"tf":1.7320508075688772},"255":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.7320508075688772},"73":{"tf":1.7320508075688772},"8":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772}},"i":{"3":{"2":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"134":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"3":{"2":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}},"6":{".":{".":{"=":{"1":{"0":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"42":{"tf":1.0}}},"4":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{".":{"3":{"4":{"df":1,"docs":{"190":{"tf":1.0}}},"df":1,"docs":{"190":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"142":{"tf":1.0}}},"4":{"df":7,"docs":{"246":{"tf":1.4142135623730951},"250":{"tf":2.0},"251":{"tf":1.7320508075688772},"253":{"tf":1.4142135623730951},"256":{"tf":1.0},"52":{"tf":1.4142135623730951},"73":{"tf":1.0}}},"5":{"5":{"3":{"5":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"65":{"tf":2.0}}},"9":{".":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"120":{"tf":1.0},"147":{"tf":1.0},"176":{"tf":1.0},"188":{"tf":1.0},"251":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"73":{"tf":1.0},"9":{"tf":1.0}}},"7":{".":{"2":{"df":1,"docs":{"182":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"6":{"7":{"df":1,"docs":{"89":{"tf":1.0}}},"8":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":11,"docs":{"10":{"tf":1.0},"114":{"tf":1.0},"150":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.0},"181":{"tf":1.4142135623730951},"188":{"tf":1.0},"195":{"tf":1.0},"202":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.0}}},"8":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},".":{"2":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"139":{"tf":1.7320508075688772}}},"df":18,"docs":{"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":2.23606797749979},"131":{"tf":1.0},"145":{"tf":1.0},"189":{"tf":1.0},"22":{"tf":1.0},"248":{"tf":1.7320508075688772},"249":{"tf":1.0},"251":{"tf":1.0},"256":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.7320508075688772},"52":{"tf":1.7320508075688772},"54":{"tf":1.0},"73":{"tf":1.0}},"i":{"3":{"2":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"134":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"8":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}},"9":{".":{".":{"=":{"1":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"2":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"125":{"tf":1.0}}},"6":{"df":2,"docs":{"142":{"tf":1.0},"143":{"tf":1.0}}},"7":{".":{"1":{"2":{"3":{"_":{"df":0,"docs":{},"f":{"3":{"2":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"24":{"tf":1.0}}},"8":{"df":3,"docs":{"125":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951}}},"9":{".":{"1":{"2":{"df":1,"docs":{"190":{"tf":1.0}}},"df":1,"docs":{"190":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"143":{"tf":1.4142135623730951}}},"df":6,"docs":{"12":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.4142135623730951},"199":{"tf":1.0},"54":{"tf":1.0},"70":{"tf":1.0}}},"_":{"_":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"179":{"tf":1.0}}}}}}},"i":{"df":1,"docs":{"179":{"tf":1.0}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"3":{"0":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"153":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}}}}},":":{":":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"153":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"153":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},">":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"213":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"]":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"_":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":61,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"106":{"tf":1.0},"113":{"tf":2.0},"114":{"tf":1.4142135623730951},"122":{"tf":2.23606797749979},"123":{"tf":1.4142135623730951},"125":{"tf":2.449489742783178},"131":{"tf":3.1622776601683795},"133":{"tf":1.0},"134":{"tf":1.7320508075688772},"137":{"tf":1.0},"14":{"tf":1.7320508075688772},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"148":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":2.8284271247461903},"181":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":2.449489742783178},"188":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"199":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.7320508075688772},"22":{"tf":1.7320508075688772},"220":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"25":{"tf":2.6457513110645907},"34":{"tf":1.0},"37":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"45":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"54":{"tf":2.23606797749979},"56":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"58":{"tf":1.0},"60":{"tf":2.449489742783178},"62":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"66":{"tf":2.0},"69":{"tf":2.449489742783178},"71":{"tf":1.0},"73":{"tf":2.23606797749979},"89":{"tf":1.4142135623730951},"97":{"tf":2.0},"99":{"tf":1.0}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}}},"c":{"1":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"3":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"211":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":18,"docs":{"105":{"tf":1.4142135623730951},"115":{"tf":1.0},"129":{"tf":1.0},"142":{"tf":1.0},"195":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"230":{"tf":1.0},"251":{"tf":2.23606797749979},"34":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.4142135623730951},"69":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.4142135623730951}},"f":{"df":1,"docs":{"28":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"51":{"tf":1.0}}},"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"93":{"tf":2.449489742783178}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"211":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}},"h":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}},"s":{"df":2,"docs":{"36":{"tf":1.0},"37":{"tf":1.4142135623730951}}},"t":{"0":{"df":1,"docs":{"54":{"tf":1.0}}},"1":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"df":2,"docs":{"29":{"tf":1.0},"34":{"tf":1.0}}},"x":{"df":1,"docs":{"195":{"tf":2.0}}}},"a":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"'":{".":{".":{"=":{"'":{"df":0,"docs":{},"z":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{".":{"b":{"df":2,"docs":{"218":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"_":{"_":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"a":{"d":{"d":{"(":{"b":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},">":{"(":{"&":{"'":{"a":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"6":{"4":{"df":1,"docs":{"246":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"188":{"tf":1.0}}}}}},"df":2,"docs":{"186":{"tf":1.0},"188":{"tf":1.0}}},"df":2,"docs":{"70":{"tf":1.0},"75":{"tf":1.0}},"i":{"df":1,"docs":{"252":{"tf":2.0}},"l":{"df":1,"docs":{"204":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":2.0}}}},"v":{"df":14,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"142":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.0},"176":{"tf":1.4142135623730951},"194":{"tf":1.0},"218":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0},"94":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"195":{"tf":1.0},"250":{"tf":1.0},"95":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"114":{"tf":1.0},"121":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"199":{"tf":1.0},"246":{"tf":1.0},"256":{"tf":1.0},"49":{"tf":1.0},"75":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"r":{"d":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"252":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"168":{"tf":1.0},"169":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"248":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"224":{"tf":1.0}}}},"v":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"122":{"tf":1.0},"125":{"tf":1.0},"132":{"tf":1.0},"162":{"tf":1.0},"218":{"tf":1.0},"248":{"tf":1.4142135623730951},"256":{"tf":1.0},"48":{"tf":1.0},"77":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"223":{"tf":1.4142135623730951},"224":{"tf":2.0}}}}}}},"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"226":{"tf":1.0},"94":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"103":{"tf":1.0},"112":{"tf":1.0}}}}}}}},"<":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"165":{"tf":1.0},"169":{"tf":1.7320508075688772}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"165":{"tf":1.0}}}},"<":{"'":{"a":{">":{"(":{"&":{"'":{"a":{"df":2,"docs":{"196":{"tf":1.0},"197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"212":{"tf":1.0}}},"2":{"df":1,"docs":{"212":{"tf":1.0}}},"3":{"df":1,"docs":{"212":{"tf":1.0}}},"4":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}}},"o":{"_":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.7320508075688772},"154":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"167":{"tf":1.0}}}},"df":2,"docs":{"167":{"tf":1.0},"169":{"tf":1.7320508075688772}}}}}},"df":26,"docs":{"131":{"tf":1.4142135623730951},"152":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"165":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"170":{"tf":1.7320508075688772},"176":{"tf":1.0},"183":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"41":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"57":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"t":{"df":4,"docs":{"202":{"tf":1.0},"25":{"tf":1.0},"73":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"105":{"tf":1.4142135623730951},"131":{"tf":1.0},"191":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"256":{"tf":1.0},"39":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"254":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":15,"docs":{"115":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"144":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":1.0},"248":{"tf":1.0},"255":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"256":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"104":{"tf":1.0},"139":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"37":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"148":{"tf":1.0},"162":{"tf":1.0},"211":{"tf":1.0},"53":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.4142135623730951}}}}}}},"df":10,"docs":{"107":{"tf":2.23606797749979},"181":{"tf":1.7320508075688772},"197":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.7320508075688772},"37":{"tf":2.6457513110645907},"56":{"tf":1.7320508075688772},"57":{"tf":2.449489742783178},"59":{"tf":2.6457513110645907},"72":{"tf":2.449489742783178}},"e":{".":{"0":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"226":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"226":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},">":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"107":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}},"h":{"df":1,"docs":{"253":{"tf":1.0}}},"l":{"df":1,"docs":{"253":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":2,"docs":{"124":{"tf":2.23606797749979},"2":{"tf":1.0}}}}}}}}},"i":{"a":{"df":3,"docs":{"148":{"tf":2.23606797749979},"227":{"tf":2.0},"77":{"tf":1.0}},"s":{"df":2,"docs":{"148":{"tf":1.0},"227":{"tf":1.0}}}},"c":{"df":2,"docs":{"176":{"tf":1.0},"185":{"tf":1.7320508075688772}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"176":{"tf":1.0},"187":{"tf":2.449489742783178}}}},"v":{"df":1,"docs":{"199":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":10,"docs":{"113":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"122":{"tf":1.0},"249":{"tf":2.0},"251":{"tf":1.0},"253":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"51":{"tf":1.0},"60":{"tf":1.4142135623730951},"75":{"tf":1.0}}},"df":0,"docs":{},"w":{"(":{"d":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"176":{"tf":1.0},"195":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":18,"docs":{"114":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"148":{"tf":1.0},"176":{"tf":1.0},"197":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"248":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.7320508075688772},"48":{"tf":1.0},"57":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"73":{"tf":1.0},"9":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"125":{"tf":1.4142135623730951},"132":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"139":{"tf":1.0},"144":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"2":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":9,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"200":{"tf":1.0},"253":{"tf":1.0},"3":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"255":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"122":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"211":{"tf":1.0},"99":{"tf":1.0}}}}}}},"n":{"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"255":{"tf":1.0}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"df":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":{"91":{"tf":1.7320508075688772},"96":{"tf":2.6457513110645907}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":10,"docs":{"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"195":{"tf":2.8284271247461903},"196":{"tf":1.7320508075688772},"197":{"tf":1.0},"202":{"tf":1.0},"213":{"tf":1.7320508075688772},"66":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"202":{"tf":1.4142135623730951}},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"&":{"'":{"a":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"210":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":15,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"132":{"tf":1.0},"139":{"tf":1.4142135623730951},"162":{"tf":1.0},"170":{"tf":1.0},"182":{"tf":1.0},"199":{"tf":1.0},"224":{"tf":1.0},"248":{"tf":1.0},"33":{"tf":1.0},"45":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"98":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"113":{"tf":1.0},"129":{"tf":1.4142135623730951},"132":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"165":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"3":{"tf":1.0},"4":{"tf":1.0},"94":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"137":{"tf":1.0},"173":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"182":{"tf":1.0},"250":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"177":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"213":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0}}},"y":{"(":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"213":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"f":{">":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"3":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"f":{">":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"`":{"'":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"125":{"tf":1.0},"215":{"tf":1.0},"36":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"122":{"tf":1.0},"210":{"tf":1.0},"248":{"tf":1.0}}}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"247":{"tf":1.0},"248":{"tf":1.0},"255":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{"df":1,"docs":{"233":{"tf":1.0}},"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":4,"docs":{"246":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"254":{"tf":1.0},"52":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"75":{"tf":1.0},"79":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"75":{"tf":1.0},"77":{"tf":1.7320508075688772}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"g":{"df":5,"docs":{"165":{"tf":1.0},"167":{"tf":1.0},"216":{"tf":1.0},"252":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":21,"docs":{"121":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":2.449489742783178},"185":{"tf":1.0},"186":{"tf":2.0},"195":{"tf":1.0},"199":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.4142135623730951},"247":{"tf":1.0},"248":{"tf":2.449489742783178},"249":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.7320508075688772},"256":{"tf":1.0},"54":{"tf":1.0},"75":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"168":{"tf":1.0}}}}}}}},"m":{"df":3,"docs":{"107":{"tf":1.4142135623730951},"246":{"tf":1.0},"73":{"tf":2.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"109":{"tf":1.0},"226":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":2.0}}},"df":0,"docs":{}}}},"r":{".":{"_":{"_":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"51":{"tf":1.0}}},"[":{".":{".":{"2":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{".":{"2":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"51":{"tf":1.0}}},"<":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":13,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"251":{"tf":1.0},"48":{"tf":1.7320508075688772},"51":{"tf":3.1622776601683795},"52":{"tf":2.0},"87":{"tf":2.23606797749979},"88":{"tf":1.0},"89":{"tf":2.0},"98":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":9,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"131":{"tf":1.4142135623730951},"218":{"tf":1.0},"220":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"51":{"tf":2.0},"52":{"tf":1.7320508075688772},"89":{"tf":1.7320508075688772}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"251":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"m":{"!":{"(":{"\"":{"a":{"d":{"d":{"df":2,"docs":{"248":{"tf":1.4142135623730951},"249":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"c":{"df":0,"docs":{},"w":{"df":1,"docs":{"254":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"248":{"tf":1.0},"253":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"247":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"250":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"246":{"tf":1.0},"247":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":3.3166247903554},"252":{"tf":1.7320508075688772},"253":{"tf":1.0},"255":{"tf":2.0},"256":{"tf":2.8284271247461903}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.0},"2":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"<":{"[":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":11,"docs":{"246":{"tf":2.449489742783178},"247":{"tf":1.0},"248":{"tf":2.8284271247461903},"249":{"tf":1.7320508075688772},"250":{"tf":1.0},"251":{"tf":1.7320508075688772},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":2.23606797749979},"256":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"!":{"(":{"!":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"0":{".":{"1":{"+":{"0":{".":{"2":{"=":{"=":{"0":{".":{"3":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"3":{"2":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}}},"2":{"4":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"3":{"df":1,"docs":{"25":{"tf":1.0}}},"9":{".":{"6":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"_":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"51":{"tf":1.0}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"!":{"(":{"\"":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{"0":{">":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"187":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"[":{"0":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"p":{".":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"127":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"(":{"&":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"24":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}}},"v":{"df":2,"docs":{"22":{"tf":1.0},"32":{"tf":1.0}},"e":{"c":{".":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"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":{}}},"x":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"!":{"(":{"\"":{"a":{"b":{"c":{"\"":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"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":{}}}}},"u":{"3":{"2":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"(":{"1":{".":{".":{"_":{"_":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"*":{"b":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"df":0,"docs":{}}},"r":{"1":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"x":{"df":1,"docs":{"36":{"tf":1.0}}}},"1":{"0":{"0":{"0":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}},"2":{".":{"4":{"6":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"0":{".":{"1":{"_":{"df":0,"docs":{},"f":{"3":{"2":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"84":{"tf":1.0}}},"df":2,"docs":{"39":{"tf":1.0},"84":{"tf":1.0}}},"6":{"df":3,"docs":{"163":{"tf":1.0},"165":{"tf":1.0},"94":{"tf":1.0}}},"7":{"df":1,"docs":{"167":{"tf":1.0}}},"[":{"df":0,"docs":{},"x":{",":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"_":{",":{"\"":{"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"155":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"107":{"tf":1.7320508075688772},"155":{"tf":1.0},"56":{"tf":1.0}}},"df":1,"docs":{"230":{"tf":1.0}}},"a":{"d":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"(":{"\"":{"4":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"249":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0}},"g":{"df":1,"docs":{"72":{"tf":1.0}}}},"b":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}}}},"df":1,"docs":{"69":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"d":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"1":{"0":{"df":1,"docs":{"97":{"tf":1.0}}},"5":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"97":{"tf":1.0}}},"5":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"114":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"2":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"211":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}}}}}}}},"df":7,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"178":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"45":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"5":{"df":1,"docs":{"134":{"tf":1.0}}},"8":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"f":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"!":{"(":{"\"":{"_":{"_":{"df":2,"docs":{"188":{"tf":1.7320508075688772},"189":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"187":{"tf":2.23606797749979},"188":{"tf":1.0}}}}}}},"{":{"1":{"df":0,"docs":{},"}":{"df":0,"docs":{},"{":{"0":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}}}},":":{"?":{"df":0,"docs":{},"}":{"\"":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"186":{"tf":1.0}}}},"df":0,"docs":{}},"}":{"\"":{",":{"d":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}}}}}},"v":{"df":1,"docs":{"183":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"_":{",":{"a":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"185":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":1,"docs":{"69":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"1":{")":{",":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"2":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"h":{"1":{"df":1,"docs":{"49":{"tf":1.0}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"&":{"4":{"2":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"49":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{")":{",":{"\"":{"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"i":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"2":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"1":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}},"8":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"18":{"tf":1.0},"248":{"tf":1.0},"54":{"tf":1.7320508075688772}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"131":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":0,"docs":{},"y":{"(":{"\"":{"3":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"n":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"2":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"134":{"tf":1.0},"65":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"139":{"tf":1.4142135623730951}}}}},"o":{"df":1,"docs":{"248":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"_":{"_":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{".":{"1":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"3":{".":{"df":0,"docs":{},"i":{"df":1,"docs":{"86":{"tf":1.0}}},"x":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"[":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"199":{"tf":1.0}},"e":{"a":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"1":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"t":{"1":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"_":{"_":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"134":{"tf":1.4142135623730951},"145":{"tf":1.0},"66":{"tf":1.0}}}}}}}},"s":{".":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"45":{"tf":1.0}}},"3":{"df":1,"docs":{"45":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"(":{"&":{"c":{"1":{")":{",":{"1":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{")":{",":{"3":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"139":{"tf":1.4142135623730951},"52":{"tf":1.0}},"e":{"1":{"df":4,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.0},"53":{"tf":1.0}}},"2":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"3":{"df":2,"docs":{"113":{"tf":1.0},"121":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"(":{"&":{"*":{"b":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"131":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"(":{"1":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"137":{"tf":1.0}}}}},"t":{".":{"1":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"28":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"1":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"x":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"8":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":2,"docs":{"131":{"tf":1.0},"22":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"1":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.7320508075688772}}}}}}},"df":2,"docs":{"118":{"tf":1.0},"119":{"tf":1.4142135623730951}}},"2":{"df":5,"docs":{"119":{"tf":1.0},"128":{"tf":1.0},"216":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0}}},"4":{"df":1,"docs":{"119":{"tf":1.0}}},"[":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"1":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"220":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"[":{"1":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"118":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0}},"e":{"c":{".":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"122":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"122":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":8,"docs":{"14":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"18":{"tf":1.0},"248":{"tf":1.4142135623730951},"251":{"tf":1.0},"253":{"tf":1.0},"54":{"tf":1.7320508075688772},"56":{"tf":1.0}}},"z":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":5,"docs":{"131":{"tf":1.4142135623730951},"16":{"tf":1.0},"211":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0}}}}},"df":7,"docs":{"143":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"262":{"tf":1.0},"29":{"tf":1.0},"52":{"tf":1.0},"89":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":10,"docs":{"19":{"tf":1.7320508075688772},"210":{"tf":1.0},"22":{"tf":1.4142135623730951},"248":{"tf":1.0},"249":{"tf":1.0},"31":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":7,"docs":{"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"148":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":2.449489742783178},"78":{"tf":2.23606797749979},"91":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":5,"docs":{"249":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"256":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"c":{"/":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"263":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"264":{"tf":1.0},"6":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":1.0}}},"k":{"df":1,"docs":{"124":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}},"n":{"d":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"171":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"115":{"tf":1.0},"122":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"136":{"tf":1.0},"176":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.0},"252":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"153":{"tf":1.0},"220":{"tf":1.4142135623730951},"250":{"tf":1.0},"256":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"131":{"tf":1.0},"248":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"270":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"264":{"tf":1.0}}}},"y":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"2":{"tf":1.0}},"e":{"!":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"x":{"df":1,"docs":{"253":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"73":{"tf":1.7320508075688772}}}},"":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"\\":{"df":0,"docs":{},"u":{"df":0,"docs":{},"{":{"2":{"1":{"1":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"5":{"2":{"\\":{"df":0,"docs":{},"x":{"7":{"5":{"\\":{"df":0,"docs":{},"x":{"7":{"3":{"\\":{"df":0,"docs":{},"x":{"7":{"4":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"2":{"\\":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"6":{"\\":{"df":0,"docs":{},"x":{"8":{"2":{"\\":{"df":0,"docs":{},"x":{"a":{"8":{"\\":{"df":0,"docs":{},"x":{"8":{"2":{"\\":{"df":0,"docs":{},"x":{"b":{"1":{"\\":{"df":0,"docs":{},"x":{"8":{"2":{"\\":{"df":0,"docs":{},"x":{"b":{"b":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"1":{"df":1,"docs":{"230":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"230":{"tf":1.0}}},">":{"(":{"df":0,"docs":{},"x":{"df":3,"docs":{"195":{"tf":1.7320508075688772},"197":{"tf":1.0},"202":{"tf":1.0}}}},">":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"a":{"a":{"a":{"a":{"df":0,"docs":{},"h":{"!":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"91":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"?":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"153":{"tf":1.0},"154":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"154":{"tf":1.0},"155":{"tf":1.0}}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"154":{"tf":1.0}}},"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}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"143":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":3,"docs":{"3":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"158":{"tf":1.0}}}},":":{":":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"172":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":4,"docs":{"172":{"tf":2.0},"70":{"tf":1.0},"71":{"tf":1.0},"94":{"tf":2.6457513110645907}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"94":{"tf":2.23606797749979}}}}}},"s":{"df":0,"docs":{},"e":{"df":9,"docs":{"11":{"tf":1.0},"113":{"tf":1.4142135623730951},"153":{"tf":1.0},"176":{"tf":1.0},"204":{"tf":1.4142135623730951},"213":{"tf":1.0},"3":{"tf":1.4142135623730951},"60":{"tf":1.0},"94":{"tf":1.0}}},"i":{"c":{"df":8,"docs":{"112":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.0},"20":{"tf":1.0},"238":{"tf":1.0},"247":{"tf":1.0},"93":{"tf":1.0}}},"df":1,"docs":{"213":{"tf":1.0}}}},"z":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":24,"docs":{"105":{"tf":2.0},"131":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"158":{"tf":1.0},"169":{"tf":2.449489742783178},"176":{"tf":1.0},"186":{"tf":1.7320508075688772},"194":{"tf":1.4142135623730951},"195":{"tf":3.605551275463989},"197":{"tf":1.0},"199":{"tf":1.4142135623730951},"202":{"tf":2.23606797749979},"230":{"tf":2.23606797749979},"249":{"tf":2.449489742783178},"250":{"tf":1.7320508075688772},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"60":{"tf":1.0},"69":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"176":{"tf":1.0},"200":{"tf":1.0}}}}},"df":7,"docs":{"108":{"tf":1.0},"195":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"155":{"tf":1.0},"164":{"tf":1.0},"195":{"tf":1.0},"204":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"162":{"tf":1.0},"193":{"tf":1.0}},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"131":{"tf":1.0},"255":{"tf":1.0},"56":{"tf":1.7320508075688772},"60":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"57":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":38,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"115":{"tf":1.0},"118":{"tf":1.4142135623730951},"123":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.0},"194":{"tf":1.0},"202":{"tf":1.0},"255":{"tf":1.0},"36":{"tf":1.4142135623730951},"41":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.4142135623730951},"60":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"152":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"152":{"tf":1.0},"260":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"170":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"256":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"151":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"248":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}},"df":2,"docs":{"122":{"tf":1.0},"62":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"202":{"tf":1.0},"93":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"144":{"tf":1.0},"152":{"tf":2.8284271247461903},"153":{"tf":1.0},"155":{"tf":1.4142135623730951},"176":{"tf":1.0},"189":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"255":{"tf":1.0},"69":{"tf":1.7320508075688772}}}}},"d":{"df":5,"docs":{"14":{"tf":1.0},"16":{"tf":1.0},"210":{"tf":1.0},"37":{"tf":1.0},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"r":{"d":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"100":{"tf":1.0},"99":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":2,"docs":{"100":{"tf":2.6457513110645907},"99":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"t":{"df":9,"docs":{"139":{"tf":1.4142135623730951},"2":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":2.23606797749979},"251":{"tf":2.23606797749979},"253":{"tf":1.4142135623730951},"4":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"139":{"tf":1.0},"25":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":77,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"19":{"tf":1.0},"199":{"tf":1.0},"213":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.7320508075688772},"227":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":2.0},"56":{"tf":1.4142135623730951},"57":{"tf":2.0},"58":{"tf":1.0},"60":{"tf":2.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":2.0},"77":{"tf":1.7320508075688772},"84":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}},"":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":18,"docs":{"161":{"tf":1.0},"162":{"tf":1.7320508075688772},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"227":{"tf":1.0},"247":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.7320508075688772},"255":{"tf":2.23606797749979},"256":{"tf":1.4142135623730951},"71":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"92":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"9":{"tf":1.0}}}}},"o":{"b":{"df":2,"docs":{"176":{"tf":1.0},"185":{"tf":1.7320508075688772}}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"260":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":17,"docs":{"0":{"tf":1.0},"110":{"tf":1.0},"12":{"tf":1.0},"140":{"tf":1.0},"150":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":1.0},"209":{"tf":1.0},"228":{"tf":1.0},"3":{"tf":1.4142135623730951},"35":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"l":{"df":11,"docs":{"105":{"tf":1.7320508075688772},"126":{"tf":1.0},"213":{"tf":1.0},"226":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.4142135623730951},"57":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"25":{"tf":1.0},"69":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"248":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"1":{"df":1,"docs":{"194":{"tf":2.449489742783178}}},"2":{"df":1,"docs":{"194":{"tf":2.23606797749979}}},"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"&":{"df":1,"docs":{"40":{"tf":1.0}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":2,"docs":{"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":19,"docs":{"193":{"tf":1.0},"195":{"tf":3.1622776601683795},"197":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.4142135623730951},"208":{"tf":1.0},"211":{"tf":2.0},"213":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"271":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"77":{"tf":1.0}},"e":{"d":{"(":{"&":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":12,"docs":{"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"139":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":2.0},"210":{"tf":1.0},"248":{"tf":1.4142135623730951},"37":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":14,"docs":{"102":{"tf":1.0},"121":{"tf":1.0},"131":{"tf":1.7320508075688772},"143":{"tf":1.0},"16":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.4142135623730951},"202":{"tf":2.6457513110645907},"203":{"tf":2.449489742783178},"213":{"tf":1.4142135623730951},"51":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.0},"97":{"tf":2.0}}},"df":0,"docs":{}}},"x":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"230":{"tf":1.0}}}}}}}},"2":{"0":{"df":2,"docs":{"37":{"tf":1.0},"59":{"tf":1.0}}},"df":1,"docs":{"75":{"tf":1.0}}},"3":{"df":1,"docs":{"211":{"tf":1.4142135623730951}}},"5":{"df":2,"docs":{"230":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"v":{"4":{"(":{"\"":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"(":{"\"":{":":{":":{"1":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":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":{"227":{"tf":1.0}}}}}},"df":0,"docs":{}},"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":3,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"227":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}},"u":{"8":{"df":2,"docs":{"37":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"230":{"tf":1.7320508075688772},"44":{"tf":1.0}}}},"r":{"\"":{"\\":{"df":0,"docs":{},"u":{"df":0,"docs":{},"{":{"2":{"1":{"1":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"#":{"\"":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"109":{"tf":1.0},"247":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"156":{"tf":1.0},"255":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"176":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"166":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"115":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"'":{"_":{"df":1,"docs":{"207":{"tf":1.0}}},"a":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":1,"docs":{"255":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"5":{"tf":1.4142135623730951}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"6":{"4":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"x":{"df":1,"docs":{"253":{"tf":1.0}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"114":{"tf":1.0}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":13,"docs":{"113":{"tf":1.0},"114":{"tf":2.449489742783178},"115":{"tf":1.7320508075688772},"139":{"tf":1.0},"251":{"tf":1.4142135623730951},"253":{"tf":2.23606797749979},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":3.605551275463989},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0}},"s":{"(":{"&":{"[":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}}}}},"c":{"'":{"df":1,"docs":{"139":{"tf":1.0}}},".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"216":{"tf":1.0}}},"2":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"1":{"df":2,"docs":{"131":{"tf":1.0},"27":{"tf":1.4142135623730951}}},"2":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"131":{"tf":1.0},"156":{"tf":1.0},"27":{"tf":1.0}}},">":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"139":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"105":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"|":{"a":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{",":{"df":1,"docs":{"216":{"tf":1.7320508075688772}}},"df":1,"docs":{"97":{"tf":2.449489742783178}}}},"df":2,"docs":{"216":{"tf":1.0},"97":{"tf":2.0}}}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"1":{"0":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"226":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"97":{"tf":2.0}}}}},"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"252":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":1,"docs":{"214":{"tf":1.4142135623730951}},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"214":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"<":{"'":{"a":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"216":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":25,"docs":{"102":{"tf":1.7320508075688772},"107":{"tf":1.0},"109":{"tf":1.0},"126":{"tf":1.0},"143":{"tf":1.7320508075688772},"153":{"tf":1.7320508075688772},"155":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.7320508075688772},"219":{"tf":1.0},"223":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"226":{"tf":1.0},"250":{"tf":1.0},"252":{"tf":2.0},"256":{"tf":1.7320508075688772},"47":{"tf":1.0},"53":{"tf":1.0},"75":{"tf":2.23606797749979},"77":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"139":{"tf":1.0},"34":{"tf":1.0},"75":{"tf":2.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"4":{"tf":1.0}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":14,"docs":{"114":{"tf":1.0},"127":{"tf":1.0},"168":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"250":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":1.0},"88":{"tf":1.0},"98":{"tf":1.0}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}},"":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.7320508075688772}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}}},"c":{"df":3,"docs":{"115":{"tf":2.6457513110645907},"122":{"tf":2.6457513110645907},"127":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"176":{"tf":1.0},"190":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"213":{"tf":4.123105625617661},"215":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"56":{"tf":1.7320508075688772},"73":{"tf":1.0}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":6,"docs":{"144":{"tf":1.0},"151":{"tf":2.23606797749979},"152":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0}}}}}}},"df":8,"docs":{"1":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":2.0},"204":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":19,"docs":{"108":{"tf":1.0},"121":{"tf":1.0},"142":{"tf":1.0},"151":{"tf":1.0},"195":{"tf":1.7320508075688772},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.0},"256":{"tf":1.0},"270":{"tf":1.0},"37":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"66":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}},"t":{"df":2,"docs":{"131":{"tf":1.7320508075688772},"139":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":2,"docs":{"45":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"u":{"df":0,"docs":{},"s":{"df":11,"docs":{"100":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"131":{"tf":1.4142135623730951},"204":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":15,"docs":{"105":{"tf":1.4142135623730951},"114":{"tf":1.0},"124":{"tf":1.0},"158":{"tf":1.0},"186":{"tf":1.0},"216":{"tf":1.0},"24":{"tf":1.0},"249":{"tf":2.23606797749979},"252":{"tf":1.4142135623730951},"27":{"tf":1.0},"39":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"60":{"tf":1.0},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"187":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"1":{"0":{"0":{".":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"6":{"4":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"127":{"tf":1.0},"158":{"tf":1.0},"57":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"139":{"tf":1.0},"2":{"tf":1.0},"224":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"0":{"tf":1.0},"12":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":18,"docs":{"122":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":1.0},"137":{"tf":1.0},"146":{"tf":1.0},"176":{"tf":1.0},"199":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"224":{"tf":1.0},"248":{"tf":1.0},"36":{"tf":1.4142135623730951},"39":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"_":{"_":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"3":{"2":{"df":2,"docs":{"60":{"tf":1.7320508075688772},"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"110":{"tf":1.0},"132":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"2":{"tf":1.0},"270":{"tf":1.0},"48":{"tf":1.0},"98":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"187":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":11,"docs":{"114":{"tf":2.0},"131":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"39":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}},"v":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"89":{"tf":1.4142135623730951}},"e":{"(":{"[":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}},"0":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"8":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"132":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"226":{"tf":1.0},"39":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"195":{"tf":1.0},"197":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":4,"docs":{"102":{"tf":1.0},"213":{"tf":1.0},"248":{"tf":1.0},"253":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"253":{"tf":1.0},"73":{"tf":1.0},"96":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"235":{"tf":1.0}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"126":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"144":{"tf":1.7320508075688772}}},"r":{"df":1,"docs":{"114":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"105":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"7":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"6":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":2.449489742783178}}}}}}}},"o":{"b":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"b":{"df":0,"docs":{},"i":{"(":{"\"":{"c":{"df":1,"docs":{"252":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"252":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"251":{"tf":2.0},"252":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":4,"docs":{"1":{"tf":1.0},"105":{"tf":1.7320508075688772},"36":{"tf":1.0},"7":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"161":{"tf":1.0},"183":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"210":{"tf":3.0},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":4.242640687119285},"214":{"tf":1.7320508075688772},"215":{"tf":1.7320508075688772},"216":{"tf":1.0},"224":{"tf":1.0},"97":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"213":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"210":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"210":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"131":{"tf":1.0},"143":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"114":{"tf":1.0}}}}}}}},"m":{"d":{"df":1,"docs":{"250":{"tf":1.7320508075688772}}},"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"255":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":78,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.7320508075688772},"103":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"11":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"123":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.7320508075688772},"137":{"tf":1.0},"14":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.4142135623730951},"149":{"tf":1.0},"153":{"tf":2.0},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.4142135623730951},"16":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":2.0},"170":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"183":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"211":{"tf":1.4142135623730951},"213":{"tf":1.0},"218":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"246":{"tf":1.0},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"251":{"tf":2.0},"252":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.7320508075688772},"256":{"tf":2.23606797749979},"270":{"tf":1.0},"271":{"tf":1.0},"3":{"tf":1.7320508075688772},"36":{"tf":2.0},"39":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.7320508075688772},"79":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":2.0},"86":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"255":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"195":{"tf":1.0},"199":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}},"i":{"c":{"(":{"&":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"<":{"'":{"a":{">":{"(":{"_":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"110":{"tf":1.0},"119":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"137":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":3.0},"223":{"tf":2.23606797749979},"3":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"75":{"tf":1.0}}},"r":{"(":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":4,"docs":{"211":{"tf":2.23606797749979},"56":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"205":{"tf":1.0},"3":{"tf":1.0},"47":{"tf":1.0}}},"m":{"a":{"df":1,"docs":{"183":{"tf":1.0}},"n":{"d":{"df":3,"docs":{"169":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"160":{"tf":1.4142135623730951},"161":{"tf":2.0},"162":{"tf":2.8284271247461903},"163":{"tf":1.0},"164":{"tf":1.7320508075688772},"165":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":3.1622776601683795},"169":{"tf":2.449489742783178},"170":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"41":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.0},"171":{"tf":1.0},"197":{"tf":1.4142135623730951},"270":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"174":{"tf":1.0}}}}},"p":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"_":{"_":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"123":{"tf":1.0},"127":{"tf":1.0},"194":{"tf":1.0},"203":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}},"i":{"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":39,"docs":{"0":{"tf":1.0},"102":{"tf":2.23606797749979},"117":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.4142135623730951},"152":{"tf":1.0},"16":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"177":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"200":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951},"210":{"tf":1.0},"213":{"tf":1.7320508075688772},"22":{"tf":1.4142135623730951},"226":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"251":{"tf":1.7320508075688772},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":2.23606797749979},"270":{"tf":1.4142135623730951},"41":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"153":{"tf":1.0},"154":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"155":{"tf":1.0},"213":{"tf":1.0},"77":{"tf":1.0}}},"x":{"df":4,"docs":{"182":{"tf":1.0},"195":{"tf":1.0},"224":{"tf":1.0},"248":{"tf":1.0}}}},"i":{"c":{"df":3,"docs":{"168":{"tf":1.0},"176":{"tf":1.0},"228":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"197":{"tf":1.0}}}}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"108":{"tf":2.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"108":{"tf":1.0},"168":{"tf":1.0},"25":{"tf":1.0},"54":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"168":{"tf":1.0}}}},":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"169":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"169":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"102":{"tf":1.0},"106":{"tf":1.4142135623730951},"56":{"tf":1.0},"60":{"tf":1.0},"84":{"tf":1.7320508075688772},"88":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"64":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}},"df":1,"docs":{"60":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"199":{"tf":2.449489742783178}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"122":{"tf":1.0}}}}},"s":{"(":{"_":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"3":{"2":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"255":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"249":{"tf":1.0}}}}},"i":{"d":{"df":4,"docs":{"114":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"177":{"tf":1.0},"60":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"114":{"tf":1.0},"199":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}},"df":7,"docs":{"131":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"228":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":3.872983346207417},"89":{"tf":1.7320508075688772}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"195":{"tf":1.0},"199":{"tf":1.0}},"t":{"df":3,"docs":{"114":{"tf":1.0},"195":{"tf":1.0},"250":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"63":{"tf":1.0},"88":{"tf":1.0},"97":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":9,"docs":{"208":{"tf":1.0},"211":{"tf":2.449489742783178},"220":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.7320508075688772},"224":{"tf":1.0},"249":{"tf":1.0},"60":{"tf":1.0},"75":{"tf":1.4142135623730951}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"105":{"tf":2.449489742783178},"122":{"tf":1.0},"126":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":2.0},"169":{"tf":1.0},"176":{"tf":1.4142135623730951},"195":{"tf":1.0},"200":{"tf":1.4142135623730951},"202":{"tf":1.0},"230":{"tf":1.0},"255":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"1":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"1":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"<":{"a":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"91":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"111":{"tf":1.0},"133":{"tf":1.0},"144":{"tf":1.0},"250":{"tf":1.0},"252":{"tf":1.0},"95":{"tf":2.0}},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"(":{")":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"133":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":4,"docs":{"12":{"tf":1.0},"205":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":2.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":7,"docs":{"139":{"tf":1.0},"153":{"tf":1.0},"181":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"61":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"105":{"tf":1.0},"210":{"tf":1.0},"47":{"tf":1.0}}},"t":{"df":2,"docs":{"252":{"tf":1.4142135623730951},"256":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":15,"docs":{"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"176":{"tf":1.0},"220":{"tf":1.4142135623730951},"223":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"60":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"d":{"df":1,"docs":{"137":{"tf":1.0}},"s":{"[":{"0":{"]":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{":":{":":{"<":{"df":0,"docs":{},"i":{"3":{"2":{"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":{}},"1":{"]":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{":":{":":{"<":{"df":0,"docs":{},"i":{"3":{"2":{"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":{}}},"p":{"df":0,"docs":{},"i":{"df":9,"docs":{"121":{"tf":1.0},"128":{"tf":1.4142135623730951},"139":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.4142135623730951},"248":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"36":{"tf":1.0}}},"y":{"df":0,"docs":{},"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{":":{":":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{":":{":":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"251":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{":":{":":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{":":{":":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"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":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"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":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"&":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"176":{"tf":1.0},"177":{"tf":1.0},"195":{"tf":1.0},"253":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"249":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"155":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"102":{"tf":1.0},"131":{"tf":1.0},"251":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"0":{"tf":1.4142135623730951},"183":{"tf":2.0},"211":{"tf":2.449489742783178},"221":{"tf":1.4142135623730951},"66":{"tf":3.3166247903554},"70":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":3,"docs":{"221":{"tf":2.449489742783178},"64":{"tf":1.0},"66":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.7320508075688772}}},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"251":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}},"w":{"df":1,"docs":{"96":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"142":{"tf":2.0}}},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"251":{"tf":1.4142135623730951}},"i":{"d":{"df":1,"docs":{"251":{"tf":2.23606797749979}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"a":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{":":{":":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"173":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":11,"docs":{"109":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":4.58257569495584},"153":{"tf":2.23606797749979},"155":{"tf":1.7320508075688772},"156":{"tf":1.0},"158":{"tf":1.7320508075688772},"168":{"tf":2.23606797749979},"226":{"tf":1.0},"255":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":27,"docs":{"109":{"tf":1.0},"113":{"tf":2.0},"126":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"157":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"183":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.7320508075688772},"226":{"tf":1.0},"227":{"tf":1.0},"230":{"tf":1.4142135623730951},"57":{"tf":1.0},"60":{"tf":1.7320508075688772},"72":{"tf":1.0},"73":{"tf":1.0},"9":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"194":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"115":{"tf":1.0},"124":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.0},"204":{"tf":1.0},"246":{"tf":1.0},"65":{"tf":1.0},"77":{"tf":1.7320508075688772},"88":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"270":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"133":{"tf":1.0},"137":{"tf":1.0},"176":{"tf":1.4142135623730951},"182":{"tf":1.0},"256":{"tf":1.0}}}}}}},"x":{"df":1,"docs":{"253":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"111":{"tf":1.0},"270":{"tf":1.0}}}}},"t":{"a":{"df":18,"docs":{"115":{"tf":1.4142135623730951},"139":{"tf":1.0},"144":{"tf":1.0},"195":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"205":{"tf":1.7320508075688772},"213":{"tf":1.0},"248":{"tf":1.0},"253":{"tf":1.0},"256":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"89":{"tf":2.0}}},"df":0,"docs":{}},"y":{"df":3,"docs":{"10":{"tf":1.0},"176":{"tf":1.0},"226":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"i":{"6":{"4":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"0":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"g":{"!":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"3":{"0":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"226":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"183":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":10,"docs":{"149":{"tf":1.4142135623730951},"176":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":2.0},"182":{"tf":1.7320508075688772},"200":{"tf":1.7320508075688772},"202":{"tf":2.0},"224":{"tf":1.0},"58":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"181":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"131":{"tf":1.7320508075688772}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"16":{"tf":1.0},"248":{"tf":1.4142135623730951},"251":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"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":{"181":{"tf":1.0}},"e":{"(":{"7":{"df":1,"docs":{"181":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"4":{"tf":1.0}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":18,"docs":{"105":{"tf":1.0},"106":{"tf":2.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"187":{"tf":1.0},"195":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"186":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":16,"docs":{"103":{"tf":1.0},"109":{"tf":1.4142135623730951},"132":{"tf":1.0},"148":{"tf":1.0},"156":{"tf":1.0},"177":{"tf":1.0},"200":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"45":{"tf":1.0},"56":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"x":{"df":1,"docs":{"15":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"181":{"tf":1.0},"255":{"tf":1.0},"91":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"161":{"tf":1.0},"47":{"tf":1.7320508075688772}}}}}},"v":{"df":1,"docs":{"4":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"246":{"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":{"169":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"126":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.0},"213":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"108":{"tf":1.0},"132":{"tf":1.0},"256":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"138":{"tf":1.4142135623730951},"231":{"tf":1.0},"53":{"tf":1.0}}}},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"123":{"tf":1.0},"126":{"tf":1.4142135623730951},"181":{"tf":1.7320508075688772},"182":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":18,"docs":{"106":{"tf":1.0},"123":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"181":{"tf":2.0},"195":{"tf":2.6457513110645907},"199":{"tf":1.0},"202":{"tf":1.0},"205":{"tf":1.0},"37":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"224":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"145":{"tf":1.0},"152":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}},"r":{"df":1,"docs":{"256":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"139":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":2,"docs":{"193":{"tf":1.0},"75":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"18":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"37":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.0},"75":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"11":{"tf":1.0},"143":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"132":{"tf":1.0},"195":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":1.0},"52":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"10":{"tf":1.0},"111":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"213":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"105":{"tf":1.0},"121":{"tf":1.0},"139":{"tf":1.0},"151":{"tf":1.0},"154":{"tf":1.0},"195":{"tf":1.7320508075688772},"198":{"tf":1.0},"202":{"tf":1.0},"212":{"tf":1.0},"220":{"tf":1.0},"248":{"tf":1.7320508075688772},"54":{"tf":1.0},"70":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"a":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}},"i":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}},"r":{"df":2,"docs":{"152":{"tf":1.4142135623730951},"154":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"255":{"tf":1.0},"69":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"107":{"tf":1.0},"136":{"tf":1.0},"176":{"tf":1.0},"219":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"250":{"tf":1.0},"52":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"151":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772}}}}}}},"df":1,"docs":{"69":{"tf":1.4142135623730951}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.0}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"102":{"tf":2.449489742783178}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"123":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"109":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"176":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":2.23606797749979},"200":{"tf":2.449489742783178},"226":{"tf":1.4142135623730951},"228":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"123":{"tf":1.4142135623730951},"17":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"(":{"a":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"169":{"tf":1.0}},"e":{"df":1,"docs":{"0":{"tf":1.0}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"34":{"tf":2.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"(":{"1":{"5":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{":":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"271":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"u":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"c":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"172":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"173":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"(":{"1":{"0":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"(":{"1":{"0":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":13,"docs":{"132":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":2.23606797749979},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":2.8284271247461903},"169":{"tf":3.1622776601683795},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.7320508075688772},"174":{"tf":1.0},"175":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"174":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}}}},"df":6,"docs":{"102":{"tf":1.0},"136":{"tf":1.0},"256":{"tf":1.0},"3":{"tf":1.0},"37":{"tf":1.0},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"125":{"tf":1.4142135623730951},"129":{"tf":1.0},"152":{"tf":1.0},"176":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{},"":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.7320508075688772}}}}}}},"g":{"df":2,"docs":{"176":{"tf":1.0},"45":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"\\":{"df":0,"docs":{},"x":{"3":{"df":0,"docs":{},"f":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"91":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":32,"docs":{"103":{"tf":1.0},"112":{"tf":1.4142135623730951},"128":{"tf":1.0},"131":{"tf":1.4142135623730951},"137":{"tf":1.0},"146":{"tf":1.4142135623730951},"154":{"tf":1.0},"156":{"tf":1.0},"169":{"tf":1.0},"22":{"tf":1.4142135623730951},"227":{"tf":1.0},"251":{"tf":1.0},"29":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772},"37":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"122":{"tf":1.4142135623730951},"251":{"tf":1.0}}},"t":{"df":2,"docs":{"211":{"tf":1.4142135623730951},"78":{"tf":1.0}}},"":{"df":0,"docs":{},"t":{"df":2,"docs":{"56":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}},"t":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}},"u":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"195":{"tf":1.4142135623730951},"213":{"tf":1.7320508075688772},"47":{"tf":1.0},"75":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"127":{"tf":1.4142135623730951},"154":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"101":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"(":{"_":{"_":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"i":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"101":{"tf":2.449489742783178}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"(":{"_":{"_":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":7,"docs":{"115":{"tf":1.0},"127":{"tf":1.4142135623730951},"195":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"232":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.4142135623730951}}}},"u":{"c":{"df":0,"docs":{},"k":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":2,"docs":{"100":{"tf":2.8284271247461903},"99":{"tf":3.0}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"151":{"tf":1.0},"204":{"tf":1.0},"255":{"tf":1.4142135623730951},"73":{"tf":1.0},"87":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"253":{"tf":1.0}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"102":{"tf":2.0},"228":{"tf":1.4142135623730951}},"i":{"c":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"&":{"df":0,"docs":{},"i":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"101":{"tf":1.0},"108":{"tf":1.0},"200":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":11,"docs":{"22":{"tf":1.0},"246":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.7320508075688772},"255":{"tf":1.0},"256":{"tf":1.0},"43":{"tf":1.0},"52":{"tf":1.0},"63":{"tf":1.0},"89":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":22,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"144":{"tf":1.0},"152":{"tf":1.0},"156":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"2":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.7320508075688772},"227":{"tf":1.0},"230":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}},"s":{"df":1,"docs":{"153":{"tf":1.0}},"i":{"df":5,"docs":{"0":{"tf":1.0},"182":{"tf":1.0},"2":{"tf":1.4142135623730951},"248":{"tf":1.0},"3":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"132":{"tf":1.0},"205":{"tf":1.0}}}}},"t":{"df":1,"docs":{"69":{"tf":1.0}}}},"t":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"153":{"tf":1.7320508075688772},"154":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"df":3,"docs":{"250":{"tf":2.0},"251":{"tf":1.7320508075688772},"253":{"tf":1.0}}}},"b":{"df":0,"docs":{},"p":{"df":1,"docs":{"250":{"tf":1.0}}},"x":{"df":2,"docs":{"250":{"tf":1.0},"251":{"tf":3.1622776601683795}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"164":{"tf":1.0}}}}},"x":{"df":2,"docs":{"250":{"tf":1.0},"251":{"tf":1.7320508075688772}}}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"250":{"tf":1.0}},"t":{"df":2,"docs":{"151":{"tf":1.4142135623730951},"2":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}}}},"x":{"df":2,"docs":{"250":{"tf":1.0},"251":{"tf":1.4142135623730951}}}},"df":6,"docs":{"145":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"216":{"tf":2.449489742783178},"48":{"tf":1.0},"70":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"256":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":1,"docs":{"200":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"x":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"'":{"a":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"51":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"176":{"tf":1.0},"181":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951}}},"m":{"df":1,"docs":{"60":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"115":{"tf":1.0},"122":{"tf":2.23606797749979},"123":{"tf":1.0},"131":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"195":{"tf":1.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"51":{"tf":1.4142135623730951},"54":{"tf":1.0},"60":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}}},"i":{"d":{"df":2,"docs":{"197":{"tf":1.0},"219":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"106":{"tf":1.0},"183":{"tf":1.0},"256":{"tf":1.4142135623730951}}}}},"s":{"df":3,"docs":{"195":{"tf":1.4142135623730951},"197":{"tf":2.23606797749979},"207":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.7320508075688772}}}}},"b":{"df":1,"docs":{"246":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"253":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"122":{"tf":1.0},"125":{"tf":1.0},"60":{"tf":1.7320508075688772}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"194":{"tf":1.0},"210":{"tf":1.0},"88":{"tf":1.0}}}}},"o":{"d":{"df":3,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"144":{"tf":1.0},"198":{"tf":1.0}}}}}}},"d":{"df":9,"docs":{"161":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"24":{"tf":1.0},"250":{"tf":1.0},"255":{"tf":1.0},"60":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"139":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"1":{"tf":1.0},"204":{"tf":1.0}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":12,"docs":{"0":{"tf":1.0},"110":{"tf":1.0},"130":{"tf":1.0},"140":{"tf":1.0},"150":{"tf":1.0},"192":{"tf":1.0},"20":{"tf":1.0},"209":{"tf":1.0},"35":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"115":{"tf":1.0},"195":{"tf":1.0},"226":{"tf":1.4142135623730951},"66":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"109":{"tf":1.0},"125":{"tf":1.0},"139":{"tf":1.0},"155":{"tf":1.0},"193":{"tf":1.0},"251":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"162":{"tf":1.0},"194":{"tf":1.0},"251":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"125":{"tf":1.4142135623730951},"251":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":15,"docs":{"123":{"tf":1.7320508075688772},"133":{"tf":1.0},"145":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.0},"227":{"tf":1.4142135623730951},"60":{"tf":4.0},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"73":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.7320508075688772},"89":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"183":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"143":{"tf":1.0},"190":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"!":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"177":{"tf":1.0}},"l":{"df":0,"docs":{},"n":{"df":1,"docs":{"177":{"tf":1.0}}}}}}}}},"q":{"df":2,"docs":{"105":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772}},"u":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"114":{"tf":1.0},"115":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"39":{"tf":1.0},"50":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"139":{"tf":1.4142135623730951},"146":{"tf":1.0},"218":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"(":{"df":7,"docs":{"134":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":2.0},"147":{"tf":2.23606797749979},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"48":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":5,"docs":{"134":{"tf":1.4142135623730951},"137":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":78,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.7320508075688772},"128":{"tf":1.0},"131":{"tf":2.23606797749979},"132":{"tf":1.4142135623730951},"133":{"tf":2.0},"134":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"145":{"tf":1.7320508075688772},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.7320508075688772},"15":{"tf":1.4142135623730951},"153":{"tf":1.0},"155":{"tf":1.0},"169":{"tf":1.4142135623730951},"177":{"tf":1.0},"18":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"186":{"tf":1.0},"195":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"204":{"tf":1.0},"211":{"tf":1.4142135623730951},"213":{"tf":1.0},"215":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"244":{"tf":1.0},"25":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"271":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772},"41":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"191":{"tf":1.0},"47":{"tf":2.449489742783178},"48":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":1,"docs":{"250":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"270":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"251":{"tf":1.0}}}},"t":{"c":{"df":4,"docs":{"139":{"tf":1.0},"2":{"tf":1.0},"253":{"tf":1.0},"256":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":9,"docs":{"122":{"tf":1.0},"148":{"tf":1.0},"176":{"tf":1.0},"213":{"tf":1.0},"251":{"tf":1.4142135623730951},"256":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"87":{"tf":1.0}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"134":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"162":{"tf":1.0},"204":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"148":{"tf":1.0},"46":{"tf":1.0}}}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"146":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"251":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":57,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.4142135623730951},"158":{"tf":1.0},"162":{"tf":1.4142135623730951},"165":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":2.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":3.0},"196":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":2.0},"202":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.7320508075688772},"249":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.7320508075688772},"256":{"tf":1.4142135623730951},"31":{"tf":1.0},"37":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":1.0},"75":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"94":{"tf":1.0}},"e":{"1":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"<":{"'":{"a":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"212":{"tf":1.0}},"e":{"(":{"5":{"df":1,"docs":{"212":{"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":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":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":{}}}}}},"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"122":{"tf":1.0},"131":{"tf":1.0},"202":{"tf":1.0}},"l":{"df":1,"docs":{"3":{"tf":1.0}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"127":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"255":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"213":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"<":{"'":{"a":{"df":1,"docs":{"213":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":1,"docs":{"213":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"248":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":17,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"107":{"tf":1.0},"116":{"tf":1.0},"138":{"tf":1.0},"155":{"tf":1.0},"163":{"tf":1.0},"2":{"tf":2.0},"208":{"tf":1.0},"270":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.0},"59":{"tf":1.0},"76":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"125":{"tf":1.4142135623730951},"151":{"tf":1.0},"197":{"tf":1.0}}}},"t":{"df":3,"docs":{"141":{"tf":1.4142135623730951},"195":{"tf":1.0},"251":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"122":{"tf":1.0},"145":{"tf":1.0},"169":{"tf":1.0},"248":{"tf":1.0},"34":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"194":{"tf":1.0},"204":{"tf":1.0},"228":{"tf":1.0}}}},"n":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"125":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"195":{"tf":1.4142135623730951},"250":{"tf":2.0},"251":{"tf":1.4142135623730951},"60":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"22":{"tf":1.4142135623730951},"255":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"y":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"34":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"88":{"tf":2.23606797749979},"89":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"<":{"'":{"b":{">":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"139":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":2,"docs":{"118":{"tf":1.4142135623730951},"139":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"109":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"252":{"tf":1.0},"256":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"183":{"tf":1.0},"54":{"tf":1.0}}}},"df":3,"docs":{"102":{"tf":1.0},"176":{"tf":1.0},"187":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}},"f":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"213":{"tf":1.4142135623730951}}}}}}}},"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"103":{"tf":1.7320508075688772}}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"3":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}},".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"146":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"3":{"2":{":":{":":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{":":{":":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"126":{"tf":1.0},"23":{"tf":1.4142135623730951},"86":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":11,"docs":{"101":{"tf":1.0},"126":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":2.449489742783178},"176":{"tf":1.0},"182":{"tf":1.4142135623730951},"23":{"tf":1.0},"75":{"tf":3.0},"85":{"tf":1.4142135623730951},"93":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"<":{"'":{"a":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},">":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"248":{"tf":1.0}}}},"t":{"df":2,"docs":{"132":{"tf":1.0},"87":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"x":{":":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"141":{"tf":1.4142135623730951},"143":{"tf":1.0},"169":{"tf":2.0},"194":{"tf":1.0},"195":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":1.4142135623730951}},"e":{"d":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"<":{"'":{"a":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"96":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":5,"docs":{"25":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"69":{"tf":1.0},"91":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"248":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"213":{"tf":2.23606797749979}},"l":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"176":{"tf":1.0},"177":{"tf":1.0}}}}}}},"v":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"108":{"tf":1.4142135623730951}},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"108":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"108":{"tf":1.0}}}}}}}},"df":11,"docs":{"109":{"tf":1.0},"146":{"tf":1.7320508075688772},"183":{"tf":1.0},"203":{"tf":1.4142135623730951},"213":{"tf":4.358898943540674},"214":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"255":{"tf":1.0},"28":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"170":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"260":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"220":{"tf":1.4142135623730951}}}}},"w":{"df":10,"docs":{"114":{"tf":1.0},"155":{"tf":1.0},"162":{"tf":1.0},"171":{"tf":1.0},"195":{"tf":1.0},"227":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"54":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"122":{"tf":1.0},"256":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"256":{"tf":1.0}}}},"i":{"b":{"df":1,"docs":{"221":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"207":{"tf":1.4142135623730951},"56":{"tf":2.23606797749979},"57":{"tf":1.4142135623730951},"75":{"tf":1.0}},"s":{"'":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"146":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":9,"docs":{"146":{"tf":1.0},"151":{"tf":1.7320508075688772},"152":{"tf":2.8284271247461903},"154":{"tf":1.4142135623730951},"166":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"59":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"l":{"df":81,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"19":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"213":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.7320508075688772},"227":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":2.0},"34":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":2.0},"56":{"tf":1.4142135623730951},"57":{"tf":2.0},"58":{"tf":1.0},"60":{"tf":2.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":2.0},"77":{"tf":1.7320508075688772},"84":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"169":{"tf":2.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"141":{"tf":1.0},"256":{"tf":1.0},"60":{"tf":1.0}}}},"d":{"df":48,"docs":{"103":{"tf":1.0},"109":{"tf":1.0},"116":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0},"159":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":1.0},"216":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"25":{"tf":1.0},"271":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":2,"docs":{"195":{"tf":1.0},"253":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"169":{"tf":2.0},"217":{"tf":1.0},"248":{"tf":1.0},"3":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":1,"docs":{"53":{"tf":1.0}}},"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"148":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{":":{":":{"<":{"df":0,"docs":{},"i":{"3":{"2":{">":{"(":{")":{".":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":16,"docs":{"105":{"tf":1.0},"114":{"tf":1.4142135623730951},"151":{"tf":1.0},"16":{"tf":1.0},"183":{"tf":1.0},"204":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.7320508075688772},"249":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"75":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"78":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"t":{"df":2,"docs":{"131":{"tf":1.0},"89":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"60":{"tf":1.0}}}},"x":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"153":{"tf":1.0},"154":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"195":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"195":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":56,"docs":{"112":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"14":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"15":{"tf":1.4142135623730951},"153":{"tf":1.0},"155":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"181":{"tf":1.0},"186":{"tf":1.0},"195":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"25":{"tf":1.0},"271":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"m":{"df":2,"docs":{"176":{"tf":1.4142135623730951},"195":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"102":{"tf":1.0},"121":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"210":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"o":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"126":{"tf":1.0},"131":{"tf":1.4142135623730951},"188":{"tf":1.0},"23":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":1,"docs":{"61":{"tf":1.0}}}},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"107":{"tf":2.23606797749979},"99":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"109":{"tf":1.0},"183":{"tf":1.0},"226":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":4,"docs":{"105":{"tf":1.7320508075688772},"176":{"tf":1.0},"181":{"tf":2.0},"182":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":7,"docs":{"109":{"tf":1.0},"136":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":1.0},"183":{"tf":1.0},"226":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":1.0},"183":{"tf":2.0},"226":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"136":{"tf":1.0}}}},"n":{"(":{"&":{"'":{"a":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},")":{">":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"216":{"tf":1.4142135623730951}}},"i":{"3":{"2":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"3":{"2":{"df":1,"docs":{"97":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"z":{"df":0,"docs":{},"|":{"df":0,"docs":{},"{":{"df":0,"docs":{},"z":{"df":1,"docs":{"213":{"tf":1.0}}}}}}}},"<":{"df":0,"docs":{},"f":{">":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"1":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":162,"docs":{"100":{"tf":2.449489742783178},"101":{"tf":2.449489742783178},"102":{"tf":2.449489742783178},"103":{"tf":2.23606797749979},"105":{"tf":3.0},"106":{"tf":1.4142135623730951},"107":{"tf":3.3166247903554},"108":{"tf":2.449489742783178},"109":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":2.449489742783178},"125":{"tf":2.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":2.23606797749979},"132":{"tf":1.4142135623730951},"133":{"tf":1.7320508075688772},"134":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"139":{"tf":2.449489742783178},"14":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":2.0},"145":{"tf":1.4142135623730951},"146":{"tf":2.23606797749979},"147":{"tf":2.449489742783178},"148":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"15":{"tf":1.7320508075688772},"153":{"tf":2.0},"154":{"tf":3.0},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.7320508075688772},"16":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":2.23606797749979},"17":{"tf":1.0},"170":{"tf":1.4142135623730951},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"181":{"tf":1.7320508075688772},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":4.123105625617661},"196":{"tf":2.23606797749979},"197":{"tf":2.449489742783178},"198":{"tf":1.0},"199":{"tf":2.6457513110645907},"200":{"tf":3.4641016151377544},"202":{"tf":2.8284271247461903},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"205":{"tf":1.7320508075688772},"208":{"tf":2.0},"210":{"tf":1.7320508075688772},"211":{"tf":2.23606797749979},"212":{"tf":1.4142135623730951},"213":{"tf":4.358898943540674},"214":{"tf":1.7320508075688772},"215":{"tf":1.7320508075688772},"216":{"tf":2.0},"218":{"tf":2.0},"219":{"tf":1.4142135623730951},"22":{"tf":2.6457513110645907},"220":{"tf":1.7320508075688772},"221":{"tf":2.449489742783178},"223":{"tf":1.4142135623730951},"224":{"tf":2.0},"226":{"tf":3.3166247903554},"227":{"tf":2.23606797749979},"228":{"tf":2.23606797749979},"23":{"tf":1.7320508075688772},"230":{"tf":2.23606797749979},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"254":{"tf":1.0},"27":{"tf":1.7320508075688772},"271":{"tf":2.0},"28":{"tf":1.4142135623730951},"29":{"tf":2.0},"31":{"tf":1.0},"32":{"tf":2.0},"33":{"tf":2.6457513110645907},"34":{"tf":2.0},"36":{"tf":3.1622776601683795},"37":{"tf":1.7320508075688772},"39":{"tf":3.0},"40":{"tf":2.23606797749979},"41":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"45":{"tf":2.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":2.6457513110645907},"52":{"tf":1.7320508075688772},"53":{"tf":2.0},"54":{"tf":2.6457513110645907},"56":{"tf":2.23606797749979},"57":{"tf":2.23606797749979},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":3.4641016151377544},"62":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"69":{"tf":2.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"72":{"tf":1.0},"73":{"tf":2.6457513110645907},"75":{"tf":2.6457513110645907},"77":{"tf":2.8284271247461903},"78":{"tf":2.0},"79":{"tf":1.7320508075688772},"80":{"tf":1.0},"84":{"tf":2.6457513110645907},"85":{"tf":2.0},"86":{"tf":2.0},"88":{"tf":2.0},"89":{"tf":2.23606797749979},"91":{"tf":3.3166247903554},"92":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"94":{"tf":2.449489742783178},"95":{"tf":2.449489742783178},"96":{"tf":2.23606797749979},"97":{"tf":3.605551275463989},"99":{"tf":2.6457513110645907}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"213":{"tf":2.23606797749979}}}}},"o":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"213":{"tf":2.23606797749979}},"e":{"(":{")":{">":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"213":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":2,"docs":{"223":{"tf":1.0},"224":{"tf":1.0}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":23,"docs":{"103":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.7320508075688772},"170":{"tf":1.0},"187":{"tf":1.0},"195":{"tf":1.0},"207":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"215":{"tf":1.0},"218":{"tf":1.4142135623730951},"227":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0}}}}}},"o":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"252":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"158":{"tf":1.0}}}},".":{"b":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},":":{":":{"<":{"2":{"0":{"2":{"1":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":1,"docs":{"88":{"tf":1.0}}},"{":{"2":{"0":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"71":{"tf":1.4142135623730951}}},"z":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"(":{"1":{"0":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"228":{"tf":1.0}}}}},"df":1,"docs":{"94":{"tf":2.6457513110645907}}}},"df":0,"docs":{}},"df":8,"docs":{"102":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"189":{"tf":1.7320508075688772},"252":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"94":{"tf":2.0}},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"93":{"tf":2.0}}}},"r":{"<":{"'":{"a":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":2,"docs":{"195":{"tf":1.0},"213":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"139":{"tf":1.0},"253":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}}}}},"k":{"df":1,"docs":{"0":{"tf":1.0}}},"m":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"t":{"!":{"(":{"\"":{"0":{"df":0,"docs":{},"o":{"df":0,"docs":{},"{":{":":{"df":0,"docs":{},"o":{"df":1,"docs":{"189":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"{":{":":{"df":0,"docs":{},"x":{"df":1,"docs":{"189":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"6":{"4":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"60":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"95":{"tf":1.0}}}},"u":{"8":{"df":2,"docs":{"101":{"tf":1.0},"102":{"tf":1.0}}},"df":0,"docs":{}},"{":{":":{"df":0,"docs":{},"p":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"_":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"108":{"tf":1.0},"114":{"tf":1.4142135623730951},"176":{"tf":2.0},"177":{"tf":2.449489742783178},"178":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"23":{"tf":1.0},"248":{"tf":1.7320508075688772},"253":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"df":4,"docs":{"107":{"tf":2.6457513110645907},"176":{"tf":1.0},"88":{"tf":1.0},"97":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"183":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"107":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.0},"132":{"tf":1.0},"145":{"tf":1.4142135623730951},"148":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":4,"docs":{"170":{"tf":1.0},"195":{"tf":1.4142135623730951},"212":{"tf":1.0},"251":{"tf":1.0}}}},"x":{"df":1,"docs":{"176":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"249":{"tf":1.0}}}}}}},"n":{"c":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"220":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"75":{"tf":1.0}}},"df":1,"docs":{"249":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"176":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"132":{"tf":1.0},"134":{"tf":1.0}}}}}}},"<":{"&":{"'":{"_":{"df":2,"docs":{"119":{"tf":1.0},"132":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"[":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"119":{"tf":1.0}}}}},"t":{"df":1,"docs":{"132":{"tf":1.0}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"137":{"tf":1.0}}},"df":1,"docs":{"137":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":2.0}}}}}},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"153":{"tf":2.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"154":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":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":{"60":{"tf":1.0}}}}}},"s":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"159":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"253":{"tf":1.0},"256":{"tf":1.0}},"i":{"df":2,"docs":{"107":{"tf":1.4142135623730951},"252":{"tf":1.0}}}}},"n":{":":{":":{"<":{"a":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"(":{"3":{"df":1,"docs":{"213":{"tf":1.0}}},"4":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"99":{"tf":1.0}}},"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"210":{"tf":1.4142135623730951}}}},"df":43,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"139":{"tf":2.0},"142":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.4142135623730951},"153":{"tf":1.0},"155":{"tf":1.0},"162":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"195":{"tf":3.1622776601683795},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":2.0},"213":{"tf":1.7320508075688772},"214":{"tf":2.0},"226":{"tf":1.0},"246":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":2.23606797749979},"54":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":2.6457513110645907},"77":{"tf":1.4142135623730951},"78":{"tf":2.23606797749979},"84":{"tf":2.0},"90":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"155":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"114":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"122":{"tf":1.0},"124":{"tf":1.0},"174":{"tf":1.0},"265":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":1,"docs":{"69":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"i":{"3":{"2":{"(":{"_":{"_":{"df":1,"docs":{"84":{"tf":1.0}}},"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"(":{"_":{"_":{"df":1,"docs":{"84":{"tf":1.0}}},"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":30,"docs":{"102":{"tf":2.0},"103":{"tf":1.0},"106":{"tf":2.0},"134":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.4142135623730951},"166":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"183":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.7320508075688772},"213":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":1.0},"246":{"tf":1.4142135623730951},"247":{"tf":1.0},"248":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"75":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.23606797749979},"85":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":2.6457513110645907},"90":{"tf":1.0},"97":{"tf":1.0}},"i":{"c":{"(":{"_":{"_":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"<":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{">":{"(":{"_":{"_":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{">":{"(":{"_":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"107":{"tf":2.0}}}}}}},"df":0,"docs":{}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}},"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":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"190":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"&":{"'":{"a":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"190":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":3,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"91":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"_":{"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":{"108":{"tf":1.4142135623730951}},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"108":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"108":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"36":{"tf":1.4142135623730951}}}}}}}}}}}},"df":6,"docs":{"124":{"tf":1.0},"143":{"tf":1.0},"226":{"tf":1.0},"256":{"tf":1.0},"56":{"tf":1.0},"75":{"tf":1.0}},"n":{"df":8,"docs":{"165":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.4142135623730951},"22":{"tf":1.0},"226":{"tf":1.0},"246":{"tf":1.0},"252":{"tf":1.0},"48":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"131":{"tf":1.0},"243":{"tf":1.0},"256":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"255":{"tf":1.0}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"169":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"df":6,"docs":{"204":{"tf":1.0},"211":{"tf":1.0},"228":{"tf":1.0},"4":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.4142135623730951}},"e":{"df":6,"docs":{"114":{"tf":1.0},"121":{"tf":1.0},"161":{"tf":1.4142135623730951},"199":{"tf":1.0},"50":{"tf":1.0},"72":{"tf":1.0}}},"o":{"d":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"126":{"tf":1.0},"139":{"tf":1.0},"6":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"":{"df":1,"docs":{"124":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"176":{"tf":1.0},"248":{"tf":1.0}}}}}}},"r":{"a":{"b":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"80":{"tf":1.0}}},"t":{"df":1,"docs":{"213":{"tf":2.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":2,"docs":{"44":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"153":{"tf":1.0}}}},"w":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"127":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"117":{"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":{"113":{"tf":1.0},"226":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"45":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"154":{"tf":1.0}}}}},"i":{"d":{"df":2,"docs":{"10":{"tf":1.0},"8":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"1":{"df":1,"docs":{"49":{"tf":1.0}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"176":{"tf":1.0}}},"v":{"df":1,"docs":{"62":{"tf":1.0}}}},"n":{"d":{"df":2,"docs":{"10":{"tf":1.0},"19":{"tf":1.0}},"l":{"df":5,"docs":{"133":{"tf":1.0},"141":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.4142135623730951}}},"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":{"246":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"102":{"tf":1.0},"113":{"tf":1.0},"255":{"tf":1.0}}}}}},"r":{"d":{"df":1,"docs":{"2":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"215":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"246":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"4":{"2":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"124":{"tf":1.4142135623730951}}}},"df":4,"docs":{"105":{"tf":1.4142135623730951},"124":{"tf":2.23606797749979},"126":{"tf":2.449489742783178},"129":{"tf":2.0}},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"125":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"156":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"1":{"0":{"0":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"_":{"df":3,"docs":{"129":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0}}},"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":4,"docs":{"124":{"tf":1.7320508075688772},"126":{"tf":2.23606797749979},"127":{"tf":2.23606797749979},"128":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"a":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"d":{"(":{"1":{"df":1,"docs":{"99":{"tf":1.0}}},"2":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":3,"docs":{"114":{"tf":1.4142135623730951},"253":{"tf":1.0},"49":{"tf":1.7320508075688772}},"e":{"a":{"d":{"df":3,"docs":{"60":{"tf":1.0},"7":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"125":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772}}}}},"p":{"df":5,"docs":{"113":{"tf":1.4142135623730951},"115":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.4142135623730951},"75":{"tf":1.0}}},"r":{"df":1,"docs":{"154":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"58":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":5,"docs":{"102":{"tf":1.0},"119":{"tf":1.4142135623730951},"128":{"tf":1.0},"36":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},",":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":35,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":2.0},"119":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":2.8284271247461903},"153":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"187":{"tf":3.3166247903554},"188":{"tf":1.7320508075688772},"191":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"220":{"tf":1.0},"228":{"tf":1.0},"37":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.7320508075688772},"60":{"tf":1.0},"73":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.7320508075688772}},"你":{"df":0,"docs":{},"好":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":5,"docs":{"147":{"tf":1.0},"148":{"tf":1.0},"183":{"tf":1.0},"226":{"tf":1.0},"270":{"tf":1.0}}}},"n":{"c":{"df":3,"docs":{"132":{"tf":1.0},"134":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"88":{"tf":1.0}}},"df":80,"docs":{"103":{"tf":1.0},"109":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"134":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"16":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"210":{"tf":1.0},"216":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.4142135623730951},"25":{"tf":1.0},"256":{"tf":1.0},"271":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"189":{"tf":1.4142135623730951}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"169":{"tf":1.0},"226":{"tf":1.0},"8":{"tf":1.0}}}},"df":2,"docs":{"250":{"tf":2.0},"92":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"253":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"19":{"tf":1.0},"2":{"tf":1.0},"203":{"tf":1.4142135623730951},"250":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"250":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"o":{"b":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"200":{"tf":1.0},"211":{"tf":1.0},"60":{"tf":1.4142135623730951},"69":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"154":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"154":{"tf":1.0},"155":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"195":{"tf":1.0}}}}},"p":{"df":1,"docs":{"126":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"b":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.0}}}}}}}}},"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"164":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"260":{"tf":1.0},"60":{"tf":1.0},"94":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"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":{}}}}}},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}},"i":{"'":{"df":0,"docs":{},"m":{"df":3,"docs":{"199":{"tf":1.0},"47":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772}}}},"+":{"1":{",":{"df":0,"docs":{},"v":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},",":{"df":0,"docs":{},"v":{"df":1,"docs":{"63":{"tf":1.0}}}},".":{"df":2,"docs":{"75":{"tf":1.0},"88":{"tf":1.0}}},"1":{"6":{"df":2,"docs":{"134":{"tf":1.0},"54":{"tf":1.0}}},"df":1,"docs":{"132":{"tf":1.0}}},"2":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}},"3":{"2":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},">":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":43,"docs":{"105":{"tf":3.0},"127":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":2.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":2.449489742783178},"139":{"tf":2.23606797749979},"14":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"156":{"tf":1.0},"158":{"tf":2.8284271247461903},"16":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"169":{"tf":2.23606797749979},"170":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"195":{"tf":4.0},"196":{"tf":1.0},"197":{"tf":2.0},"199":{"tf":1.7320508075688772},"202":{"tf":1.7320508075688772},"203":{"tf":1.4142135623730951},"205":{"tf":2.0},"210":{"tf":2.23606797749979},"213":{"tf":2.23606797749979},"22":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"252":{"tf":2.0},"271":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"52":{"tf":2.0},"54":{"tf":2.0},"56":{"tf":2.0},"60":{"tf":3.4641016151377544},"69":{"tf":2.0},"73":{"tf":2.0},"84":{"tf":1.0}}},"df":1,"docs":{"132":{"tf":1.0}}},"6":{"4":{"df":2,"docs":{"176":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"8":{":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"d":{"d":{"(":{"2":{"5":{"1":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"22":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":2,"docs":{"251":{"tf":1.7320508075688772},"73":{"tf":3.1622776601683795}},"e":{"a":{"df":2,"docs":{"3":{"tf":1.0},"51":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"161":{"tf":1.0},"169":{"tf":2.0},"195":{"tf":1.0},"51":{"tf":1.0},"73":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"121":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"<":{"'":{"_":{"df":1,"docs":{"119":{"tf":1.0}}},"a":{"df":4,"docs":{"202":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{",":{"df":1,"docs":{"216":{"tf":1.0}}},"df":3,"docs":{"86":{"tf":1.0},"88":{"tf":1.0},"97":{"tf":2.0}}}},"df":47,"docs":{"100":{"tf":2.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":2.23606797749979},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"119":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"132":{"tf":2.0},"133":{"tf":1.7320508075688772},"134":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"200":{"tf":1.7320508075688772},"205":{"tf":1.0},"207":{"tf":1.0},"221":{"tf":1.7320508075688772},"226":{"tf":2.23606797749979},"227":{"tf":1.4142135623730951},"271":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"75":{"tf":1.7320508075688772},"77":{"tf":2.23606797749979},"78":{"tf":1.7320508075688772},"79":{"tf":2.0},"80":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"96":{"tf":2.23606797749979},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":55,"docs":{"102":{"tf":2.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":2.23606797749979},"109":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":2.6457513110645907},"128":{"tf":1.0},"132":{"tf":2.449489742783178},"133":{"tf":2.23606797749979},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"141":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.7320508075688772},"154":{"tf":2.23606797749979},"176":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"181":{"tf":2.6457513110645907},"182":{"tf":2.0},"183":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":1.0},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"219":{"tf":1.4142135623730951},"221":{"tf":1.7320508075688772},"222":{"tf":1.0},"226":{"tf":1.7320508075688772},"33":{"tf":1.0},"34":{"tf":1.0},"56":{"tf":1.4142135623730951},"60":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"91":{"tf":1.0}}},"df":3,"docs":{"106":{"tf":1.0},"91":{"tf":1.7320508075688772},"94":{"tf":1.0}}}}}}}}},"i":{"c":{"df":1,"docs":{"114":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"131":{"tf":1.0},"250":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"255":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"75":{"tf":1.0},"84":{"tf":1.7320508075688772}}},"y":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"<":{"'":{"a":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"196":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"153":{"tf":1.0},"176":{"tf":1.0},"200":{"tf":1.0},"227":{"tf":1.0},"249":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"105":{"tf":1.0},"197":{"tf":1.0},"227":{"tf":1.0},"248":{"tf":1.0}}}}}}},"n":{"(":{"\"":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"252":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":7,"docs":{"248":{"tf":1.0},"249":{"tf":1.7320508075688772},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"224":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"c":{"df":1,"docs":{"211":{"tf":1.7320508075688772}},"h":{"df":1,"docs":{"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"(":{"1":{"2":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":7,"docs":{"126":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"255":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"227":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"122":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"d":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"210":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"131":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"127":{"tf":1.0},"214":{"tf":1.0}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":11,"docs":{"114":{"tf":2.449489742783178},"120":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"143":{"tf":1.4142135623730951},"183":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"54":{"tf":1.0},"63":{"tf":1.0}}}},"i":{"c":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"251":{"tf":1.0},"254":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"125":{"tf":1.0},"210":{"tf":1.4142135623730951},"212":{"tf":1.0},"22":{"tf":1.4142135623730951},"51":{"tf":1.0},"60":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}}},"o":{"df":4,"docs":{"143":{"tf":1.4142135623730951},"206":{"tf":1.0},"58":{"tf":1.7320508075688772},"93":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"256":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"199":{"tf":1.7320508075688772},"57":{"tf":1.0}},"i":{"df":3,"docs":{"127":{"tf":1.0},"14":{"tf":1.0},"51":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"249":{"tf":1.0},"256":{"tf":1.0}}}}}},"df":1,"docs":{"249":{"tf":2.23606797749979}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"102":{"tf":1.0},"172":{"tf":1.4142135623730951},"246":{"tf":1.7320508075688772},"248":{"tf":2.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"255":{"tf":2.0},"256":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"66":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"66":{"tf":1.0}}},"df":1,"docs":{"105":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"_":{"a":{"b":{"c":{"d":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"251":{"tf":1.0}}}}}},"df":2,"docs":{"248":{"tf":1.4142135623730951},"249":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"<":{"'":{"a":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"197":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"195":{"tf":1.7320508075688772},"199":{"tf":1.0},"200":{"tf":2.449489742783178},"210":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"248":{"tf":2.8284271247461903},"249":{"tf":1.7320508075688772},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"256":{"tf":1.0},"94":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"254":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"125":{"tf":1.7320508075688772},"128":{"tf":1.0},"247":{"tf":1.7320508075688772},"248":{"tf":1.7320508075688772},"252":{"tf":1.4142135623730951},"253":{"tf":1.0}}}}},"i":{"d":{"df":7,"docs":{"102":{"tf":1.0},"115":{"tf":1.0},"162":{"tf":1.0},"195":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.4142135623730951},"255":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}},"n":{"c":{"df":6,"docs":{"213":{"tf":1.0},"57":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"255":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":17,"docs":{"102":{"tf":1.0},"114":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.7320508075688772},"146":{"tf":1.0},"172":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"247":{"tf":1.7320508075688772},"248":{"tf":2.0},"249":{"tf":1.0},"250":{"tf":2.449489742783178},"251":{"tf":2.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":2,"docs":{"126":{"tf":1.0},"131":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":11,"docs":{"124":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"199":{"tf":1.0},"22":{"tf":1.0},"230":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"60":{"tf":1.0},"75":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"r":{"df":2,"docs":{"152":{"tf":1.0},"261":{"tf":1.0}}}},"l":{"df":2,"docs":{"254":{"tf":1.0},"255":{"tf":1.0}}},"n":{"d":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":2,"docs":{"208":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"<":{"'":{"a":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":4,"docs":{"10":{"tf":1.0},"115":{"tf":1.0},"127":{"tf":1.4142135623730951},"153":{"tf":1.0}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"255":{"tf":1.0}}}}}}}},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"218":{"tf":1.0},"220":{"tf":2.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":7,"docs":{"129":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"19":{"tf":1.0},"205":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"<":{"'":{"a":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"139":{"tf":1.0},"195":{"tf":1.0},"200":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"139":{"tf":1.0},"247":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":3,"docs":{"109":{"tf":1.0},"226":{"tf":1.0},"88":{"tf":1.0}}}}}}},"o":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"133":{"tf":1.0},"146":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"177":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"p":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"d":{"d":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"v":{"4":{"(":{"\"":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"(":{"\"":{":":{":":{"1":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":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":{"123":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"123":{"tf":1.0}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"194":{"tf":1.0}}}}}}}},"s":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"91":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"c":{"(":{"&":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"118":{"tf":1.0}}},"df":1,"docs":{"118":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"89":{"tf":1.7320508075688772}}}}}},"t":{"'":{"df":15,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"174":{"tf":1.0},"200":{"tf":1.7320508075688772},"251":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":11,"docs":{"122":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"158":{"tf":1.0},"164":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"223":{"tf":1.0},"95":{"tf":1.0}}},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.7320508075688772}}}}}},"df":14,"docs":{"114":{"tf":1.4142135623730951},"119":{"tf":1.0},"183":{"tf":1.4142135623730951},"217":{"tf":2.0},"218":{"tf":2.449489742783178},"219":{"tf":2.0},"220":{"tf":2.6457513110645907},"221":{"tf":2.8284271247461903},"222":{"tf":1.4142135623730951},"223":{"tf":2.23606797749979},"224":{"tf":2.8284271247461903},"63":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"132":{"tf":1.0},"251":{"tf":1.0},"56":{"tf":1.0}}}}}},"":{"df":4,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.0}}}}},"j":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"190":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"176":{"tf":1.0}}}}},"df":1,"docs":{"158":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"48":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"255":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"255":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"248":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"169":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"246":{"tf":1.0}}}}}},"y":{"df":3,"docs":{"124":{"tf":2.0},"125":{"tf":1.4142135623730951},"126":{"tf":2.23606797749979}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":7,"docs":{"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"213":{"tf":1.0},"64":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"248":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":9,"docs":{"102":{"tf":2.0},"176":{"tf":1.0},"195":{"tf":1.0},"204":{"tf":1.0},"249":{"tf":1.0},"53":{"tf":1.0},"88":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"204":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"n":{"df":6,"docs":{"117":{"tf":1.0},"197":{"tf":1.0},"224":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"88":{"tf":1.0}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"255":{"tf":3.3166247903554},"66":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"260":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"108":{"tf":1.4142135623730951},"12":{"tf":1.0},"253":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"124":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"105":{"tf":1.0},"132":{"tf":1.0},"204":{"tf":1.0},"64":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"249":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"249":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"199":{"tf":1.0},"213":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.4142135623730951}}}}}},"z":{"df":0,"docs":{},"i":{"df":2,"docs":{"176":{"tf":1.0},"224":{"tf":1.0}}}}},"df":1,"docs":{"253":{"tf":1.0}},"e":{"a":{"d":{"df":2,"docs":{"255":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":18,"docs":{"11":{"tf":1.0},"110":{"tf":1.0},"130":{"tf":1.0},"140":{"tf":1.0},"150":{"tf":1.0},"192":{"tf":1.0},"195":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"270":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"42":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0}}}},"v":{"df":3,"docs":{"127":{"tf":1.4142135623730951},"195":{"tf":1.0},"220":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":5,"docs":{"143":{"tf":1.4142135623730951},"187":{"tf":1.7320508075688772},"19":{"tf":1.0},"226":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"253":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"d":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"115":{"tf":2.0},"143":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"115":{"tf":1.7320508075688772},"122":{"tf":2.0},"188":{"tf":1.0},"228":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"115":{"tf":1.0},"131":{"tf":1.0}}}},"t":{"'":{"df":5,"docs":{"125":{"tf":1.0},"153":{"tf":1.4142135623730951},"168":{"tf":1.0},"204":{"tf":1.0},"256":{"tf":1.0}}},"df":4,"docs":{"125":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"&":{"'":{"a":{"df":1,"docs":{"196":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"148":{"tf":1.0},"246":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"204":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":7,"docs":{"151":{"tf":1.0},"153":{"tf":1.7320508075688772},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"129":{"tf":1.0},"164":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":20,"docs":{"109":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":2.6457513110645907},"153":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"169":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.4142135623730951},"176":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"268":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":17,"docs":{"139":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.7320508075688772},"194":{"tf":2.449489742783178},"195":{"tf":5.0},"196":{"tf":1.4142135623730951},"197":{"tf":2.0},"198":{"tf":1.4142135623730951},"199":{"tf":2.8284271247461903},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":2.6457513110645907},"203":{"tf":2.23606797749979},"204":{"tf":2.6457513110645907},"206":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"77":{"tf":1.7320508075688772},"78":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"127":{"tf":1.4142135623730951},"251":{"tf":1.0},"48":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"98":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":45,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0},"128":{"tf":1.0},"141":{"tf":1.4142135623730951},"143":{"tf":1.0},"146":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"16":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.7320508075688772},"165":{"tf":1.0},"169":{"tf":2.449489742783178},"17":{"tf":1.0},"176":{"tf":1.0},"194":{"tf":1.0},"212":{"tf":1.0},"248":{"tf":1.0},"271":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"8":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"k":{"df":4,"docs":{"132":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"60":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"255":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"!":{"[":{"1":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"208":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"1":{"df":1,"docs":{"60":{"tf":1.0}}},"2":{"df":1,"docs":{"60":{"tf":1.0}}},"3":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"60":{"tf":1.0}}}}}}}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"!":{"[":{"1":{",":{"2":{",":{"3":{",":{"4":{",":{"5":{",":{"6":{",":{"7":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"208":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"156":{"tf":1.0},"176":{"tf":1.0},"183":{"tf":1.0},"208":{"tf":1.7320508075688772},"24":{"tf":1.0},"247":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"271":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"60":{"tf":4.69041575982343}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"113":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.0},"199":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"195":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"251":{"tf":1.4142135623730951},"255":{"tf":1.0}}}}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"254":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"1":{"tf":1.4142135623730951},"105":{"tf":1.0},"109":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.4142135623730951}}},"t":{"df":2,"docs":{"249":{"tf":1.0},"254":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"250":{"tf":2.0}},"g":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"217":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}}}},"df":9,"docs":{"124":{"tf":1.0},"195":{"tf":2.0},"199":{"tf":1.0},"200":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"54":{"tf":1.4142135623730951},"71":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"195":{"tf":2.23606797749979},"199":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"220":{"tf":1.0},"97":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"195":{"tf":1.0}}}},"<":{"'":{"a":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"194":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"k":{"df":11,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0},"181":{"tf":1.0},"248":{"tf":1.0},"3":{"tf":1.0},"56":{"tf":1.0},"70":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"102":{"tf":1.0},"124":{"tf":1.0}}}}},"p":{"df":6,"docs":{"115":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":3.872983346207417}}}},"t":{"df":2,"docs":{"144":{"tf":1.0},"2":{"tf":1.0}}},"w":{"df":2,"docs":{"246":{"tf":1.0},"253":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"127":{"tf":1.4142135623730951},"131":{"tf":1.0},"211":{"tf":1.0},"250":{"tf":1.0},"270":{"tf":1.0}}}}}},"s":{"df":1,"docs":{"7":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"255":{"tf":1.4142135623730951}}}}},"m":{"1":{".":{"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":{},"v":{"1":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"128":{"tf":1.0}}},"2":{".":{"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":{},"v":{"2":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"128":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"139":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":5,"docs":{"118":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0}},"s":{"]":{"[":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"177":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"115":{"tf":1.0},"255":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":4,"docs":{"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0}}}},"1":{"df":1,"docs":{"152":{"tf":1.0}}},"2":{"df":1,"docs":{"152":{"tf":1.0}}},"df":153,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":2.449489742783178},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":2.449489742783178},"15":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"16":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"181":{"tf":1.7320508075688772},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":2.8284271247461903},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"199":{"tf":2.0},"200":{"tf":1.7320508075688772},"202":{"tf":2.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":2.0},"212":{"tf":1.0},"213":{"tf":2.449489742783178},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":2.0},"219":{"tf":1.0},"22":{"tf":2.449489742783178},"220":{"tf":1.7320508075688772},"221":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"226":{"tf":2.0},"227":{"tf":1.0},"228":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"230":{"tf":2.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"251":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"271":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"36":{"tf":2.8284271247461903},"37":{"tf":1.7320508075688772},"39":{"tf":2.449489742783178},"40":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":2.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":2.449489742783178},"52":{"tf":1.7320508075688772},"53":{"tf":1.7320508075688772},"54":{"tf":2.449489742783178},"56":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":2.449489742783178},"62":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"72":{"tf":1.0},"73":{"tf":2.449489742783178},"75":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":2.0},"86":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":2.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.7320508075688772},"99":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"127":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":82,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"108":{"tf":1.0},"115":{"tf":1.0},"122":{"tf":1.4142135623730951},"126":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0},"16":{"tf":1.4142135623730951},"163":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":2.0},"182":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":2.0},"196":{"tf":1.0},"199":{"tf":2.449489742783178},"200":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":2.23606797749979},"220":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"230":{"tf":2.0},"24":{"tf":1.4142135623730951},"248":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"32":{"tf":1.0},"36":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"47":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.4142135623730951},"8":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"208":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"<":{"'":{"a":{"df":1,"docs":{"208":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":8,"docs":{"113":{"tf":1.0},"152":{"tf":1.4142135623730951},"176":{"tf":1.0},"251":{"tf":1.0},"256":{"tf":1.0},"36":{"tf":1.0},"47":{"tf":1.0},"94":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"213":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"195":{"tf":1.0},"213":{"tf":1.0},"254":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"251":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"x":{"df":1,"docs":{"137":{"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":{"(":{"1":{"df":1,"docs":{"127":{"tf":1.0}}},"3":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"(":{"5":{"0":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"124":{"tf":1.0},"127":{"tf":1.7320508075688772},"147":{"tf":2.0}}},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"164":{"tf":1.0}}}}}},"df":3,"docs":{"14":{"tf":1.0},"252":{"tf":1.0},"57":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"176":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":20,"docs":{"134":{"tf":1.0},"142":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":2.0},"148":{"tf":1.0},"149":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.0},"227":{"tf":1.0},"34":{"tf":1.7320508075688772},"48":{"tf":1.0},"60":{"tf":2.8284271247461903},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":2.8284271247461903},"70":{"tf":2.0},"71":{"tf":2.23606797749979},"72":{"tf":1.4142135623730951},"73":{"tf":4.242640687119285},"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"131":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"y":{"b":{"df":5,"docs":{"114":{"tf":1.0},"132":{"tf":1.0},"154":{"tf":1.0},"181":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":1,"docs":{"88":{"tf":2.449489742783178}},"e":{"a":{"df":0,"docs":{},"n":{"df":10,"docs":{"132":{"tf":1.0},"144":{"tf":1.0},"200":{"tf":1.4142135623730951},"251":{"tf":1.0},"256":{"tf":1.7320508075688772},"37":{"tf":1.0},"47":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"89":{"tf":1.0}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"169":{"tf":2.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"132":{"tf":1.0},"141":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"124":{"tf":1.0},"2":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}},"m":{":":{":":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"213":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"54":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"115":{"tf":1.0},"131":{"tf":1.0},"199":{"tf":1.4142135623730951},"254":{"tf":2.0},"256":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"45":{"tf":1.0},"88":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"132":{"tf":1.0},"220":{"tf":1.0},"94":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"141":{"tf":1.0},"147":{"tf":1.0},"239":{"tf":1.0},"60":{"tf":2.0},"69":{"tf":1.4142135623730951},"73":{"tf":1.0},"8":{"tf":1.0}},"e":{":":{":":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"2":{"5":{"5":{",":{"2":{"5":{"5":{",":{"0":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"73":{"tf":2.0}}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"69":{"tf":1.0}},"e":{"df":0,"docs":{},"{":{"_":{"_":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{":":{"1":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"60":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"_":{"_":{"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":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"226":{"tf":2.23606797749979},"227":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}},"s":{"(":{"2":{"0":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":1,"docs":{"226":{"tf":1.0}}},"u":{"3":{"2":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"o":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"102":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":31,"docs":{"102":{"tf":2.0},"103":{"tf":1.0},"107":{"tf":2.449489742783178},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"125":{"tf":1.0},"131":{"tf":1.4142135623730951},"133":{"tf":1.7320508075688772},"134":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"207":{"tf":1.0},"219":{"tf":1.7320508075688772},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":2.0},"224":{"tf":1.0},"226":{"tf":1.4142135623730951},"45":{"tf":1.0},"60":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":2.8284271247461903},"77":{"tf":2.449489742783178},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":2.23606797749979},"94":{"tf":1.7320508075688772}},"":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.4142135623730951}},"m":{"df":1,"docs":{"10":{"tf":1.0}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"88":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"[":{"6":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{":":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"`":{"'":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"176":{"tf":1.0}}}},"x":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}}}},"o":{"d":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"154":{"tf":1.0},"155":{"tf":1.0}}}},"df":7,"docs":{"131":{"tf":1.0},"153":{"tf":1.7320508075688772},"154":{"tf":2.0},"158":{"tf":1.7320508075688772},"168":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0}},"e":{"df":1,"docs":{"251":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0}},"i":{"df":30,"docs":{"115":{"tf":1.0},"131":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.7320508075688772},"211":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"24":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.7320508075688772},"253":{"tf":2.449489742783178},"29":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"37":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"l":{"df":9,"docs":{"148":{"tf":1.4142135623730951},"150":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":2.8284271247461903},"154":{"tf":1.4142135623730951},"156":{"tf":1.0},"168":{"tf":2.23606797749979},"170":{"tf":1.0},"45":{"tf":1.0}},"u":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"181":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"!":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":26,"docs":{"105":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"143":{"tf":1.0},"147":{"tf":1.0},"176":{"tf":1.7320508075688772},"181":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"248":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"53":{"tf":1.0},"88":{"tf":1.4142135623730951},"93":{"tf":1.0},"98":{"tf":1.0}},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"255":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"211":{"tf":2.0}}}},"df":0,"docs":{}},"df":4,"docs":{"248":{"tf":1.4142135623730951},"251":{"tf":2.0},"253":{"tf":1.0},"255":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}},"t":{"df":0,"docs":{},"o":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"205":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":16,"docs":{"105":{"tf":1.0},"112":{"tf":1.0},"121":{"tf":1.0},"128":{"tf":1.4142135623730951},"139":{"tf":1.0},"211":{"tf":1.7320508075688772},"213":{"tf":2.449489742783178},"215":{"tf":1.4142135623730951},"220":{"tf":1.0},"251":{"tf":1.0},"37":{"tf":3.0},"45":{"tf":1.0},"59":{"tf":3.0},"60":{"tf":1.7320508075688772},"63":{"tf":1.0},"69":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"g":{"1":{"df":1,"docs":{"60":{"tf":1.0}}},"2":{"df":1,"docs":{"60":{"tf":1.0}}},"df":3,"docs":{"60":{"tf":2.449489742783178},"69":{"tf":2.0},"73":{"tf":1.4142135623730951}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"105":{"tf":1.0},"127":{"tf":1.4142135623730951},"147":{"tf":1.0},"156":{"tf":1.0},"215":{"tf":1.0},"47":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"l":{"(":{"a":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"250":{"tf":2.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":11,"docs":{"107":{"tf":1.4142135623730951},"156":{"tf":1.0},"195":{"tf":1.0},"224":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":2.0},"47":{"tf":1.0},"79":{"tf":1.7320508075688772},"98":{"tf":1.0}},"i":{"df":5,"docs":{"146":{"tf":1.0},"147":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"y":{"(":{"\"":{"1":{"0":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"147":{"tf":1.0}}}},"1":{".":{"0":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"148":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"n":{"1":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"(":{"\"":{"1":{"0":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"1":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":14,"docs":{"121":{"tf":1.4142135623730951},"125":{"tf":1.0},"14":{"tf":1.4142135623730951},"18":{"tf":1.0},"195":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.7320508075688772},"220":{"tf":1.0},"36":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"41":{"tf":1.0},"57":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":2.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.4142135623730951},"213":{"tf":1.0}}}},"df":60,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":2.23606797749979},"122":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"131":{"tf":1.7320508075688772},"139":{"tf":3.3166247903554},"14":{"tf":1.0},"146":{"tf":1.7320508075688772},"156":{"tf":1.0},"16":{"tf":1.0},"183":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":3.7416573867739413},"205":{"tf":2.23606797749979},"208":{"tf":2.0},"211":{"tf":2.23606797749979},"213":{"tf":2.6457513110645907},"215":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":2.0},"221":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"24":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"253":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":2.0},"40":{"tf":2.23606797749979},"41":{"tf":2.449489742783178},"45":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"70":{"tf":1.0},"73":{"tf":2.0},"75":{"tf":1.7320508075688772},"91":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"y":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"165":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"167":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"1":{"3":{"_":{"df":0,"docs":{},"u":{"3":{"2":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"a":{"b":{"c":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"228":{"tf":1.0}}},"x":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"132":{"tf":1.0},"48":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"70":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":2.0}}}}},"df":0,"docs":{}}}}},"n":{"+":{"=":{"1":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"_":{"_":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{":":{":":{"<":{"df":0,"docs":{},"i":{"3":{"2":{"df":2,"docs":{"145":{"tf":1.0},"147":{"tf":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":{"145":{"tf":1.0}}},"2":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"145":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{":":{":":{"<":{"df":0,"docs":{},"i":{"3":{"2":{"df":2,"docs":{"145":{"tf":1.0},"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":3,"docs":{"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951}}}}}},"df":2,"docs":{"145":{"tf":1.0},"147":{"tf":1.0}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{":":{":":{"<":{"df":0,"docs":{},"i":{"3":{"2":{">":{"(":{")":{".":{"_":{"_":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"91":{"tf":1.7320508075688772}}}},"m":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"108":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"0":{"df":1,"docs":{"51":{"tf":1.0}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"251":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"251":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":39,"docs":{"107":{"tf":2.0},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":2.0},"153":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"16":{"tf":1.0},"176":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"186":{"tf":1.4142135623730951},"190":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"210":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":2.23606797749979},"223":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":1.7320508075688772},"253":{"tf":2.23606797749979},"255":{"tf":1.4142135623730951},"37":{"tf":2.449489742783178},"51":{"tf":1.0},"56":{"tf":2.449489742783178},"57":{"tf":1.7320508075688772},"59":{"tf":2.8284271247461903},"63":{"tf":2.23606797749979},"72":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"91":{"tf":1.7320508075688772},"95":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"210":{"tf":1.0}}}}}},"s":{".":{"_":{"_":{"df":1,"docs":{"220":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"0":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"_":{"_":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"[":{"2":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"df":1,"docs":{"131":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.4142135623730951}}}}}}},"df":19,"docs":{"119":{"tf":1.0},"134":{"tf":1.7320508075688772},"147":{"tf":1.0},"148":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"271":{"tf":1.4142135623730951},"51":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":3.4641016151377544},"63":{"tf":2.0},"64":{"tf":2.449489742783178},"65":{"tf":2.23606797749979},"73":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":3.3166247903554},"89":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"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":5,"docs":{"108":{"tf":1.0},"246":{"tf":1.0},"252":{"tf":1.0},"36":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"199":{"tf":1.0}}},"v":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":68,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"123":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"137":{"tf":1.0},"139":{"tf":1.0},"144":{"tf":1.4142135623730951},"149":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.4142135623730951},"191":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"216":{"tf":1.0},"224":{"tf":1.0},"230":{"tf":1.0},"248":{"tf":1.4142135623730951},"25":{"tf":1.0},"251":{"tf":2.449489742783178},"253":{"tf":1.4142135623730951},"256":{"tf":1.0},"271":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"g":{"df":1,"docs":{"62":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"162":{"tf":1.0},"66":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}}}}}},"df":4,"docs":{"195":{"tf":1.0},"200":{"tf":1.0},"251":{"tf":1.0},"34":{"tf":1.0}}}}},"w":{"(":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"126":{"tf":1.0},"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"216":{"tf":1.0}}}}}}},"x":{"df":2,"docs":{"75":{"tf":1.0},"97":{"tf":1.0}}}},"df":24,"docs":{"109":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"164":{"tf":1.4142135623730951},"167":{"tf":1.0},"168":{"tf":1.0},"195":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"230":{"tf":1.0},"271":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.4142135623730951},"72":{"tf":2.0},"78":{"tf":1.4142135623730951},"92":{"tf":1.0}},"i":{"d":{"@":{"1":{"0":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"177":{"tf":1.4142135623730951},"248":{"tf":1.0},"45":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":4,"docs":{"109":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"219":{"tf":1.0},"221":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":7,"docs":{"168":{"tf":1.0},"219":{"tf":1.4142135623730951},"221":{"tf":2.0},"223":{"tf":1.0},"3":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"223":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"60":{"tf":2.449489742783178}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"195":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"204":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"41":{"tf":1.0}}}},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"173":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"195":{"tf":2.6457513110645907}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"91":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"256":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"206":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":5,"docs":{"114":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"213":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":10,"docs":{"142":{"tf":1.0},"17":{"tf":1.0},"199":{"tf":1.0},"211":{"tf":1.0},"216":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"34":{"tf":1.0},"60":{"tf":1.4142135623730951},"73":{"tf":1.0},"97":{"tf":2.0}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"208":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"p":{"df":1,"docs":{"247":{"tf":1.0}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"44":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":1.7320508075688772}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"256":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":17,"docs":{"121":{"tf":1.0},"126":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"162":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"213":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"250":{"tf":1.0},"48":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0}}},"h":{"df":4,"docs":{"107":{"tf":1.0},"162":{"tf":1.0},"213":{"tf":1.0},"248":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"w":{"df":13,"docs":{"125":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"162":{"tf":1.0},"181":{"tf":1.0},"19":{"tf":1.0},"205":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"248":{"tf":1.0},"52":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"113":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.0}}}},"m":{"(":{"df":0,"docs":{},"i":{"3":{"2":{"df":2,"docs":{"195":{"tf":1.0},"197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"60":{"tf":1.0}}},"2":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"60":{"tf":1.0}}},"=":{"1":{"df":2,"docs":{"176":{"tf":1.4142135623730951},"187":{"tf":1.0}}},"df":0,"docs":{}},"_":{"1":{"df":1,"docs":{"105":{"tf":2.0}}},"2":{"df":1,"docs":{"105":{"tf":2.449489742783178}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{":":{":":{"<":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"149":{"tf":1.0}}}}}},"df":20,"docs":{"105":{"tf":2.0},"115":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.7320508075688772},"137":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"176":{"tf":2.0},"187":{"tf":1.0},"195":{"tf":1.4142135623730951},"21":{"tf":1.0},"222":{"tf":1.0},"24":{"tf":1.0},"248":{"tf":1.0},"255":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":2.0},"73":{"tf":1.4142135623730951}}}}},"df":5,"docs":{"133":{"tf":1.7320508075688772},"139":{"tf":2.0},"199":{"tf":2.23606797749979},"215":{"tf":2.449489742783178},"73":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"255":{"tf":1.7320508075688772}}}},"s":{".":{"0":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"176":{"tf":1.0}}}}},"df":0,"docs":{}},"df":12,"docs":{"100":{"tf":1.0},"102":{"tf":2.0},"103":{"tf":2.0},"123":{"tf":1.0},"176":{"tf":1.0},"40":{"tf":1.4142135623730951},"52":{"tf":1.0},"75":{"tf":2.23606797749979},"77":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"256":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"251":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"51":{"tf":1.0},"52":{"tf":1.0}}}},"r":{"df":9,"docs":{"102":{"tf":1.0},"122":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.0},"37":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"189":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"248":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"197":{"tf":1.0}}}},"df":0,"docs":{}}}},"h":{"df":2,"docs":{"100":{"tf":1.0},"99":{"tf":1.0}}},"k":{"(":{"_":{"df":1,"docs":{"146":{"tf":1.0}}},"a":{"df":1,"docs":{"169":{"tf":1.0}}},"df":1,"docs":{"146":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"8":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"146":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"n":{"1":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"145":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"147":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"147":{"tf":1.0}}},"df":3,"docs":{"134":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"149":{"tf":1.0}}},"df":1,"docs":{"133":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"145":{"tf":1.0}}}},"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"75":{"tf":1.0},"88":{"tf":2.0}}}},"df":5,"docs":{"145":{"tf":1.0},"149":{"tf":1.0},"169":{"tf":3.3166247903554},"204":{"tf":1.0},"40":{"tf":1.0}}},"l":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"(":{"&":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"226":{"tf":1.0}},"e":{"_":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"226":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"226":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"125":{"tf":1.0},"143":{"tf":1.0},"197":{"tf":1.0}}}}},"n":{"c":{"df":5,"docs":{"220":{"tf":1.0},"248":{"tf":1.0},"255":{"tf":1.0},"41":{"tf":1.0},"51":{"tf":1.0}}},"df":33,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"125":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.4142135623730951},"146":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"165":{"tf":1.0},"17":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.0},"195":{"tf":2.0},"199":{"tf":1.0},"200":{"tf":1.0},"210":{"tf":1.7320508075688772},"213":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"248":{"tf":1.0},"255":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"87":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"122":{"tf":1.4142135623730951},"256":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"200":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"166":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":3.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.7320508075688772},"255":{"tf":1.0},"256":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"a":{"d":{"d":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":13,"docs":{"112":{"tf":1.0},"114":{"tf":1.0},"118":{"tf":1.0},"125":{"tf":1.0},"183":{"tf":1.7320508075688772},"247":{"tf":1.0},"25":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"9":{"tf":1.0},"94":{"tf":2.6457513110645907}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"251":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"s":{":":{":":{"a":{"d":{"d":{"<":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"102":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"249":{"tf":1.0},"256":{"tf":2.0}}},"o":{"df":0,"docs":{},"n":{"<":{"&":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}},"t":{"df":1,"docs":{"51":{"tf":1.0}}},"u":{"8":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":1,"docs":{"216":{"tf":1.0}},"i":{"3":{"2":{"df":3,"docs":{"170":{"tf":1.4142135623730951},"34":{"tf":1.0},"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"219":{"tf":1.0},"221":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":2,"docs":{"147":{"tf":1.0},"60":{"tf":1.0}}},"u":{"3":{"2":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":4,"docs":{"170":{"tf":1.4142135623730951},"176":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":2.23606797749979}},"s":{"(":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"255":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"254":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"256":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"248":{"tf":1.0},"251":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"153":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"124":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.4142135623730951},"226":{"tf":1.0},"251":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"226":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":1,"docs":{"9":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"0":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}}}}},"i":{"df":1,"docs":{"106":{"tf":1.0}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"79":{"tf":1.0}}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":5,"docs":{"135":{"tf":1.0},"180":{"tf":1.0},"191":{"tf":1.0},"250":{"tf":1.0},"71":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"246":{"tf":1.0},"255":{"tf":1.0},"77":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"x":{"df":1,"docs":{"251":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"252":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"248":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"255":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"145":{"tf":1.4142135623730951}}}}},"df":23,"docs":{"107":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"121":{"tf":1.0},"131":{"tf":1.0},"141":{"tf":1.4142135623730951},"143":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":2.0},"172":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.0},"199":{"tf":1.0},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"250":{"tf":1.4142135623730951},"34":{"tf":1.0},"37":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":2.449489742783178}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"195":{"tf":1.7320508075688772},"202":{"tf":2.23606797749979}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"124":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":16,"docs":{"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"176":{"tf":2.0},"181":{"tf":1.0},"182":{"tf":1.0},"226":{"tf":1.0},"24":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":2.6457513110645907},"249":{"tf":1.7320508075688772},"250":{"tf":1.0},"251":{"tf":2.23606797749979},"252":{"tf":1.0},"256":{"tf":1.4142135623730951},"39":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"153":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{",":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"105":{"tf":1.0},"2":{"tf":1.0}}}},"df":15,"docs":{"111":{"tf":1.0},"114":{"tf":1.0},"139":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.4142135623730951},"60":{"tf":1.0},"65":{"tf":1.0},"87":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"131":{"tf":1.7320508075688772},"142":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"253":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"124":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"249":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"128":{"tf":1.0},"200":{"tf":1.7320508075688772},"213":{"tf":1.0},"75":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"1":{"8":{"df":1,"docs":{"196":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"3":{"2":{"df":2,"docs":{"196":{"tf":1.0},"197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"196":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"196":{"tf":1.0}}}}}}}},"df":3,"docs":{"128":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":9,"docs":{"111":{"tf":1.0},"128":{"tf":1.4142135623730951},"220":{"tf":1.0},"223":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"45":{"tf":1.0},"60":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}}}}}}}},"p":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"1":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"p":{"2":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"131":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"86":{"tf":1.0}}},"2":{"df":3,"docs":{"131":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"86":{"tf":1.0}}},"3":{"df":1,"docs":{"86":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"151":{"tf":3.1622776601683795},"152":{"tf":3.872983346207417},"153":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"159":{"tf":1.0},"164":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.0}},"e":{"1":{"df":2,"docs":{"151":{"tf":1.0},"152":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":3,"docs":{"176":{"tf":1.0},"187":{"tf":2.449489742783178},"189":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"172":{"tf":1.0},"173":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"1":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"75":{"tf":1.0}}},"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":{"75":{"tf":1.0}}}}}}}},".":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.7320508075688772}}}},"df":4,"docs":{"47":{"tf":1.0},"75":{"tf":2.23606797749979},"88":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"i":{"c":{"!":{"(":{"\"":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"60":{"tf":1.4142135623730951},"63":{"tf":1.0}}}}},"w":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"0":{"tf":1.0},"121":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.7320508075688772},"142":{"tf":2.23606797749979},"143":{"tf":1.7320508075688772},"144":{"tf":1.4142135623730951},"146":{"tf":1.0},"169":{"tf":2.0},"22":{"tf":1.0},"34":{"tf":1.0},"51":{"tf":1.0},"60":{"tf":1.0}},"k":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":12,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.7320508075688772},"195":{"tf":1.0},"203":{"tf":1.0},"213":{"tf":2.0},"77":{"tf":2.23606797749979},"78":{"tf":1.0},"84":{"tf":2.23606797749979},"88":{"tf":3.0},"95":{"tf":1.7320508075688772},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.0},"153":{"tf":1.0},"37":{"tf":1.0},"59":{"tf":1.0}}}}},"s":{"df":3,"docs":{"137":{"tf":2.0},"164":{"tf":1.0},"177":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"137":{"tf":1.0},"147":{"tf":2.0},"148":{"tf":1.0},"149":{"tf":1.0}}}}}}}}}}}},"t":{"df":12,"docs":{"132":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.4142135623730951},"202":{"tf":1.0},"248":{"tf":1.0},"37":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"73":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"37":{"tf":2.0},"59":{"tf":2.0}},"e":{"df":0,"docs":{},"q":{"<":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":4,"docs":{"106":{"tf":1.0},"123":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"93":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"248":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"148":{"tf":1.0},"248":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"129":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"s":{"<":{"'":{"a":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"197":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"x":{"(":{"&":{"df":0,"docs":{},"x":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}},"<":{"'":{"a":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":11,"docs":{"121":{"tf":1.0},"169":{"tf":2.23606797749979},"195":{"tf":1.4142135623730951},"200":{"tf":2.0},"239":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0},"97":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":42,"docs":{"103":{"tf":1.0},"109":{"tf":1.0},"116":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.7320508075688772},"155":{"tf":1.0},"159":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":1.0},"216":{"tf":1.0},"224":{"tf":1.0},"230":{"tf":1.0},"25":{"tf":1.0},"271":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":14,"docs":{"109":{"tf":1.0},"147":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.4142135623730951},"217":{"tf":1.0},"226":{"tf":1.0},"37":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":2.23606797749979}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"91":{"tf":1.0}}}}},"df":8,"docs":{"137":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"39":{"tf":2.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"73":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"176":{"tf":1.0}},"e":{"df":0,"docs":{},"":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":9,"docs":{"124":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"133":{"tf":1.0},"217":{"tf":1.0},"224":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.0},"88":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":2,"docs":{"37":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772}}},".":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"37":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"<":{"'":{"a":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"107":{"tf":1.0},"108":{"tf":2.0},"181":{"tf":2.23606797749979},"190":{"tf":1.4142135623730951},"37":{"tf":3.3166247903554},"56":{"tf":1.4142135623730951},"57":{"tf":2.23606797749979},"59":{"tf":3.3166247903554}}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}}},"n":{"df":1,"docs":{"266":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":9,"docs":{"102":{"tf":1.0},"152":{"tf":1.0},"168":{"tf":1.0},"183":{"tf":1.0},"186":{"tf":1.0},"220":{"tf":1.0},"255":{"tf":1.4142135623730951},"34":{"tf":1.0},"72":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.0}}}},"y":{"df":1,"docs":{"47":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"s":{"df":8,"docs":{"131":{"tf":1.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"169":{"tf":1.0},"197":{"tf":1.0},"202":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"177":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"60":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"x":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"8":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"_":{"_":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"d":{"df":1,"docs":{"182":{"tf":2.0}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"1":{".":{"0":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"f":{"3":{"2":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":3,"docs":{"106":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.7320508075688772}}}},"df":19,"docs":{"106":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"115":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"136":{"tf":2.23606797749979},"137":{"tf":1.7320508075688772},"182":{"tf":1.0},"188":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":2.0},"23":{"tf":1.0},"47":{"tf":1.0},"73":{"tf":2.23606797749979},"75":{"tf":3.7416573867739413},"85":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"102":{"tf":1.0},"115":{"tf":1.4142135623730951},"131":{"tf":1.0},"139":{"tf":2.449489742783178},"191":{"tf":1.0},"229":{"tf":1.0},"251":{"tf":1.4142135623730951},"252":{"tf":1.0},"256":{"tf":1.4142135623730951},"52":{"tf":1.0},"60":{"tf":1.0}}}},"{":{"df":0,"docs":{},"x":{"df":2,"docs":{"85":{"tf":1.0},"86":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"127":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":1,"docs":{"251":{"tf":2.0}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"10":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"139":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"124":{"tf":1.0},"250":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"131":{"tf":1.0},"176":{"tf":1.0},"185":{"tf":1.0},"62":{"tf":1.0},"96":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":19,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":2.0},"144":{"tf":1.0},"145":{"tf":1.0},"195":{"tf":1.0},"203":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.7320508075688772},"219":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"39":{"tf":1.0},"66":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"9":{"tf":1.0},"95":{"tf":2.449489742783178}}}},"w":{"df":1,"docs":{"226":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"170":{"tf":1.0},"98":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"115":{"tf":1.0},"151":{"tf":1.0},"164":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.4142135623730951},"81":{"tf":1.0}},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"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":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"126":{"tf":1.0},"188":{"tf":1.4142135623730951},"190":{"tf":1.0},"3":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"211":{"tf":1.0},"213":{"tf":1.0},"60":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"189":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":1.0},"147":{"tf":1.0},"169":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"227":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.7320508075688772}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"y":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"102":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"115":{"tf":1.0},"173":{"tf":1.0},"60":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":8,"docs":{"153":{"tf":1.0},"16":{"tf":1.0},"162":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"256":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0}},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"8":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"131":{"tf":1.0},"2":{"tf":1.0},"246":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"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":0,"docs":{},"y":{"(":{"\"":{"1":{"0":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"x":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"147":{"tf":1.0},"148":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"147":{"tf":1.0}}}}}}}}},"<":{"'":{"a":{">":{"(":{"&":{"'":{"a":{"df":2,"docs":{"196":{"tf":1.0},"197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"a":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"<":{"_":{"_":{">":{"(":{"_":{"_":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"b":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"b":{"df":1,"docs":{"230":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"(":{"c":{"1":{"df":1,"docs":{"27":{"tf":1.0}}},"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"g":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"i":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"200":{"tf":1.0}}}},"1":{"(":{"&":{"df":0,"docs":{},"i":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"200":{"tf":1.0}}},"2":{"(":{"&":{"df":0,"docs":{},"i":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"(":{"&":{"df":0,"docs":{},"x":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}},"<":{"'":{"a":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}},"x":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{},"z":{"df":1,"docs":{"195":{"tf":1.0}}}},"<":{"'":{"a":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"x":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"'":{"a":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"195":{"tf":1.7320508075688772}},"s":{"(":{"&":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"df":0,"docs":{}},"<":{"'":{"a":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"36":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":23,"docs":{"115":{"tf":1.0},"126":{"tf":1.0},"136":{"tf":1.0},"141":{"tf":1.7320508075688772},"149":{"tf":1.0},"16":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":2.23606797749979},"179":{"tf":1.4142135623730951},"181":{"tf":2.449489742783178},"190":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"211":{"tf":1.7320508075688772},"230":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":2.0},"60":{"tf":1.4142135623730951},"93":{"tf":1.0}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"195":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"0":{"0":{"1":{"1":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"8":{"0":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"0":{"0":{"0":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"25":{"tf":1.0}}},"3":{"0":{"0":{".":{"0":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"213":{"tf":1.0}}},"_":{"_":{"df":1,"docs":{"181":{"tf":1.0}}},"df":0,"docs":{}},"`":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"211":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"211":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"211":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"df":3,"docs":{"196":{"tf":1.0},"197":{"tf":1.0},"202":{"tf":1.0}}}}}}}},"a":{"df":1,"docs":{"48":{"tf":1.0}},"g":{"df":1,"docs":{"72":{"tf":1.0}}},"n":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"252":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"1":{"df":1,"docs":{"194":{"tf":1.0}}},"2":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"z":{"df":0,"docs":{},"z":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"210":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"210":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"210":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}}}},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"251":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}},"o":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"147":{"tf":1.0},"148":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"141":{"tf":1.4142135623730951},"34":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"df":0,"docs":{},"z":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"df":1,"docs":{"64":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"73":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":5,"docs":{"149":{"tf":1.0},"162":{"tf":1.0},"187":{"tf":2.6457513110645907},"190":{"tf":1.0},"191":{"tf":1.0}}}}}},"i":{"df":1,"docs":{"227":{"tf":1.0}}}},"i":{"'":{"df":0,"docs":{},"m":{"df":1,"docs":{"214":{"tf":1.4142135623730951}}}},"df":4,"docs":{"195":{"tf":1.0},"213":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0}},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"v":{"4":{"df":1,"docs":{"123":{"tf":1.0}}},"6":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"60":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"100":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}}},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"71":{"tf":1.7320508075688772},"73":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":1,"docs":{"176":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"220":{"tf":1.0}}},"n":{"df":1,"docs":{"131":{"tf":1.0}}}},"df":3,"docs":{"147":{"tf":1.0},"148":{"tf":1.0},"64":{"tf":1.0}},"o":{"df":1,"docs":{"69":{"tf":1.0}},"w":{"df":2,"docs":{"181":{"tf":1.4142135623730951},"213":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"199":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"66":{"tf":1.0}}},"l":{"d":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"df":2,"docs":{"73":{"tf":2.0},"93":{"tf":1.7320508075688772}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}}}}},"r":{"df":1,"docs":{"194":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":88,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":2.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.7320508075688772},"203":{"tf":1.0},"22":{"tf":2.23606797749979},"23":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"24":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"39":{"tf":2.23606797749979},"40":{"tf":1.7320508075688772},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":2.449489742783178},"52":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"54":{"tf":2.23606797749979},"56":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"60":{"tf":2.0},"63":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"105":{"tf":1.0},"125":{"tf":1.0},"37":{"tf":2.0},"39":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":2.0},"63":{"tf":1.0},"77":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"213":{"tf":1.0}}},"r":{"df":1,"docs":{"134":{"tf":1.0}}}},"i":{"df":2,"docs":{"176":{"tf":1.0},"71":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"66":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"54":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"1":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"w":{"df":2,"docs":{"109":{"tf":1.0},"226":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":3,"docs":{"195":{"tf":2.0},"227":{"tf":1.0},"31":{"tf":1.0}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"v":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"z":{"df":1,"docs":{"31":{"tf":1.0}}},"{":{"0":{":":{".":{"5":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"176":{"tf":1.0},"185":{"tf":1.0}}},":":{"#":{"0":{"1":{"0":{"b":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"1":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}},"?":{"df":0,"docs":{},"}":{"\"":{",":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"220":{"tf":1.0},"228":{"tf":1.0}}}}},"c":{"df":1,"docs":{"80":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}},"df":1,"docs":{"213":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"223":{"tf":1.0},"224":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":1,"docs":{"191":{"tf":1.0}}},"x":{"df":1,"docs":{"189":{"tf":1.0}}}},"a":{"b":{"c":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"186":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"190":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{"0":{">":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"176":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},">":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"176":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"176":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"}":{"\"":{",":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"218":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"df":1,"docs":{"24":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"211":{"tf":1.0}}}}}}},"df":3,"docs":{"213":{"tf":1.4142135623730951},"36":{"tf":1.0},"44":{"tf":1.0}},"p":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"86":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"1":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"218":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},",":{"df":0,"docs":{},"{":{"df":0,"docs":{},"}":{"\"":{",":{"df":0,"docs":{},"v":{"1":{",":{"df":0,"docs":{},"v":{"2":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"_":{"df":2,"docs":{"58":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":47,"docs":{"100":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"115":{"tf":1.4142135623730951},"120":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"179":{"tf":1.0},"181":{"tf":1.0},"200":{"tf":3.1622776601683795},"204":{"tf":1.4142135623730951},"205":{"tf":1.7320508075688772},"208":{"tf":1.0},"213":{"tf":1.4142135623730951},"220":{"tf":1.0},"223":{"tf":1.0},"230":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":2.449489742783178},"37":{"tf":1.4142135623730951},"40":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"50":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":2.0},"62":{"tf":2.449489742783178},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":2.0},"95":{"tf":1.4142135623730951}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"153":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"154":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"124":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"181":{"tf":1.0},"183":{"tf":1.0},"87":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"251":{"tf":1.4142135623730951},"52":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"249":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"(":{"2":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":10,"docs":{"11":{"tf":1.0},"141":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"15":{"tf":1.0},"160":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"226":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}},"m":{"df":1,"docs":{"108":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"155":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"0":{"tf":1.0},"144":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":2.0},"4":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"126":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"51":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"103":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":23,"docs":{"121":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"222":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"270":{"tf":1.0},"56":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"115":{"tf":1.4142135623730951},"139":{"tf":2.0}}}},"u":{"b":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"158":{"tf":2.0}}}}},"df":23,"docs":{"105":{"tf":1.0},"142":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":3.4641016151377544},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":2.0},"165":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"208":{"tf":1.4142135623730951},"219":{"tf":1.0},"226":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"153":{"tf":1.4142135623730951},"158":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"95":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"256":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":4,"docs":{"148":{"tf":1.0},"176":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"251":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":3,"docs":{"122":{"tf":1.0},"251":{"tf":2.0},"256":{"tf":1.0}}}},"t":{"df":2,"docs":{"139":{"tf":1.0},"248":{"tf":1.0}}}}},"q":{"df":2,"docs":{"151":{"tf":1.0},"152":{"tf":1.0}},"u":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"100":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"100":{"tf":1.0}}}},"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"216":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"113":{"tf":1.0},"3":{"tf":1.4142135623730951},"4":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"176":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}},"t":{"df":2,"docs":{"60":{"tf":1.7320508075688772},"69":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.7320508075688772}}}},"x":{"(":{"df":0,"docs":{},"u":{"3":{"2":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"#":{"\"":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"#":{"#":{"\"":{"a":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"(":{"1":{"0":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"1":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"204":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772}}},"2":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"204":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772}}},"3":{"df":1,"docs":{"204":{"tf":1.4142135623730951}}},"<":{"'":{"a":{">":{"(":{"&":{"'":{"a":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":1,"docs":{"139":{"tf":1.0}}},"c":{">":{">":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"139":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{">":{">":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"139":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"139":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":2,"docs":{"125":{"tf":1.0},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":7,"docs":{"131":{"tf":1.0},"15":{"tf":1.0},"218":{"tf":1.0},"24":{"tf":1.4142135623730951},"63":{"tf":1.0},"73":{"tf":2.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"24":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"1":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"k":{"df":1,"docs":{"203":{"tf":1.7320508075688772}}}},"w":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":4,"docs":{"131":{"tf":1.0},"139":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772}}},"x":{":":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"250":{"tf":1.7320508075688772},"252":{"tf":1.0},"253":{"tf":1.0}}}},"b":{"df":0,"docs":{},"x":{"df":1,"docs":{"251":{"tf":1.7320508075688772}}}},"c":{"df":1,"docs":{"233":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"252":{"tf":1.0}}},"x":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":6,"docs":{"194":{"tf":2.449489742783178},"202":{"tf":2.0},"205":{"tf":2.0},"39":{"tf":1.0},"47":{"tf":1.0},"73":{"tf":1.4142135623730951}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"155":{"tf":1.0},"64":{"tf":1.0}}}},"d":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"256":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"146":{"tf":1.0}}},"2":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}}}},"df":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":{"146":{"tf":1.0}}},"df":0,"docs":{}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"105":{"tf":1.0},"153":{"tf":1.0},"197":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.0},"248":{"tf":1.0}}}},"df":0,"docs":{}},"df":12,"docs":{"0":{"tf":1.0},"121":{"tf":1.0},"146":{"tf":1.0},"162":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.7320508075688772},"256":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"182":{"tf":1.0},"2":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"182":{"tf":1.0},"71":{"tf":1.0},"96":{"tf":1.0}}},"o":{"c":{"df":1,"docs":{"122":{"tf":2.449489742783178}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"122":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"52":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"139":{"tf":1.0},"205":{"tf":2.23606797749979},"211":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"200":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"113":{"tf":1.0},"157":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"162":{"tf":1.0},"248":{"tf":1.0},"3":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"1":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"77":{"tf":1.0}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":4,"docs":{"58":{"tf":1.4142135623730951},"75":{"tf":2.6457513110645907},"77":{"tf":2.0},"79":{"tf":1.7320508075688772}},"e":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"1":{".":{"0":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"256":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.0}},"i":{"df":2,"docs":{"10":{"tf":1.0},"11":{"tf":1.7320508075688772}}},"u":{"c":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"105":{"tf":1.0},"115":{"tf":1.0},"157":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.0}},"f":{"(":{"&":{"'":{"a":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"205":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"205":{"tf":1.4142135623730951}}},"<":{"'":{"a":{"df":2,"docs":{"202":{"tf":1.0},"207":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"x":{"df":1,"docs":{"202":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":5,"docs":{"202":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":32,"docs":{"125":{"tf":1.0},"148":{"tf":1.0},"183":{"tf":1.0},"195":{"tf":4.0},"198":{"tf":1.0},"199":{"tf":2.449489742783178},"200":{"tf":1.7320508075688772},"202":{"tf":2.449489742783178},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.7320508075688772},"213":{"tf":2.6457513110645907},"221":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"235":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"48":{"tf":1.0},"52":{"tf":2.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"73":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"37":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"248":{"tf":1.0}}}}},"g":{"_":{"a":{"b":{"c":{"d":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{"_":{"_":{"df":1,"docs":{"84":{"tf":1.0}}},"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"248":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"248":{"tf":2.0},"249":{"tf":2.449489742783178},"250":{"tf":3.0},"251":{"tf":4.0},"252":{"tf":1.7320508075688772},"253":{"tf":3.7416573867739413},"255":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}}}}},"l":{"df":2,"docs":{"153":{"tf":1.0},"3":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}},"o":{"a":{"d":{"df":1,"docs":{"249":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"199":{"tf":1.4142135623730951},"65":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"100":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":18,"docs":{"128":{"tf":1.0},"131":{"tf":1.0},"151":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"197":{"tf":1.0},"211":{"tf":1.0},"22":{"tf":1.0},"271":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.4142135623730951},"45":{"tf":1.0},"63":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"77":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"205":{"tf":1.0},"248":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"223":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":6,"docs":{"129":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":2,"docs":{"3":{"tf":1.0},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"115":{"tf":1.0},"149":{"tf":1.0},"22":{"tf":1.0},"60":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":17,"docs":{"108":{"tf":1.4142135623730951},"126":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.4142135623730951},"160":{"tf":1.0},"176":{"tf":1.4142135623730951},"195":{"tf":1.0},"203":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.7320508075688772},"221":{"tf":1.0},"246":{"tf":1.0},"250":{"tf":1.0},"254":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}},"s":{"<":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"198":{"tf":1.0},"251":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}},"z":{"df":2,"docs":{"117":{"tf":1.0},"127":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":12,"docs":{"110":{"tf":1.0},"130":{"tf":1.0},"140":{"tf":1.0},"150":{"tf":1.0},"192":{"tf":1.0},"20":{"tf":1.0},"209":{"tf":1.0},"35":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"114":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"115":{"tf":1.0},"217":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"66":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"251":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.4142135623730951},"213":{"tf":1.0},"226":{"tf":1.0},"253":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}}}}}}}},"i":{"3":{"2":{"df":3,"docs":{"133":{"tf":1.0},"147":{"tf":2.0},"169":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"134":{"tf":1.0},"137":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}}}},"t":{"df":3,"docs":{"145":{"tf":1.0},"147":{"tf":1.0},"227":{"tf":1.0}}}},"df":24,"docs":{"102":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.7320508075688772},"139":{"tf":1.0},"140":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.7320508075688772},"147":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"168":{"tf":1.0},"169":{"tf":2.6457513110645907},"181":{"tf":1.0},"218":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.7320508075688772},"252":{"tf":1.7320508075688772},"255":{"tf":1.0},"37":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":36,"docs":{"103":{"tf":1.0},"114":{"tf":1.4142135623730951},"125":{"tf":2.23606797749979},"131":{"tf":1.4142135623730951},"134":{"tf":1.0},"142":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.7320508075688772},"165":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"195":{"tf":2.0},"199":{"tf":1.0},"210":{"tf":2.0},"212":{"tf":1.0},"213":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"22":{"tf":1.0},"221":{"tf":1.0},"252":{"tf":1.0},"29":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"54":{"tf":1.0},"60":{"tf":2.0},"66":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":2.449489742783178},"98":{"tf":1.0},"99":{"tf":2.0}},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"153":{"tf":1.0},"220":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"118":{"tf":1.0},"147":{"tf":1.0},"79":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}}}}}}}}},"h":{"df":1,"docs":{"94":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":5,"docs":{"143":{"tf":1.4142135623730951},"176":{"tf":1.0},"187":{"tf":1.4142135623730951},"226":{"tf":1.0},"88":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"4":{"tf":1.4142135623730951}}}}}}},"s":{"c":{"df":1,"docs":{"246":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"152":{"tf":2.0},"153":{"tf":1.4142135623730951},"168":{"tf":1.0}}}}},"r":{"df":1,"docs":{"205":{"tf":1.4142135623730951}}},"s":{"df":1,"docs":{"174":{"tf":1.0}}},"u":{"\\":{"df":0,"docs":{},"x":{"7":{"3":{"_":{"_":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":8,"docs":{"109":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951},"207":{"tf":1.0},"226":{"tf":1.0},"248":{"tf":1.0},"40":{"tf":1.0}}}},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"271":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":11,"docs":{"1":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"162":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":2.6457513110645907},"199":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"60":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"102":{"tf":1.4142135623730951},"131":{"tf":1.0},"88":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"\"":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"108":{"tf":1.0},"95":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"'":{"df":1,"docs":{"87":{"tf":1.0}}},"(":{"df":0,"docs":{},"o":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"7":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"=":{"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"171":{"tf":1.0},"174":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":55,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"10":{"tf":1.0},"102":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"121":{"tf":1.0},"124":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"144":{"tf":1.0},"150":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"170":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"181":{"tf":1.4142135623730951},"183":{"tf":1.0},"19":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"197":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"204":{"tf":1.0},"207":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"227":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.0},"270":{"tf":1.0},"3":{"tf":2.0},"35":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"7":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951},"90":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}}}}}},"s":{"(":{"a":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},".":{"_":{"_":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"45":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"114":{"tf":1.0},"119":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"119":{"tf":1.0},"36":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"_":{"_":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"115":{"tf":1.0},"45":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"39":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"213":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"45":{"tf":1.7320508075688772}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"p":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"1":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"[":{"0":{"df":1,"docs":{"49":{"tf":1.0}}},"3":{".":{".":{"5":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"114":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":8,"docs":{"114":{"tf":1.4142135623730951},"178":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"45":{"tf":2.0},"46":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0}}},"2":{"df":4,"docs":{"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"45":{"tf":1.4142135623730951},"52":{"tf":1.0}}},"3":{"df":1,"docs":{"45":{"tf":1.0}}},"[":{".":{".":{"1":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{".":{"2":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"114":{"tf":1.0}}},"3":{".":{".":{"5":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"_":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"181":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":4,"docs":{"103":{"tf":1.7320508075688772},"139":{"tf":1.0},"151":{"tf":1.0},"51":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"e":{"df":32,"docs":{"107":{"tf":1.7320508075688772},"118":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"16":{"tf":1.0},"177":{"tf":2.23606797749979},"183":{"tf":1.0},"188":{"tf":1.0},"195":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"249":{"tf":2.0},"253":{"tf":1.0},"255":{"tf":1.7320508075688772},"256":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"131":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"148":{"tf":1.0},"197":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":2.0}}}},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":1,"docs":{"107":{"tf":1.0}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"149":{"tf":1.0}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":12,"docs":{"133":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"15":{"tf":2.0},"156":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"204":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"125":{"tf":2.6457513110645907},"190":{"tf":1.7320508075688772}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"\"":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{"(":{"\"":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"[":{"\"":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"10":{"tf":1.0},"251":{"tf":1.7320508075688772},"5":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":31,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":2.23606797749979},"114":{"tf":2.0},"115":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"132":{"tf":1.0},"146":{"tf":1.7320508075688772},"178":{"tf":1.0},"188":{"tf":1.4142135623730951},"198":{"tf":1.0},"202":{"tf":1.7320508075688772},"204":{"tf":2.0},"212":{"tf":1.0},"213":{"tf":2.23606797749979},"228":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":3.0},"39":{"tf":1.7320508075688772},"40":{"tf":2.449489742783178},"41":{"tf":2.6457513110645907},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":2.23606797749979},"46":{"tf":2.0},"47":{"tf":1.7320508075688772},"50":{"tf":1.0},"53":{"tf":2.0},"60":{"tf":1.0},"84":{"tf":1.4142135623730951},"92":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"154":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"148":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{":":{":":{"<":{"df":0,"docs":{},"i":{"3":{"2":{">":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"148":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"8":{"tf":1.0}}}}},"df":11,"docs":{"114":{"tf":1.0},"131":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.0},"255":{"tf":1.0},"52":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"93":{"tf":1.0}},"s":{"(":{"1":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"8":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"220":{"tf":1.0},"52":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":15,"docs":{"152":{"tf":1.0},"162":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"197":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"248":{"tf":2.449489742783178},"249":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"51":{"tf":1.0},"60":{"tf":1.0},"73":{"tf":1.0}},"m":{"df":3,"docs":{"139":{"tf":1.0},"3":{"tf":1.0},"95":{"tf":1.0}}},"n":{"df":2,"docs":{"153":{"tf":1.0},"98":{"tf":1.0}}}},"l":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"107":{"tf":1.4142135623730951},"124":{"tf":1.0},"251":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"0":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"0":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":6,"docs":{"105":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"183":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"226":{"tf":1.0}}},"1":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"a":{"df":1,"docs":{"271":{"tf":1.0}},"g":{"df":1,"docs":{"107":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"77":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.4142135623730951}}}}}}},"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"*":{"df":0,"docs":{},"i":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}}}}}}},"i":{"df":3,"docs":{"106":{"tf":1.0},"205":{"tf":1.0},"97":{"tf":1.4142135623730951}},"s":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}},"m":{"df":1,"docs":{"91":{"tf":2.0}},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}},"p":{"1":{".":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}},"x":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":1,"docs":{"75":{"tf":1.4142135623730951}}},"2":{".":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}},"x":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":1,"docs":{"75":{"tf":1.4142135623730951}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{")":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"216":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"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":{"95":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}},"u":{"df":2,"docs":{"216":{"tf":1.4142135623730951},"97":{"tf":2.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"x":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"(":{"2":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":3,"docs":{"106":{"tf":1.0},"205":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"(":{"2":{")":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},":":{":":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"_":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"b":{":":{":":{"c":{":":{":":{"df":0,"docs":{},"j":{"df":1,"docs":{"158":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"134":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":23,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":2.0},"106":{"tf":1.4142135623730951},"196":{"tf":1.7320508075688772},"197":{"tf":1.4142135623730951},"202":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"236":{"tf":1.0},"271":{"tf":1.7320508075688772},"60":{"tf":2.8284271247461903},"75":{"tf":4.0},"77":{"tf":3.4641016151377544},"78":{"tf":1.4142135623730951},"91":{"tf":2.0},"93":{"tf":1.0},"97":{"tf":2.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"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":1,"docs":{"31":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}},"x":{"df":1,"docs":{"158":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"n":{"d":{"df":2,"docs":{"227":{"tf":1.0},"242":{"tf":1.0}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"152":{"tf":1.0},"154":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.0},"248":{"tf":1.4142135623730951},"249":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"113":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"221":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"177":{"tf":1.0},"9":{"tf":1.0}}},"v":{"df":3,"docs":{"1":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"153":{"tf":1.0},"154":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"154":{"tf":1.0},"155":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"u":{"1":{"df":1,"docs":{"57":{"tf":1.0}}},"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"98":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"132":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"253":{"tf":1.0},"73":{"tf":1.0},"96":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"<":{"a":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"84":{"tf":1.0}}}},"df":1,"docs":{"84":{"tf":1.0}}}}},"h":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"16":{"tf":2.0},"18":{"tf":1.0},"72":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"249":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":2,"docs":{"91":{"tf":2.8284271247461903},"96":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":2,"docs":{"251":{"tf":1.0},"48":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"182":{"tf":1.0}}}}},"l":{"df":1,"docs":{"251":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"df":1,"docs":{"224":{"tf":2.6457513110645907}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"_":{"_":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"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":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"224":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"145":{"tf":1.0},"195":{"tf":1.0},"204":{"tf":1.0},"25":{"tf":1.0},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"<":{"'":{"b":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"139":{"tf":1.0}}},"r":{"df":3,"docs":{"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"203":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"57":{"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":{"255":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":2,"docs":{"60":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"_":{"_":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":9,"docs":{"143":{"tf":1.0},"149":{"tf":1.0},"168":{"tf":1.4142135623730951},"181":{"tf":1.0},"248":{"tf":1.0},"255":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.0},"7":{"tf":1.0}},"n":{"df":1,"docs":{"131":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":2,"docs":{"117":{"tf":1.0},"127":{"tf":1.7320508075688772}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"19":{"tf":1.0},"256":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"125":{"tf":1.0},"195":{"tf":1.4142135623730951},"199":{"tf":1.0},"33":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"78":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"m":{"d":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":10,"docs":{"114":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"152":{"tf":1.0},"39":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"77":{"tf":1.0},"90":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"195":{"tf":1.0},"196":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"132":{"tf":1.0},"182":{"tf":1.0},"218":{"tf":1.0},"6":{"tf":1.0}},"e":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"141":{"tf":1.0},"247":{"tf":1.0}}}}},"i":{"c":{"df":1,"docs":{"52":{"tf":1.0}}},"df":2,"docs":{"132":{"tf":1.0},"136":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"251":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":6,"docs":{"148":{"tf":1.0},"195":{"tf":1.4142135623730951},"37":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"96":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"124":{"tf":1.0},"129":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"155":{"tf":1.0},"157":{"tf":1.0}}},"x":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}},"z":{"df":0,"docs":{},"e":{"df":14,"docs":{"115":{"tf":1.0},"117":{"tf":1.0},"124":{"tf":1.0},"139":{"tf":1.4142135623730951},"224":{"tf":2.449489742783178},"225":{"tf":1.0},"228":{"tf":1.0},"253":{"tf":1.0},"29":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":2.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"p":{"df":2,"docs":{"65":{"tf":1.0},"66":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"213":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"6":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"113":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"1":{"df":4,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.0},"53":{"tf":1.0}}},"2":{"df":4,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951}}},"3":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"113":{"tf":1.0}}}}}}},"[":{"3":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"113":{"tf":1.0},"121":{"tf":1.0}}},"df":12,"docs":{"113":{"tf":2.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.0},"121":{"tf":2.23606797749979},"139":{"tf":1.4142135623730951},"19":{"tf":1.0},"228":{"tf":1.7320508075688772},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":3.605551275463989},"53":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"122":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"124":{"tf":1.0},"131":{"tf":1.0},"144":{"tf":1.0},"3":{"tf":1.7320508075688772},"4":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"253":{"tf":1.0},"93":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"153":{"tf":1.0},"227":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":46,"docs":{"103":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"179":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"v":{"df":1,"docs":{"33":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"(":{"&":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"1":{"df":1,"docs":{"221":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"221":{"tf":1.4142135623730951}}},"3":{"0":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}},"df":1,"docs":{"221":{"tf":1.4142135623730951}}},"4":{"df":2,"docs":{"221":{"tf":1.0},"73":{"tf":1.0}}},"5":{"df":2,"docs":{"221":{"tf":1.4142135623730951},"60":{"tf":1.0}}},"7":{"df":1,"docs":{"71":{"tf":1.0}}},"9":{"8":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}}},"b":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":2,"docs":{"60":{"tf":1.0},"71":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":3,"docs":{"216":{"tf":1.4142135623730951},"220":{"tf":1.0},"97":{"tf":2.0}}},"x":{"df":2,"docs":{"170":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":10,"docs":{"132":{"tf":1.0},"143":{"tf":1.0},"153":{"tf":1.0},"157":{"tf":1.0},"181":{"tf":1.0},"22":{"tf":1.0},"248":{"tf":1.0},"40":{"tf":1.0},"63":{"tf":1.4142135623730951},"70":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":9,"docs":{"108":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"158":{"tf":1.0},"169":{"tf":1.4142135623730951},"182":{"tf":1.0},"254":{"tf":1.0},"47":{"tf":1.0},"89":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"100":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"df":1,"docs":{"114":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"139":{"tf":1.0},"152":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":7,"docs":{"122":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"148":{"tf":1.0},"156":{"tf":1.0},"176":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"176":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":3,"docs":{"12":{"tf":1.0},"148":{"tf":1.4142135623730951},"250":{"tf":1.7320508075688772}},"i":{"df":21,"docs":{"106":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"139":{"tf":1.0},"176":{"tf":1.4142135623730951},"187":{"tf":1.0},"203":{"tf":1.0},"213":{"tf":1.4142135623730951},"248":{"tf":2.8284271247461903},"249":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"254":{"tf":1.0},"256":{"tf":1.0},"56":{"tf":1.0},"73":{"tf":1.0},"84":{"tf":2.23606797749979},"90":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"142":{"tf":2.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"137":{"tf":1.0},"73":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"1":{".":{"0":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"c":{"/":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"154":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"152":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"168":{"tf":1.0},"169":{"tf":2.449489742783178}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"154":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"154":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"154":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":4,"docs":{"152":{"tf":1.0},"154":{"tf":1.0},"169":{"tf":2.0},"170":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"152":{"tf":1.0},"155":{"tf":1.0}},"s":{":":{"3":{":":{"5":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{":":{"5":{"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":5,"docs":{"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"141":{"tf":1.0},"143":{"tf":2.23606797749979},"144":{"tf":1.0},"256":{"tf":1.7320508075688772},"51":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"195":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"196":{"tf":1.0},"197":{"tf":1.0},"88":{"tf":1.0}}}}},"r":{"d":{"df":10,"docs":{"109":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"152":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"0":{"tf":1.0}},"t":{"df":11,"docs":{"127":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"164":{"tf":1.0},"194":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"247":{"tf":1.0},"51":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"251":{"tf":2.449489742783178},"60":{"tf":1.0},"77":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"30":{"tf":1.0},"66":{"tf":1.0}}}}}}},"i":{"c":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"199":{"tf":2.0}}}}}},"df":6,"docs":{"102":{"tf":1.7320508075688772},"195":{"tf":1.4142135623730951},"198":{"tf":2.8284271247461903},"199":{"tf":3.3166247903554},"200":{"tf":4.123105625617661},"227":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"126":{"tf":1.0}}}},"y":{"df":3,"docs":{"199":{"tf":1.0},"37":{"tf":1.0},"59":{"tf":1.0}}}},"d":{":":{":":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"<":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"c":{"df":0,"docs":{},"h":{":":{":":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":10,"docs":{"247":{"tf":1.0},"248":{"tf":2.0},"249":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"_":{"_":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":7,"docs":{"125":{"tf":1.7320508075688772},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"133":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"134":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"133":{"tf":1.0}},"m":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":5,"docs":{"180":{"tf":1.0},"181":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"180":{"tf":1.0},"181":{"tf":1.0},"200":{"tf":1.0},"228":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"]":{"[":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":2,"docs":{"176":{"tf":1.0},"177":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":6,"docs":{"109":{"tf":1.0},"136":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"226":{"tf":1.0}}}},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"146":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"133":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{":":{":":{"<":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"v":{"df":3,"docs":{"27":{"tf":1.0},"29":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}},"e":{":":{":":{"<":{"&":{"'":{"b":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"139":{"tf":1.0}}}}}},"*":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"<":{"'":{"b":{"df":1,"docs":{"139":{"tf":1.0}}},"df":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":{"115":{"tf":1.0},"213":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"137":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"133":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"94":{"tf":1.4142135623730951}},"s":{":":{":":{"a":{"d":{"d":{"df":2,"docs":{"226":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}},"{":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"133":{"tf":1.0},"134":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":2,"docs":{"148":{"tf":1.0},"227":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"48":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"148":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"45":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"270":{"tf":1.0}}}},"p":{"df":3,"docs":{"1":{"tf":1.0},"152":{"tf":1.0},"176":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"128":{"tf":1.0},"147":{"tf":1.0},"199":{"tf":1.0},"213":{"tf":1.0},"226":{"tf":1.4142135623730951},"249":{"tf":1.0},"251":{"tf":1.0},"37":{"tf":1.0},"59":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":12,"docs":{"113":{"tf":1.0},"115":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"199":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"255":{"tf":1.0},"45":{"tf":1.4142135623730951},"56":{"tf":1.0},"98":{"tf":1.0}}},"i":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}},"y":{".":{"_":{"_":{"df":1,"docs":{"115":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{":":{":":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"181":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"255":{"tf":1.0}}}}},"df":31,"docs":{"113":{"tf":2.449489742783178},"119":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":2.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":2.23606797749979},"148":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"196":{"tf":1.0},"197":{"tf":2.0},"198":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.7320508075688772},"208":{"tf":1.0},"213":{"tf":1.4142135623730951},"228":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":2.8284271247461903},"45":{"tf":1.0},"46":{"tf":2.449489742783178},"48":{"tf":2.0},"52":{"tf":2.0},"53":{"tf":2.23606797749979},"78":{"tf":1.0},"89":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"'":{"df":2,"docs":{"115":{"tf":1.0},"45":{"tf":1.0}}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{")":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"1":{"df":1,"docs":{"132":{"tf":1.0}}},"2":{"df":1,"docs":{"132":{"tf":1.0}}},"3":{"df":1,"docs":{"132":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"*":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"37":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"211":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":11,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"204":{"tf":1.0},"36":{"tf":2.23606797749979},"37":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}}},"i":{"df":2,"docs":{"49":{"tf":1.0},"92":{"tf":1.0}}}},"i":{"df":1,"docs":{"45":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"\"":{")":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"154":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"224":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"c":{"df":3,"docs":{"190":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":2,"docs":{"51":{"tf":1.0},"57":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"107":{"tf":1.0}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"226":{"tf":1.0},"37":{"tf":1.4142135623730951},"45":{"tf":1.0}}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"154":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":2,"docs":{"46":{"tf":1.0},"54":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"114":{"tf":1.0},"115":{"tf":1.0},"146":{"tf":1.4142135623730951},"213":{"tf":2.0}}}}}},"df":0,"docs":{}},"]":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"176":{"tf":1.0},"177":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":64,"docs":{"101":{"tf":1.7320508075688772},"102":{"tf":2.0},"103":{"tf":1.0},"107":{"tf":2.8284271247461903},"108":{"tf":3.0},"111":{"tf":2.0},"112":{"tf":1.4142135623730951},"113":{"tf":3.1622776601683795},"114":{"tf":2.449489742783178},"115":{"tf":2.0},"116":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":2.0},"128":{"tf":1.0},"132":{"tf":2.449489742783178},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"181":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"213":{"tf":1.0},"22":{"tf":1.4142135623730951},"224":{"tf":1.0},"23":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":2.23606797749979},"250":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.7320508075688772},"269":{"tf":1.0},"36":{"tf":2.0},"37":{"tf":1.0},"39":{"tf":2.23606797749979},"40":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"45":{"tf":2.6457513110645907},"46":{"tf":2.23606797749979},"47":{"tf":2.6457513110645907},"48":{"tf":3.4641016151377544},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"53":{"tf":2.0},"56":{"tf":1.4142135623730951},"57":{"tf":2.23606797749979},"59":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"71":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":2.8284271247461903},"92":{"tf":1.4142135623730951},"95":{"tf":2.8284271247461903},"96":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"176":{"tf":1.0}}},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"47":{"tf":1.0}}},"t":{"df":58,"docs":{"100":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0},"176":{"tf":1.4142135623730951},"181":{"tf":2.6457513110645907},"182":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":2.6457513110645907},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"199":{"tf":1.0},"202":{"tf":2.0},"205":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.7320508075688772},"216":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"224":{"tf":1.0},"226":{"tf":2.23606797749979},"271":{"tf":1.0},"37":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":3.1622776601683795},"57":{"tf":2.449489742783178},"58":{"tf":1.7320508075688772},"59":{"tf":2.0},"60":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":2.0},"77":{"tf":2.449489742783178},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"85":{"tf":2.23606797749979},"86":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":2.23606797749979},"94":{"tf":2.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"97":{"tf":2.0},"99":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"152":{"tf":1.0},"155":{"tf":1.0},"176":{"tf":1.7320508075688772},"181":{"tf":1.0},"183":{"tf":1.0},"195":{"tf":1.0},"2":{"tf":1.0}},"e":{"(":{"3":{"df":2,"docs":{"176":{"tf":1.0},"181":{"tf":1.0}}},"df":0,"docs":{},"i":{"3":{"2":{"df":2,"docs":{"176":{"tf":1.0},"181":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"v":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"108":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":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":{"108":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"108":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"108":{"tf":1.0}}}}}}}}}},"df":2,"docs":{"108":{"tf":2.6457513110645907},"92":{"tf":2.0}}}}},"y":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"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":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"162":{"tf":1.4142135623730951},"224":{"tf":2.449489742783178}}}}}},"u":{"b":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"106":{"tf":1.0},"94":{"tf":1.0}}}}}}},"df":2,"docs":{"250":{"tf":1.0},"255":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"176":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"253":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"198":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"131":{"tf":1.0},"227":{"tf":1.4142135623730951},"25":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.0}}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"88":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"48":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"148":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":13,"docs":{"115":{"tf":1.0},"124":{"tf":1.7320508075688772},"149":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"251":{"tf":1.0},"256":{"tf":1.0},"270":{"tf":1.0},"37":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"176":{"tf":1.4142135623730951},"255":{"tf":1.0}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"75":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"253":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"(":{"1":{".":{"2":{"3":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"32":{"tf":1.0}}},"2":{"0":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{},"i":{"8":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"x":{"df":2,"docs":{"32":{"tf":1.0},"33":{"tf":1.4142135623730951}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"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":0,"docs":{},"y":{"(":{"_":{"_":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":5,"docs":{"137":{"tf":1.0},"223":{"tf":1.0},"24":{"tf":1.4142135623730951},"84":{"tf":1.0},"97":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"95":{"tf":2.23606797749979}},"z":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"95":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"o":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"f":{"a":{"c":{"df":6,"docs":{"179":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.4142135623730951},"224":{"tf":1.0},"54":{"tf":1.4142135623730951},"57":{"tf":1.0}},"e":{"\"":{",":{"1":{"8":{"df":1,"docs":{"223":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"108":{"tf":1.0},"181":{"tf":1.0},"51":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"\"":{",":{"1":{"8":{"df":1,"docs":{"223":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"224":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"153":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":2.0}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"127":{"tf":1.0},"148":{"tf":1.0},"226":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"164":{"tf":1.0},"246":{"tf":1.7320508075688772},"251":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"131":{"tf":1.0},"31":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"115":{"tf":1.0},"176":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"w":{"a":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"100":{"tf":2.6457513110645907},"99":{"tf":2.6457513110645907}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"99":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"124":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"252":{"tf":1.0},"255":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"c":{"df":3,"docs":{"2":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":8,"docs":{"107":{"tf":1.4142135623730951},"158":{"tf":1.0},"210":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":1.0}}}}}}}},"t":{".":{"0":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"1":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"131":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}},"`":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{".":{"_":{"_":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"df":2,"docs":{"60":{"tf":2.449489742783178},"88":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"211":{"tf":1.4142135623730951}}}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"153":{"tf":1.0},"154":{"tf":1.0}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"df":1,"docs":{"36":{"tf":1.0}},"s":{"1":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"153":{"tf":1.0},"154":{"tf":1.0}}}},"df":0,"docs":{}}},"df":15,"docs":{"114":{"tf":1.4142135623730951},"156":{"tf":1.0},"162":{"tf":1.0},"195":{"tf":1.4142135623730951},"210":{"tf":1.0},"213":{"tf":2.23606797749979},"223":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"39":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"60":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.4142135623730951}},"n":{"df":2,"docs":{"121":{"tf":1.0},"202":{"tf":1.0}}},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"124":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"251":{"tf":1.0},"254":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"217":{"tf":1.0},"94":{"tf":1.0}}}}},"df":31,"docs":{"106":{"tf":1.4142135623730951},"113":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.0},"145":{"tf":1.0},"195":{"tf":1.4142135623730951},"198":{"tf":1.7320508075688772},"200":{"tf":3.605551275463989},"202":{"tf":4.795831523312719},"203":{"tf":1.7320508075688772},"207":{"tf":2.0},"211":{"tf":2.0},"213":{"tf":3.3166247903554},"215":{"tf":1.7320508075688772},"216":{"tf":2.0},"22":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.7320508075688772},"37":{"tf":2.0},"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":2.449489742783178},"89":{"tf":1.7320508075688772},"92":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":4.123105625617661}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":2.23606797749979}}}}}},"df":0,"docs":{},"m":{".":{"1":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"125":{"tf":2.449489742783178}},"s":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"1":{".":{"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":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{".":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"125":{"tf":1.0}}},"2":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"148":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"174":{"tf":1.0},"204":{"tf":1.0},"226":{"tf":1.0},"251":{"tf":1.4142135623730951},"252":{"tf":1.0},"90":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"248":{"tf":2.23606797749979},"250":{"tf":1.0},"253":{"tf":2.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"251":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"n":{"df":1,"docs":{"62":{"tf":1.0}}},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"113":{"tf":1.0},"141":{"tf":1.0},"16":{"tf":1.0},"45":{"tf":1.0},"6":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"152":{"tf":1.4142135623730951},"169":{"tf":4.795831523312719},"186":{"tf":1.4142135623730951},"216":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"271":{"tf":1.7320508075688772},"73":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"16":{"tf":1.0},"176":{"tf":2.23606797749979},"177":{"tf":2.0},"208":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"2":{"tf":1.0}}}},"t":{"'":{"df":2,"docs":{"48":{"tf":1.4142135623730951},"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"63":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"211":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"126":{"tf":1.0}}}},"":{"df":1,"docs":{"115":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"114":{"tf":1.0},"182":{"tf":1.0},"248":{"tf":1.0},"255":{"tf":1.0}}},"k":{"df":1,"docs":{"4":{"tf":1.0}}}},"r":{"d":{"df":2,"docs":{"129":{"tf":1.7320508075688772},"248":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"124":{"tf":1.0},"128":{"tf":1.0},"270":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":8,"docs":{"122":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"143":{"tf":1.0},"198":{"tf":1.0},"213":{"tf":1.0},"251":{"tf":1.7320508075688772},"4":{"tf":1.0}},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"141":{"tf":2.0},"143":{"tf":1.4142135623730951},"2":{"tf":1.0},"237":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":11,"docs":{"106":{"tf":1.0},"115":{"tf":1.0},"132":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"170":{"tf":1.0},"195":{"tf":1.0},"2":{"tf":1.0},"251":{"tf":1.0},"256":{"tf":1.0},"34":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":6,"docs":{"114":{"tf":1.0},"12":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"256":{"tf":1.0},"63":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}}}},"u":{"df":3,"docs":{"200":{"tf":1.0},"220":{"tf":1.0},"78":{"tf":1.0}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"227":{"tf":2.0}}}}}},"i":{"df":1,"docs":{"195":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":24,"docs":{"102":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"132":{"tf":1.0},"142":{"tf":1.0},"153":{"tf":1.0},"177":{"tf":1.0},"198":{"tf":1.0},"204":{"tf":1.0},"226":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0},"98":{"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":1,"docs":{"126":{"tf":1.0}}}}}}}}}},"p":{"df":8,"docs":{"114":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"143":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"52":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"95":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"251":{"tf":2.0}}}},"o":{"_":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"213":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"112":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"df":7,"docs":{"163":{"tf":1.0},"245":{"tf":1.0},"268":{"tf":1.0},"34":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"81":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"139":{"tf":1.0},"248":{"tf":1.0},"66":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"11":{"tf":1.0}}}}},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"10":{"tf":1.0},"2":{"tf":1.0}}}},"p":{"df":1,"docs":{"168":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"176":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"223":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":1,"docs":{"34":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"80":{"tf":1.7320508075688772}}}}}}},"df":2,"docs":{"77":{"tf":2.23606797749979},"78":{"tf":2.0}}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"t":{"df":50,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":2.449489742783178},"103":{"tf":2.23606797749979},"104":{"tf":1.0},"105":{"tf":2.23606797749979},"106":{"tf":1.0},"107":{"tf":2.6457513110645907},"108":{"tf":3.0},"109":{"tf":1.4142135623730951},"123":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"132":{"tf":2.8284271247461903},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.7320508075688772},"182":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":2.8284271247461903},"203":{"tf":1.0},"213":{"tf":2.449489742783178},"219":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"226":{"tf":2.0},"228":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":2.23606797749979},"91":{"tf":2.23606797749979},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.6457513110645907},"95":{"tf":2.0},"96":{"tf":2.6457513110645907},"97":{"tf":2.449489742783178},"98":{"tf":2.0},"99":{"tf":2.23606797749979}},"s":{"]":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"176":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"":{"df":2,"docs":{"107":{"tf":1.0},"108":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"248":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"152":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"183":{"tf":1.0}}}}},"df":3,"docs":{"162":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"u":{"df":0,"docs":{},"e":{"df":9,"docs":{"181":{"tf":1.0},"203":{"tf":1.0},"213":{"tf":1.0},"28":{"tf":1.7320508075688772},"34":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"(":{"a":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"134":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"169":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"134":{"tf":1.0}}}}}}}}}},"<":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"134":{"tf":1.7320508075688772}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"134":{"tf":2.0}}}}}}}},"t":{"df":1,"docs":{"147":{"tf":1.0}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"54":{"tf":1.4142135623730951}},"l":{"df":9,"docs":{"109":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"226":{"tf":1.0},"54":{"tf":2.8284271247461903},"56":{"tf":1.7320508075688772},"60":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"'":{"df":1,"docs":{"54":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"r":{"b":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"139":{"tf":2.23606797749979},"217":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"5":{"tf":1.0},"9":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"o":{"df":40,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.4142135623730951},"137":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.4142135623730951},"152":{"tf":1.0},"156":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"167":{"tf":1.0},"169":{"tf":1.7320508075688772},"17":{"tf":1.0},"176":{"tf":1.0},"187":{"tf":1.0},"195":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"211":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"39":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"92":{"tf":1.0},"97":{"tf":1.0}},"x":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"6":{"4":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"x":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{">":{"(":{"_":{"df":2,"docs":{"22":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":77,"docs":{"102":{"tf":2.0},"103":{"tf":1.4142135623730951},"105":{"tf":2.8284271247461903},"106":{"tf":2.8284271247461903},"107":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772},"110":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":2.23606797749979},"132":{"tf":2.8284271247461903},"133":{"tf":2.0},"134":{"tf":1.4142135623730951},"136":{"tf":2.0},"137":{"tf":1.7320508075688772},"139":{"tf":2.0},"147":{"tf":1.0},"148":{"tf":2.0},"149":{"tf":1.0},"156":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.4142135623730951},"176":{"tf":2.449489742783178},"180":{"tf":1.4142135623730951},"181":{"tf":2.23606797749979},"182":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.0},"210":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":2.23606797749979},"215":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":2.23606797749979},"221":{"tf":2.23606797749979},"226":{"tf":3.3166247903554},"227":{"tf":2.6457513110645907},"228":{"tf":2.0},"250":{"tf":1.4142135623730951},"253":{"tf":1.0},"29":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":2.449489742783178},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772},"60":{"tf":2.23606797749979},"75":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"84":{"tf":3.0},"87":{"tf":2.23606797749979},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":2.0},"91":{"tf":2.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951},"96":{"tf":2.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}}},"i":{"c":{"df":5,"docs":{"124":{"tf":1.0},"132":{"tf":1.0},"149":{"tf":1.0},"193":{"tf":1.0},"253":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"+":{"2":{"1":{"1":{"d":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"8":{"df":1,"docs":{"250":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"df":4,"docs":{"131":{"tf":1.0},"22":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0}}},"df":1,"docs":{"57":{"tf":1.0}}},"2":{"df":1,"docs":{"57":{"tf":1.0}}},"3":{"2":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"139":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"w":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":17,"docs":{"103":{"tf":1.0},"139":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"212":{"tf":2.0},"22":{"tf":1.4142135623730951},"221":{"tf":2.23606797749979},"224":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"79":{"tf":1.7320508075688772},"97":{"tf":3.0}}},"df":0,"docs":{}},"6":{"4":{"df":7,"docs":{"131":{"tf":1.4142135623730951},"248":{"tf":2.6457513110645907},"249":{"tf":2.23606797749979},"250":{"tf":2.0},"251":{"tf":1.0},"256":{"tf":1.4142135623730951},"57":{"tf":1.0}}},"df":0,"docs":{}},"8":{",":{"df":0,"docs":{},"i":{"1":{"6":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"]":{">":{"(":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":20,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.7320508075688772},"113":{"tf":1.0},"118":{"tf":1.0},"125":{"tf":1.4142135623730951},"131":{"tf":3.7416573867739413},"134":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.7320508075688772},"181":{"tf":1.0},"197":{"tf":1.0},"22":{"tf":1.0},"228":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"88":{"tf":2.23606797749979}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"132":{"tf":1.0}}}},"`":{",":{"`":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"132":{"tf":1.7320508075688772},"139":{"tf":1.0},"204":{"tf":2.0},"56":{"tf":1.0},"86":{"tf":2.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"132":{"tf":1.0},"142":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"107":{"tf":1.0},"75":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":42,"docs":{"103":{"tf":1.0},"109":{"tf":1.0},"116":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.4142135623730951},"144":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0},"159":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":1.0},"216":{"tf":1.0},"224":{"tf":1.0},"230":{"tf":1.0},"25":{"tf":1.0},"271":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"121":{"tf":1.0},"133":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"197":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"270":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"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":1,"docs":{"47":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"163":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}}}}},"t":{"(":{"1":{"df":1,"docs":{"97":{"tf":1.0}}},"3":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"255":{"tf":1.0},"26":{"tf":1.0},"261":{"tf":1.0},"29":{"tf":1.7320508075688772},"56":{"tf":2.23606797749979}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"108":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"108":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":6,"docs":{"134":{"tf":1.0},"182":{"tf":1.0},"210":{"tf":1.0},"227":{"tf":1.0},"250":{"tf":1.0},"77":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"183":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"266":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"181":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":15,"docs":{"115":{"tf":1.4142135623730951},"131":{"tf":2.0},"139":{"tf":3.3166247903554},"199":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.4142135623730951},"248":{"tf":2.0},"249":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"131":{"tf":1.0}}}},"z":{"df":1,"docs":{"228":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"131":{"tf":1.0},"200":{"tf":1.0},"66":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"14":{"tf":1.0},"17":{"tf":1.4142135623730951}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":4,"docs":{"142":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"57":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"213":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"107":{"tf":1.0},"115":{"tf":1.0},"144":{"tf":2.0},"152":{"tf":1.0},"156":{"tf":1.0},"223":{"tf":1.0},"255":{"tf":1.0},"3":{"tf":1.0},"47":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"128":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":4,"docs":{"129":{"tf":1.0},"139":{"tf":1.0},"210":{"tf":1.0},"247":{"tf":1.0}}}},"df":159,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"102":{"tf":2.8284271247461903},"103":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"106":{"tf":2.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"11":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":2.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":2.23606797749979},"126":{"tf":2.449489742783178},"127":{"tf":1.7320508075688772},"128":{"tf":1.0},"129":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"133":{"tf":2.449489742783178},"134":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"137":{"tf":2.23606797749979},"139":{"tf":3.1622776601683795},"14":{"tf":1.7320508075688772},"141":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":2.0},"147":{"tf":2.0},"148":{"tf":2.23606797749979},"149":{"tf":1.7320508075688772},"15":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":2.0},"155":{"tf":1.0},"156":{"tf":2.449489742783178},"157":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.7320508075688772},"169":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":2.0},"176":{"tf":2.23606797749979},"179":{"tf":1.0},"18":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":2.0},"19":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":1.7320508075688772},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":3.3166247903554},"214":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"226":{"tf":1.7320508075688772},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"230":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":3.1622776601683795},"249":{"tf":2.8284271247461903},"25":{"tf":1.0},"250":{"tf":2.6457513110645907},"251":{"tf":3.4641016151377544},"252":{"tf":1.0},"253":{"tf":2.449489742783178},"254":{"tf":1.7320508075688772},"255":{"tf":2.8284271247461903},"256":{"tf":1.7320508075688772},"27":{"tf":1.0},"271":{"tf":1.0},"29":{"tf":1.7320508075688772},"32":{"tf":1.0},"34":{"tf":2.0},"36":{"tf":1.7320508075688772},"37":{"tf":2.6457513110645907},"39":{"tf":1.0},"41":{"tf":1.4142135623730951},"44":{"tf":2.0},"45":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"52":{"tf":2.23606797749979},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":2.449489742783178},"60":{"tf":2.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"72":{"tf":1.0},"73":{"tf":2.449489742783178},"75":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"94":{"tf":2.23606797749979},"95":{"tf":1.0},"96":{"tf":2.0},"97":{"tf":2.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"(":{"a":{"df":1,"docs":{"204":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":3,"docs":{"176":{"tf":1.0},"195":{"tf":1.0},"57":{"tf":2.23606797749979}},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"107":{"tf":2.23606797749979},"108":{"tf":1.0},"57":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"107":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"z":{"df":9,"docs":{"131":{"tf":1.0},"139":{"tf":1.4142135623730951},"176":{"tf":1.0},"190":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"52":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.23606797749979},"89":{"tf":1.4142135623730951}},"e":{">":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"139":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"126":{"tf":1.0},"251":{"tf":1.0},"4":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"f":{"8":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"114":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772}},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"(":{"df":2,"docs":{"114":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"114":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}}},"df":5,"docs":{"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":2.23606797749979},"45":{"tf":1.0},"48":{"tf":1.7320508075688772}}}},"{":{"2":{"1":{"1":{"d":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"191":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"3":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"121":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"218":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"1":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"_":{"_":{".":{"_":{"_":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"223":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"118":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"3":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"223":{"tf":1.0}}}}}},"df":1,"docs":{"223":{"tf":1.4142135623730951}}}}}}},"df":8,"docs":{"118":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"128":{"tf":2.0},"216":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.7320508075688772},"224":{"tf":1.0}}},"2":{".":{"_":{"_":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"118":{"tf":1.4142135623730951},"119":{"tf":2.0},"128":{"tf":1.0},"216":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0}}},"3":{"df":1,"docs":{"119":{"tf":1.4142135623730951}}},"4":{"(":{"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":1,"docs":{"123":{"tf":1.4142135623730951}}}}}}}}},"df":2,"docs":{"119":{"tf":1.0},"123":{"tf":1.0}}},"6":{"(":{"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":1,"docs":{"123":{"tf":1.4142135623730951}}}}}}}}},"df":1,"docs":{"123":{"tf":1.0}}},"[":{"0":{".":{".":{"3":{"df":1,"docs":{"121":{"tf":1.0}}},"4":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":1,"docs":{"120":{"tf":1.0}}}},"a":{"df":0,"docs":{},"l":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"210":{"tf":1.4142135623730951},"251":{"tf":1.0},"85":{"tf":2.8284271247461903}},"i":{"d":{"df":9,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"15":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"227":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":48,"docs":{"122":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":2.449489742783178},"128":{"tf":2.0},"131":{"tf":2.6457513110645907},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"145":{"tf":1.4142135623730951},"15":{"tf":2.0},"165":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"211":{"tf":1.0},"213":{"tf":3.4641016151377544},"216":{"tf":1.4142135623730951},"220":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"251":{"tf":2.0},"252":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.4142135623730951},"34":{"tf":2.0},"37":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":2.6457513110645907},"75":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":2.0}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"216":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{".":{"_":{"_":{"df":1,"docs":{"220":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"_":{"_":{"df":1,"docs":{"220":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"_":{"a":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":27,"docs":{"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"143":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"176":{"tf":1.0},"18":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"213":{"tf":2.6457513110645907},"215":{"tf":1.0},"22":{"tf":1.7320508075688772},"243":{"tf":1.0},"248":{"tf":2.6457513110645907},"250":{"tf":2.23606797749979},"251":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":2.0},"45":{"tf":1.0},"59":{"tf":2.0},"64":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":1.0},"89":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"145":{"tf":1.0},"227":{"tf":1.0},"249":{"tf":1.0},"60":{"tf":2.0},"69":{"tf":1.4142135623730951},"77":{"tf":1.0}}}},"t":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"255":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"176":{"tf":1.0},"247":{"tf":1.0}}}}}}},"df":22,"docs":{"114":{"tf":1.0},"118":{"tf":2.0},"120":{"tf":1.0},"121":{"tf":1.7320508075688772},"123":{"tf":2.0},"125":{"tf":1.0},"131":{"tf":1.0},"142":{"tf":1.4142135623730951},"183":{"tf":2.0},"188":{"tf":2.23606797749979},"191":{"tf":1.0},"204":{"tf":1.7320508075688772},"216":{"tf":1.7320508075688772},"218":{"tf":2.0},"22":{"tf":1.4142135623730951},"246":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"56":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":2.0},"97":{"tf":2.449489742783178}},"e":{"c":{"!":{"(":{"1":{"df":1,"docs":{"118":{"tf":1.0}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"118":{"tf":1.0}}}}},"df":0,"docs":{}},"[":{"\"":{"b":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"0":{"df":2,"docs":{"119":{"tf":1.0},"220":{"tf":1.4142135623730951}}},"1":{"0":{"4":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":11,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"142":{"tf":1.0},"191":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.7320508075688772},"224":{"tf":1.0}}},"2":{"df":2,"docs":{"120":{"tf":1.0},"224":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{",":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"b":{"a":{"df":0,"docs":{},"r":{",":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"1":{"1":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},":":{":":{"_":{"_":{"(":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"[":{"1":{"df":2,"docs":{"118":{"tf":1.0},"120":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"118":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"118":{"tf":1.4142135623730951},"218":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"122":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"1":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"_":{"_":{"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":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"[":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{},"i":{"3":{"2":{"df":5,"docs":{"119":{"tf":1.4142135623730951},"121":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"224":{"tf":1.4142135623730951}}}}},"t":{"df":3,"docs":{"109":{"tf":1.4142135623730951},"113":{"tf":1.0},"126":{"tf":1.0}}},"u":{"8":{"df":3,"docs":{"113":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"4":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"121":{"tf":1.0}}}}}},"df":10,"docs":{"118":{"tf":1.7320508075688772},"119":{"tf":2.449489742783178},"121":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"183":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"36":{"tf":1.0},"45":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":10,"docs":{"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"119":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":3.1622776601683795},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"127":{"tf":1.0},"45":{"tf":1.0}},"":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"r":{"b":{"=":{"\"":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"176":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"176":{"tf":1.0}},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"143":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":12,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"139":{"tf":1.0},"152":{"tf":1.0},"170":{"tf":1.0},"181":{"tf":1.0},"210":{"tf":1.0},"270":{"tf":1.0},"73":{"tf":1.0}},"f":{"df":1,"docs":{"226":{"tf":1.0}}}},"s":{"a":{"df":2,"docs":{"109":{"tf":1.0},"131":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"124":{"tf":1.0},"151":{"tf":1.4142135623730951},"19":{"tf":1.0},"251":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"227":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"i":{"a":{"df":10,"docs":{"210":{"tf":1.0},"227":{"tf":1.0},"246":{"tf":1.0},"251":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"60":{"tf":1.0},"75":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"109":{"tf":1.0},"131":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"113":{"tf":1.4142135623730951},"253":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"126":{"tf":3.3166247903554}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"12":{"tf":1.0},"144":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"t":{"df":15,"docs":{"121":{"tf":1.0},"143":{"tf":1.0},"154":{"tf":1.0},"158":{"tf":1.0},"169":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"48":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"14":{"tf":1.0},"17":{"tf":1.4142135623730951},"253":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"107":{"tf":1.0}}}},"y":{"df":34,"docs":{"106":{"tf":1.0},"113":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.4142135623730951},"137":{"tf":1.0},"139":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"182":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.7320508075688772},"211":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"224":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.0},"248":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"df":3,"docs":{"109":{"tf":1.4142135623730951},"204":{"tf":2.0},"226":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"235":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"i":{"b":{"df":0,"docs":{},"o":{"df":1,"docs":{"95":{"tf":2.6457513110645907}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"124":{"tf":1.0},"195":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":4,"docs":{"151":{"tf":1.0},"152":{"tf":1.0},"204":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"122":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"153":{"tf":1.0},"73":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"176":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":9,"docs":{"143":{"tf":1.0},"151":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"183":{"tf":1.0},"256":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"152":{"tf":1.0},"174":{"tf":1.0}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"h":{"=":{"6":{"df":2,"docs":{"176":{"tf":1.4142135623730951},"187":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"176":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"58":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"131":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"109":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.7320508075688772},"220":{"tf":1.0},"37":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":17,"docs":{"0":{"tf":1.0},"114":{"tf":1.0},"122":{"tf":1.4142135623730951},"144":{"tf":1.0},"147":{"tf":1.0},"176":{"tf":1.0},"199":{"tf":1.0},"211":{"tf":1.0},"248":{"tf":1.0},"271":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"95":{"tf":1.0}}}}}}},"z":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"141":{"tf":1.0},"176":{"tf":1.0},"249":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"214":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"d":{"df":3,"docs":{"145":{"tf":1.0},"195":{"tf":1.0},"52":{"tf":2.0}}},"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}},"d":{"df":1,"docs":{"226":{"tf":1.0}}},"df":72,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"157":{"tf":1.0},"163":{"tf":1.0},"176":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":2.0},"196":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":2.23606797749979},"220":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"230":{"tf":2.0},"24":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"251":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.4142135623730951},"78":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"89":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"l":{"d":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":23,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":2.23606797749979},"149":{"tf":1.0},"15":{"tf":1.0},"162":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"188":{"tf":1.0},"198":{"tf":1.0},"36":{"tf":2.0},"37":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"46":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":4,"docs":{"142":{"tf":1.0},"254":{"tf":1.0},"60":{"tf":1.0},"88":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"!":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":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":1,"docs":{"226":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"!":{"(":{"df":0,"docs":{},"f":{"df":3,"docs":{"109":{"tf":1.0},"183":{"tf":2.0},"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"60":{"tf":1.7320508075688772},"69":{"tf":1.0}}}}}},"df":14,"docs":{"12":{"tf":1.0},"132":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"248":{"tf":2.0},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"256":{"tf":1.4142135623730951},"259":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"162":{"tf":1.0},"207":{"tf":1.0},"249":{"tf":1.4142135623730951},"251":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"249":{"tf":1.0}}}}}}},"x":{"+":{"1":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"36":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":1,"docs":{"103":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"195":{"tf":1.0},"213":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"75":{"tf":2.0}}},"2":{")":{".":{"a":{"b":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"75":{"tf":1.7320508075688772}}},"3":{"df":0,"docs":{},"f":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}},"8":{"6":{"/":{"df":0,"docs":{},"x":{"8":{"6":{"_":{"6":{"4":{"df":1,"docs":{"254":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"246":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":6,"docs":{"246":{"tf":1.4142135623730951},"250":{"tf":1.7320508075688772},"253":{"tf":1.7320508075688772},"255":{"tf":1.0},"256":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"df":49,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"106":{"tf":2.23606797749979},"119":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"14":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":2.6457513110645907},"158":{"tf":1.0},"16":{"tf":3.0},"165":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"187":{"tf":3.872983346207417},"19":{"tf":1.4142135623730951},"194":{"tf":2.23606797749979},"195":{"tf":3.605551275463989},"197":{"tf":1.7320508075688772},"202":{"tf":1.4142135623730951},"205":{"tf":2.0},"210":{"tf":1.7320508075688772},"212":{"tf":3.1622776601683795},"213":{"tf":1.7320508075688772},"215":{"tf":2.6457513110645907},"218":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"227":{"tf":2.449489742783178},"23":{"tf":1.0},"248":{"tf":2.6457513110645907},"251":{"tf":2.6457513110645907},"253":{"tf":1.7320508075688772},"31":{"tf":2.6457513110645907},"32":{"tf":2.0},"33":{"tf":1.4142135623730951},"36":{"tf":2.449489742783178},"39":{"tf":2.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"60":{"tf":2.23606797749979},"69":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":2.8284271247461903},"75":{"tf":3.3166247903554},"85":{"tf":2.0},"86":{"tf":2.0},"97":{"tf":2.23606797749979}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"x":{"df":0,"docs":{},"x":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"75":{"tf":2.0}}},"2":{")":{")":{".":{"a":{"b":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"a":{"b":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"75":{"tf":1.4142135623730951}}},":":{"3":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"142":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}}}}}}}}},"df":35,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"106":{"tf":2.23606797749979},"136":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"14":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":2.23606797749979},"158":{"tf":1.0},"16":{"tf":1.4142135623730951},"18":{"tf":1.0},"182":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"195":{"tf":4.123105625617661},"197":{"tf":1.0},"202":{"tf":1.4142135623730951},"205":{"tf":2.0},"22":{"tf":1.4142135623730951},"227":{"tf":2.449489742783178},"23":{"tf":1.0},"248":{"tf":1.4142135623730951},"31":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"33":{"tf":2.0},"36":{"tf":2.23606797749979},"39":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"60":{"tf":2.23606797749979},"69":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":3.0},"75":{"tf":3.4641016151377544},"85":{"tf":2.23606797749979},"86":{"tf":2.23606797749979},"97":{"tf":2.6457513110645907}},"e":{"a":{"df":0,"docs":{},"h":{"df":2,"docs":{"139":{"tf":1.0},"182":{"tf":1.0}}},"r":{"df":2,"docs":{"181":{"tf":1.0},"226":{"tf":2.23606797749979}},"s":{"(":{"5":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{},"i":{"6":{"4":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"0":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"4":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"p":{"df":1,"docs":{"152":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"162":{"tf":1.0},"168":{"tf":1.0}}}}}}},"":{"df":0,"docs":{},"r":{"df":3,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"96":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":3,"docs":{"154":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0}}}}}}},"z":{"df":7,"docs":{"158":{"tf":1.0},"195":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"31":{"tf":1.7320508075688772},"54":{"tf":1.0},"70":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":7,"docs":{"169":{"tf":2.0},"176":{"tf":1.0},"187":{"tf":1.0},"203":{"tf":1.0},"60":{"tf":2.0},"62":{"tf":1.0},"88":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"256":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"z":{"df":0,"docs":{},"z":{"df":0,"docs":{},"z":{"df":1,"docs":{"213":{"tf":1.0}}}}}}}}},"breadcrumbs":{"root":{"0":{".":{".":{"1":{"0":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":2,"docs":{"115":{"tf":1.0},"53":{"tf":1.0}}},"5":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}},"=":{"1":{"0":{"0":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}},"1":{"_":{"df":0,"docs":{},"f":{"6":{"4":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"60":{"tf":1.0},"75":{"tf":1.7320508075688772}}},"1":{".":{"0":{"df":1,"docs":{"151":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"2":{"3":{"4":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"1":{"df":1,"docs":{"169":{"tf":1.0}}},"5":{"df":1,"docs":{"169":{"tf":1.0}}},"df":1,"docs":{"96":{"tf":1.0}}},"7":{"7":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"1":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"1":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"b":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"187":{"tf":1.4142135623730951}}},":":{"df":0,"docs":{},"h":{"df":1,"docs":{"253":{"tf":1.0}}},"l":{"df":1,"docs":{"253":{"tf":1.0}}}},"_":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}}},"b":{"0":{"0":{"0":{"1":{"1":{"0":{"1":{"1":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"df":0,"docs":{},"u":{"3":{"2":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"1":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"0":{"1":{"1":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"_":{"1":{"1":{"1":{"1":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":38,"docs":{"106":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.4142135623730951},"136":{"tf":2.449489742783178},"139":{"tf":2.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"169":{"tf":4.898979485566356},"176":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"185":{"tf":1.0},"189":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"218":{"tf":1.0},"221":{"tf":1.4142135623730951},"24":{"tf":1.0},"248":{"tf":2.0},"249":{"tf":1.7320508075688772},"251":{"tf":2.23606797749979},"255":{"tf":2.8284271247461903},"256":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}},"i":{"3":{"2":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"3":{"3":{"6":{"5":{"3":{"3":{"3":{"7":{"3":{"5":{"7":{"df":1,"docs":{"189":{"tf":1.0}}},"df":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":{"189":{"tf":1.0}}},"df":0,"docs":{}},"7":{"7":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"3":{"2":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"1":{"2":{"3":{"4":{"5":{"6":{"7":{"8":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"139":{"tf":1.0}}},"6":{"df":0,"docs":{},"f":{"a":{"3":{"a":{"c":{"8":{"4":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":1,"docs":{"189":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"4":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"5":{"6":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"6":{"0":{"0":{"0":{"0":{"2":{"3":{"2":{"4":{"0":{"5":{"0":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"250":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"7":{"8":{"5":{"6":{"3":{"4":{"1":{"2":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"df":0,"docs":{},"u":{"3":{"2":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"b":{"a":{"b":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}},"d":{"1":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"22":{"tf":1.0}}}},"{":{":":{"df":0,"docs":{},"x":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}}},"1":{".":{".":{"=":{"1":{"0":{"0":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":5,"docs":{"176":{"tf":1.0},"60":{"tf":1.0},"75":{"tf":1.4142135623730951},"85":{"tf":1.0},"89":{"tf":1.0}}},"1":{"df":0,"docs":{},"f":{"6":{"4":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"3":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"4":{"5":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"5":{"8":{"df":1,"docs":{"176":{"tf":1.0}}},"9":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"\"":{".":{"_":{"_":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"1":{"df":1,"docs":{"82":{"tf":1.0}}},"2":{"df":1,"docs":{"82":{"tf":1.0}}},"3":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"_":{"df":0,"docs":{},"f":{"3":{"2":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{":":{":":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"131":{"tf":1.4142135623730951}}},"1":{"_":{"df":0,"docs":{},"f":{"3":{"2":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"131":{"tf":1.4142135623730951}}},"df":6,"docs":{"125":{"tf":1.0},"127":{"tf":1.4142135623730951},"218":{"tf":1.0},"51":{"tf":1.4142135623730951},"63":{"tf":1.0},"88":{"tf":1.0}}},"1":{"0":{"1":{"0":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"114":{"tf":1.0}}},"2":{"4":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"114":{"tf":1.4142135623730951}}},"]":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":22,"docs":{"105":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":2.0},"125":{"tf":1.0},"128":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"189":{"tf":1.0},"205":{"tf":1.4142135623730951},"218":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"224":{"tf":2.23606797749979},"255":{"tf":1.4142135623730951},"54":{"tf":1.0},"62":{"tf":1.7320508075688772},"64":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"1":{"1":{"df":1,"docs":{"114":{"tf":1.0}}},"5":{"df":1,"docs":{"139":{"tf":1.7320508075688772}}},"6":{"df":1,"docs":{"139":{"tf":1.7320508075688772}}},"7":{"df":1,"docs":{"139":{"tf":1.7320508075688772}}},"df":5,"docs":{"122":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"255":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.4142135623730951}}},"2":{"2":{"df":1,"docs":{"24":{"tf":1.0}}},"3":{"df":1,"docs":{"228":{"tf":1.0}}},"7":{"df":1,"docs":{"56":{"tf":1.0}}},"8":{"df":2,"docs":{"250":{"tf":1.4142135623730951},"73":{"tf":1.0}}},">":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"126":{"tf":1.0},"146":{"tf":1.0},"16":{"tf":1.4142135623730951},"181":{"tf":1.0},"195":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"3":{"df":4,"docs":{"131":{"tf":1.7320508075688772},"209":{"tf":1.0},"224":{"tf":1.0},"54":{"tf":1.0}}},"5":{"0":{"0":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"131":{"tf":1.0}}},"7":{"9":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"195":{"tf":1.0},"64":{"tf":1.0}}},"6":{"df":1,"docs":{"73":{"tf":1.0}}},"8":{"df":7,"docs":{"181":{"tf":1.4142135623730951},"195":{"tf":1.0},"199":{"tf":1.0},"224":{"tf":1.4142135623730951},"226":{"tf":1.0},"57":{"tf":1.4142135623730951},"67":{"tf":1.0}}},"9":{"1":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{".":{"0":{"0":{"0":{"_":{"1":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"8":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}},"b":{"df":1,"docs":{"189":{"tf":1.0}}},"df":69,"docs":{"106":{"tf":1.4142135623730951},"112":{"tf":1.0},"114":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.4142135623730951},"124":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"153":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"17":{"tf":1.4142135623730951},"176":{"tf":2.8284271247461903},"178":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.4142135623730951},"185":{"tf":2.23606797749979},"186":{"tf":1.4142135623730951},"187":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"202":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":2.449489742783178},"211":{"tf":1.0},"212":{"tf":2.0},"215":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.4142135623730951},"228":{"tf":1.0},"230":{"tf":1.0},"24":{"tf":1.4142135623730951},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"25":{"tf":1.0},"251":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"4":{"tf":1.4142135623730951},"49":{"tf":1.0},"51":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"54":{"tf":2.8284271247461903},"57":{"tf":1.0},"60":{"tf":2.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772}},"e":{"9":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"i":{"3":{"2":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"252":{"tf":1.0}}}},"u":{"3":{"2":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"2":{".":{"0":{"df":5,"docs":{"123":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"75":{"tf":1.0},"89":{"tf":1.0}}},"5":{"4":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"1":{"5":{"df":1,"docs":{"207":{"tf":1.0}}},"8":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"60":{"tf":1.0}}}}}}}}}}}},"df":2,"docs":{"207":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{"df":2,"docs":{"151":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{}},"4":{"8":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":4,"docs":{"169":{"tf":1.0},"66":{"tf":1.4142135623730951},"73":{"tf":1.0},"88":{"tf":1.0}}},"1":{"1":{"2":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"186":{"tf":1.0},"48":{"tf":1.0}}},"2":{"1":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":1,"docs":{"126":{"tf":1.0}}},"5":{"1":{"_":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"5":{"df":2,"docs":{"131":{"tf":1.4142135623730951},"56":{"tf":1.0}}},"6":{"df":3,"docs":{"131":{"tf":1.4142135623730951},"134":{"tf":1.0},"73":{"tf":1.0}}},"df":2,"docs":{"115":{"tf":1.7320508075688772},"126":{"tf":1.0}}},"6":{"df":1,"docs":{"169":{"tf":1.0}}},"7":{"df":2,"docs":{"169":{"tf":1.0},"189":{"tf":2.449489742783178}}},"8":{"df":1,"docs":{"107":{"tf":1.0}}},"b":{"df":1,"docs":{"255":{"tf":1.0}}},"df":65,"docs":{"106":{"tf":1.0},"112":{"tf":1.0},"118":{"tf":2.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"153":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.4142135623730951},"176":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.7320508075688772},"183":{"tf":1.7320508075688772},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"19":{"tf":1.0},"191":{"tf":1.0},"202":{"tf":1.0},"205":{"tf":1.0},"213":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"224":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"24":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":2.23606797749979},"251":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":2.0},"29":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"36":{"tf":1.0},"5":{"tf":1.4142135623730951},"51":{"tf":1.7320508075688772},"52":{"tf":2.0},"54":{"tf":1.7320508075688772},"58":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"66":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.7320508075688772},"78":{"tf":1.0},"89":{"tf":1.7320508075688772},"97":{"tf":1.0}},"f":{"df":1,"docs":{"255":{"tf":1.0}}},"i":{"3":{"2":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"d":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"u":{"1":{"6":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{".":{".":{"2":{"df":1,"docs":{"24":{"tf":1.0}}},"=":{"7":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":3,"docs":{"25":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0}}},"1":{"4":{"1":{"5":{"9":{"2":{"6":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"188":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"df":2,"docs":{"20":{"tf":1.0},"25":{"tf":1.0}}},"3":{"df":2,"docs":{"182":{"tf":1.7320508075688772},"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{".":{"0":{"_":{"df":0,"docs":{},"f":{"3":{"2":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{":":{":":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"133":{"tf":1.4142135623730951},"226":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0}}},"1":{"df":1,"docs":{"176":{"tf":1.7320508075688772}},"i":{"6":{"4":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":4,"docs":{"251":{"tf":1.4142135623730951},"253":{"tf":1.0},"73":{"tf":1.0},"87":{"tf":1.0}}},"5":{"df":2,"docs":{"137":{"tf":1.0},"195":{"tf":1.0}}},"6":{"5":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"7":{"3":{"5":{"9":{"2":{"8":{"5":{"5":{"9":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"_":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":57,"docs":{"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"114":{"tf":1.0},"118":{"tf":2.23606797749979},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"158":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"170":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"19":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"228":{"tf":1.0},"230":{"tf":1.0},"24":{"tf":1.0},"248":{"tf":1.7320508075688772},"255":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":2.0},"33":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":2.0},"54":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"89":{"tf":1.7320508075688772},"97":{"tf":1.0}},"i":{"6":{"4":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"u":{"8":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"4":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":2,"docs":{"75":{"tf":1.0},"85":{"tf":1.0}}},"1":{"df":1,"docs":{"35":{"tf":1.0}}},"3":{"df":1,"docs":{"42":{"tf":1.0}}},"4":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":4,"docs":{"103":{"tf":1.0},"121":{"tf":1.7320508075688772},"125":{"tf":1.0},"16":{"tf":1.7320508075688772}}},"4":{"df":1,"docs":{"131":{"tf":1.0}}},"df":35,"docs":{"114":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.4142135623730951},"137":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"19":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"204":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.4142135623730951},"230":{"tf":1.0},"249":{"tf":2.23606797749979},"251":{"tf":1.7320508075688772},"253":{"tf":1.0},"256":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"36":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":2.0},"54":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.4142135623730951},"73":{"tf":1.0},"89":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"155":{"tf":1.0}}}}},"5":{"\"":{".":{"_":{"_":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{".":{"=":{"8":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"94":{"tf":1.0}}},"1":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":5,"docs":{"125":{"tf":1.4142135623730951},"127":{"tf":1.0},"25":{"tf":1.0},"58":{"tf":1.0},"77":{"tf":1.0}}},"1":{"2":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"125":{"tf":1.0}}},"df":36,"docs":{"114":{"tf":1.0},"120":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"163":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.4142135623730951},"187":{"tf":3.872983346207417},"194":{"tf":1.4142135623730951},"200":{"tf":1.0},"204":{"tf":1.0},"215":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"221":{"tf":1.0},"227":{"tf":1.4142135623730951},"230":{"tf":2.0},"24":{"tf":1.4142135623730951},"248":{"tf":2.8284271247461903},"25":{"tf":1.7320508075688772},"255":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.7320508075688772},"73":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772}},"i":{"3":{"2":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"134":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"3":{"2":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}},"6":{".":{".":{"=":{"1":{"0":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"42":{"tf":1.0}}},"4":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{".":{"3":{"4":{"df":1,"docs":{"190":{"tf":1.0}}},"df":1,"docs":{"190":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"142":{"tf":1.0}}},"4":{"df":7,"docs":{"246":{"tf":1.4142135623730951},"250":{"tf":2.0},"251":{"tf":1.7320508075688772},"253":{"tf":1.4142135623730951},"256":{"tf":1.0},"52":{"tf":1.4142135623730951},"73":{"tf":1.0}}},"5":{"5":{"3":{"5":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"65":{"tf":2.0}}},"9":{".":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"120":{"tf":1.0},"147":{"tf":1.0},"176":{"tf":1.0},"188":{"tf":1.0},"251":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"73":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"7":{".":{"2":{"df":1,"docs":{"182":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"6":{"7":{"df":1,"docs":{"89":{"tf":1.0}}},"8":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":11,"docs":{"10":{"tf":1.4142135623730951},"114":{"tf":1.0},"150":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.0},"181":{"tf":1.4142135623730951},"188":{"tf":1.0},"195":{"tf":1.0},"202":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.0}}},"8":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},".":{"2":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"139":{"tf":1.7320508075688772}}},"df":18,"docs":{"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":2.449489742783178},"131":{"tf":1.0},"145":{"tf":1.0},"189":{"tf":1.0},"22":{"tf":1.0},"248":{"tf":1.7320508075688772},"249":{"tf":1.0},"251":{"tf":1.0},"256":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.7320508075688772},"52":{"tf":1.7320508075688772},"54":{"tf":1.0},"73":{"tf":1.0}},"i":{"3":{"2":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"134":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"8":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}},"9":{".":{".":{"=":{"1":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"2":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"125":{"tf":1.0}}},"6":{"df":2,"docs":{"142":{"tf":1.0},"143":{"tf":1.0}}},"7":{".":{"1":{"2":{"3":{"_":{"df":0,"docs":{},"f":{"3":{"2":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"24":{"tf":1.0}}},"8":{"df":3,"docs":{"125":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951}}},"9":{".":{"1":{"2":{"df":1,"docs":{"190":{"tf":1.0}}},"df":1,"docs":{"190":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"143":{"tf":1.4142135623730951}}},"df":6,"docs":{"12":{"tf":1.4142135623730951},"190":{"tf":1.0},"195":{"tf":1.4142135623730951},"199":{"tf":1.0},"54":{"tf":1.0},"70":{"tf":1.0}}},"_":{"_":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"179":{"tf":1.0}}}}}}},"i":{"df":1,"docs":{"179":{"tf":1.0}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"3":{"0":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"153":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}}}}},":":{":":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"153":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"153":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},">":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"213":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"]":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"_":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":61,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"106":{"tf":1.0},"113":{"tf":2.0},"114":{"tf":1.4142135623730951},"122":{"tf":2.23606797749979},"123":{"tf":1.4142135623730951},"125":{"tf":2.449489742783178},"131":{"tf":3.1622776601683795},"133":{"tf":1.0},"134":{"tf":1.7320508075688772},"137":{"tf":1.0},"14":{"tf":1.7320508075688772},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"148":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":2.8284271247461903},"181":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":2.449489742783178},"188":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"199":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.7320508075688772},"22":{"tf":1.7320508075688772},"220":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"25":{"tf":2.6457513110645907},"34":{"tf":1.0},"37":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"45":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"54":{"tf":2.23606797749979},"56":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"58":{"tf":1.0},"60":{"tf":2.449489742783178},"62":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"66":{"tf":2.0},"69":{"tf":2.449489742783178},"71":{"tf":1.0},"73":{"tf":2.23606797749979},"89":{"tf":1.4142135623730951},"97":{"tf":2.0},"99":{"tf":1.0}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}}},"c":{"1":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"3":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"211":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":18,"docs":{"105":{"tf":1.4142135623730951},"115":{"tf":1.0},"129":{"tf":1.0},"142":{"tf":1.0},"195":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"230":{"tf":1.0},"251":{"tf":2.23606797749979},"34":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.4142135623730951},"69":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.4142135623730951}},"f":{"df":1,"docs":{"28":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"51":{"tf":1.0}}},"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"93":{"tf":2.449489742783178}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"211":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}},"h":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}},"s":{"df":2,"docs":{"36":{"tf":1.0},"37":{"tf":1.4142135623730951}}},"t":{"0":{"df":1,"docs":{"54":{"tf":1.0}}},"1":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"df":2,"docs":{"29":{"tf":1.0},"34":{"tf":1.0}}},"x":{"df":1,"docs":{"195":{"tf":2.0}}}},"a":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"'":{".":{".":{"=":{"'":{"df":0,"docs":{},"z":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{".":{"b":{"df":2,"docs":{"218":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"_":{"_":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"a":{"d":{"d":{"(":{"b":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},">":{"(":{"&":{"'":{"a":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"6":{"4":{"df":1,"docs":{"246":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"188":{"tf":1.0}}}}}},"df":2,"docs":{"186":{"tf":1.0},"188":{"tf":1.0}}},"df":2,"docs":{"70":{"tf":1.0},"75":{"tf":1.0}},"i":{"df":1,"docs":{"252":{"tf":2.23606797749979}},"l":{"df":1,"docs":{"204":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":2.23606797749979}}}},"v":{"df":14,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"142":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.0},"176":{"tf":1.4142135623730951},"194":{"tf":1.0},"218":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0},"94":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"195":{"tf":1.0},"250":{"tf":1.0},"95":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"114":{"tf":1.0},"121":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.4142135623730951},"199":{"tf":1.0},"246":{"tf":1.0},"256":{"tf":1.0},"49":{"tf":1.0},"75":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"r":{"d":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"252":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"168":{"tf":1.0},"169":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"248":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"224":{"tf":1.0}}}},"v":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"122":{"tf":1.0},"125":{"tf":1.0},"132":{"tf":1.0},"162":{"tf":1.0},"218":{"tf":1.0},"248":{"tf":1.4142135623730951},"256":{"tf":1.0},"48":{"tf":1.0},"77":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"223":{"tf":1.7320508075688772},"224":{"tf":2.23606797749979}}}}}}},"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"226":{"tf":1.0},"94":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"103":{"tf":1.0},"112":{"tf":1.0}}}}}}}},"<":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"165":{"tf":1.0},"169":{"tf":1.7320508075688772}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"165":{"tf":1.0}}}},"<":{"'":{"a":{">":{"(":{"&":{"'":{"a":{"df":2,"docs":{"196":{"tf":1.0},"197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"212":{"tf":1.0}}},"2":{"df":1,"docs":{"212":{"tf":1.0}}},"3":{"df":1,"docs":{"212":{"tf":1.0}}},"4":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}}},"o":{"_":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.7320508075688772},"154":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"167":{"tf":1.0}}}},"df":2,"docs":{"167":{"tf":1.0},"169":{"tf":1.7320508075688772}}}}}},"df":26,"docs":{"131":{"tf":1.4142135623730951},"152":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"165":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"170":{"tf":1.7320508075688772},"176":{"tf":1.0},"183":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"41":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"57":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"t":{"df":4,"docs":{"202":{"tf":1.0},"25":{"tf":1.0},"73":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"105":{"tf":1.4142135623730951},"131":{"tf":1.0},"191":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.7320508075688772},"256":{"tf":1.0},"39":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"254":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":15,"docs":{"115":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"144":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":1.0},"248":{"tf":1.0},"255":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"256":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":19,"docs":{"104":{"tf":1.7320508075688772},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"139":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"201":{"tf":1.7320508075688772},"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}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"37":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"148":{"tf":1.0},"162":{"tf":1.0},"211":{"tf":1.0},"53":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.4142135623730951}}}}}}},"df":10,"docs":{"107":{"tf":2.23606797749979},"181":{"tf":1.7320508075688772},"197":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.7320508075688772},"37":{"tf":2.6457513110645907},"56":{"tf":1.7320508075688772},"57":{"tf":2.449489742783178},"59":{"tf":2.6457513110645907},"72":{"tf":2.449489742783178}},"e":{".":{"0":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"226":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"226":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},">":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"107":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}},"h":{"df":1,"docs":{"253":{"tf":1.0}}},"l":{"df":1,"docs":{"253":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":2,"docs":{"124":{"tf":2.23606797749979},"2":{"tf":1.0}}}}}}}}},"i":{"a":{"df":3,"docs":{"148":{"tf":2.449489742783178},"227":{"tf":2.23606797749979},"77":{"tf":1.0}},"s":{"df":2,"docs":{"148":{"tf":1.0},"227":{"tf":1.0}}}},"c":{"df":2,"docs":{"176":{"tf":1.0},"185":{"tf":1.7320508075688772}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"176":{"tf":1.0},"187":{"tf":2.449489742783178}}}},"v":{"df":1,"docs":{"199":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":10,"docs":{"113":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"122":{"tf":1.0},"249":{"tf":2.0},"251":{"tf":1.0},"253":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"51":{"tf":1.0},"60":{"tf":1.4142135623730951},"75":{"tf":1.0}}},"df":0,"docs":{},"w":{"(":{"d":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"176":{"tf":1.0},"195":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":18,"docs":{"114":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"148":{"tf":1.0},"176":{"tf":1.0},"197":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"248":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.7320508075688772},"48":{"tf":1.0},"57":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"73":{"tf":1.0},"9":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"125":{"tf":1.4142135623730951},"132":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"139":{"tf":1.0},"144":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"2":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":9,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"200":{"tf":1.0},"253":{"tf":1.0},"3":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"255":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"122":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"211":{"tf":1.0},"99":{"tf":1.0}}}}}}},"n":{"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"255":{"tf":1.0}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":2.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"df":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":{"91":{"tf":1.7320508075688772},"96":{"tf":2.6457513110645907}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":10,"docs":{"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"195":{"tf":3.0},"196":{"tf":1.7320508075688772},"197":{"tf":1.0},"202":{"tf":1.0},"213":{"tf":1.7320508075688772},"66":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"202":{"tf":1.4142135623730951}},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"&":{"'":{"a":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"210":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":15,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"132":{"tf":1.0},"139":{"tf":1.4142135623730951},"162":{"tf":1.0},"170":{"tf":1.0},"182":{"tf":1.0},"199":{"tf":1.0},"224":{"tf":1.0},"248":{"tf":1.0},"33":{"tf":1.0},"45":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"98":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"113":{"tf":1.0},"129":{"tf":1.4142135623730951},"132":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"165":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"3":{"tf":1.0},"4":{"tf":1.0},"94":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"137":{"tf":1.0},"173":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"182":{"tf":1.0},"250":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"177":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"213":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0}}},"y":{"(":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"213":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"f":{">":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"3":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"f":{">":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"`":{"'":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"125":{"tf":1.0},"215":{"tf":1.0},"36":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"122":{"tf":1.0},"210":{"tf":1.0},"248":{"tf":1.0}}}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"247":{"tf":1.0},"248":{"tf":1.0},"255":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{"df":1,"docs":{"233":{"tf":1.7320508075688772}},"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":4,"docs":{"246":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"254":{"tf":1.0},"52":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"75":{"tf":1.0},"79":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"75":{"tf":1.0},"77":{"tf":1.7320508075688772}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"g":{"df":5,"docs":{"165":{"tf":1.0},"167":{"tf":1.0},"216":{"tf":1.0},"252":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":21,"docs":{"121":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":2.449489742783178},"185":{"tf":1.4142135623730951},"186":{"tf":2.23606797749979},"195":{"tf":1.0},"199":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.4142135623730951},"247":{"tf":1.0},"248":{"tf":2.449489742783178},"249":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.7320508075688772},"256":{"tf":1.0},"54":{"tf":1.0},"75":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"168":{"tf":1.0}}}}}}}},"m":{"df":3,"docs":{"107":{"tf":1.4142135623730951},"246":{"tf":1.0},"73":{"tf":2.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"109":{"tf":1.0},"226":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":2.0}}},"df":0,"docs":{}}}},"r":{".":{"_":{"_":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"51":{"tf":1.0}}},"[":{".":{".":{"2":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{".":{"2":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"51":{"tf":1.0}}},"<":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":13,"docs":{"100":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"251":{"tf":1.0},"48":{"tf":1.7320508075688772},"51":{"tf":3.4641016151377544},"52":{"tf":2.0},"87":{"tf":2.23606797749979},"88":{"tf":1.0},"89":{"tf":2.0},"98":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":9,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"131":{"tf":1.4142135623730951},"218":{"tf":1.0},"220":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"51":{"tf":2.0},"52":{"tf":1.7320508075688772},"89":{"tf":1.7320508075688772}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"251":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"m":{"!":{"(":{"\"":{"a":{"d":{"d":{"df":2,"docs":{"248":{"tf":1.4142135623730951},"249":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"c":{"df":0,"docs":{},"w":{"df":1,"docs":{"254":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"248":{"tf":1.0},"253":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"247":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"250":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"246":{"tf":1.0},"247":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":3.3166247903554},"252":{"tf":1.7320508075688772},"253":{"tf":1.0},"255":{"tf":2.0},"256":{"tf":2.8284271247461903}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.0},"2":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"<":{"[":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":11,"docs":{"246":{"tf":2.8284271247461903},"247":{"tf":1.4142135623730951},"248":{"tf":3.0},"249":{"tf":2.0},"250":{"tf":1.4142135623730951},"251":{"tf":2.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.7320508075688772},"255":{"tf":2.449489742783178},"256":{"tf":2.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"!":{"(":{"!":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"0":{".":{"1":{"+":{"0":{".":{"2":{"=":{"=":{"0":{".":{"3":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"3":{"2":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}}},"2":{"4":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"3":{"df":1,"docs":{"25":{"tf":1.0}}},"9":{".":{"6":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"_":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"51":{"tf":1.0}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"!":{"(":{"\"":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{"0":{">":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"187":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"[":{"0":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"p":{".":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"127":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"(":{"&":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"24":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}}},"v":{"df":2,"docs":{"22":{"tf":1.0},"32":{"tf":1.0}},"e":{"c":{".":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"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":{}}},"x":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"!":{"(":{"\"":{"a":{"b":{"c":{"\"":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"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":{}}}}},"u":{"3":{"2":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"(":{"1":{".":{".":{"_":{"_":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"*":{"b":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"df":0,"docs":{}}},"r":{"1":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"x":{"df":1,"docs":{"36":{"tf":1.0}}}},"1":{"0":{"0":{"0":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}},"2":{".":{"4":{"6":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"0":{".":{"1":{"_":{"df":0,"docs":{},"f":{"3":{"2":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"84":{"tf":1.0}}},"df":2,"docs":{"39":{"tf":1.0},"84":{"tf":1.0}}},"6":{"df":3,"docs":{"163":{"tf":1.0},"165":{"tf":1.0},"94":{"tf":1.0}}},"7":{"df":1,"docs":{"167":{"tf":1.0}}},"[":{"df":0,"docs":{},"x":{",":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"_":{",":{"\"":{"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"155":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"107":{"tf":1.7320508075688772},"155":{"tf":1.0},"56":{"tf":1.0}}},"df":1,"docs":{"230":{"tf":1.0}}},"a":{"d":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"(":{"\"":{"4":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"249":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0}},"g":{"df":1,"docs":{"72":{"tf":1.0}}}},"b":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}}}},"df":1,"docs":{"69":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"d":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"1":{"0":{"df":1,"docs":{"97":{"tf":1.0}}},"5":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"97":{"tf":1.0}}},"5":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"114":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"2":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"211":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}}}}}}}},"df":7,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"178":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"45":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"5":{"df":1,"docs":{"134":{"tf":1.0}}},"8":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"f":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"!":{"(":{"\"":{"_":{"_":{"df":2,"docs":{"188":{"tf":1.7320508075688772},"189":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"187":{"tf":2.23606797749979},"188":{"tf":1.0}}}}}}},"{":{"1":{"df":0,"docs":{},"}":{"df":0,"docs":{},"{":{"0":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}}}},":":{"?":{"df":0,"docs":{},"}":{"\"":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"186":{"tf":1.0}}}},"df":0,"docs":{}},"}":{"\"":{",":{"d":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}}}}}},"v":{"df":1,"docs":{"183":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"_":{",":{"a":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"185":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":1,"docs":{"69":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"1":{")":{",":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"2":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"h":{"1":{"df":1,"docs":{"49":{"tf":1.0}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"&":{"4":{"2":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"49":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{")":{",":{"\"":{"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"i":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"2":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"1":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}},"8":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"18":{"tf":1.0},"248":{"tf":1.0},"54":{"tf":1.7320508075688772}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"131":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":0,"docs":{},"y":{"(":{"\"":{"3":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"n":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"2":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"134":{"tf":1.0},"65":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"139":{"tf":1.4142135623730951}}}}},"o":{"df":1,"docs":{"248":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"_":{"_":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{".":{"1":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"3":{".":{"df":0,"docs":{},"i":{"df":1,"docs":{"86":{"tf":1.0}}},"x":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"[":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"199":{"tf":1.0}},"e":{"a":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"1":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"t":{"1":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"_":{"_":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"134":{"tf":1.4142135623730951},"145":{"tf":1.0},"66":{"tf":1.0}}}}}}}},"s":{".":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"45":{"tf":1.0}}},"3":{"df":1,"docs":{"45":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"(":{"&":{"c":{"1":{")":{",":{"1":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{")":{",":{"3":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"139":{"tf":1.4142135623730951},"52":{"tf":1.0}},"e":{"1":{"df":4,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.0},"53":{"tf":1.0}}},"2":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"3":{"df":2,"docs":{"113":{"tf":1.0},"121":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"(":{"&":{"*":{"b":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"131":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"(":{"1":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"137":{"tf":1.0}}}}},"t":{".":{"1":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"28":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"1":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"x":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"8":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":2,"docs":{"131":{"tf":1.0},"22":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"1":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.7320508075688772}}}}}}},"df":2,"docs":{"118":{"tf":1.0},"119":{"tf":1.4142135623730951}}},"2":{"df":5,"docs":{"119":{"tf":1.0},"128":{"tf":1.0},"216":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0}}},"4":{"df":1,"docs":{"119":{"tf":1.0}}},"[":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"1":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"220":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"[":{"1":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"118":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0}},"e":{"c":{".":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"122":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"122":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":8,"docs":{"14":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"18":{"tf":1.0},"248":{"tf":1.4142135623730951},"251":{"tf":1.0},"253":{"tf":1.0},"54":{"tf":1.7320508075688772},"56":{"tf":1.0}}},"z":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":5,"docs":{"131":{"tf":1.4142135623730951},"16":{"tf":1.0},"211":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0}}}}},"df":7,"docs":{"143":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"262":{"tf":1.7320508075688772},"29":{"tf":1.0},"52":{"tf":1.0},"89":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":10,"docs":{"19":{"tf":2.0},"210":{"tf":1.0},"22":{"tf":1.4142135623730951},"248":{"tf":1.0},"249":{"tf":1.0},"31":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":12,"docs":{"105":{"tf":2.0},"106":{"tf":1.0},"148":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":2.6457513110645907},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":2.6457513110645907},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":5,"docs":{"249":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"256":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"c":{"/":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"2":{"tf":1.0},"263":{"tf":1.7320508075688772},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"264":{"tf":1.7320508075688772},"6":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.7320508075688772}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":1.0}}},"k":{"df":1,"docs":{"124":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}},"n":{"d":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"171":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"115":{"tf":1.0},"122":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"136":{"tf":1.0},"176":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.0},"252":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"153":{"tf":1.0},"220":{"tf":1.4142135623730951},"250":{"tf":1.0},"256":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"131":{"tf":1.0},"248":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"270":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"264":{"tf":1.7320508075688772}}}},"y":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"2":{"tf":1.0}},"e":{"!":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"x":{"df":1,"docs":{"253":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"73":{"tf":1.7320508075688772}}}},"":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"\\":{"df":0,"docs":{},"u":{"df":0,"docs":{},"{":{"2":{"1":{"1":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"5":{"2":{"\\":{"df":0,"docs":{},"x":{"7":{"5":{"\\":{"df":0,"docs":{},"x":{"7":{"3":{"\\":{"df":0,"docs":{},"x":{"7":{"4":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"2":{"\\":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"6":{"\\":{"df":0,"docs":{},"x":{"8":{"2":{"\\":{"df":0,"docs":{},"x":{"a":{"8":{"\\":{"df":0,"docs":{},"x":{"8":{"2":{"\\":{"df":0,"docs":{},"x":{"b":{"1":{"\\":{"df":0,"docs":{},"x":{"8":{"2":{"\\":{"df":0,"docs":{},"x":{"b":{"b":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"1":{"df":1,"docs":{"230":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"230":{"tf":1.0}}},">":{"(":{"df":0,"docs":{},"x":{"df":3,"docs":{"195":{"tf":1.7320508075688772},"197":{"tf":1.0},"202":{"tf":1.0}}}},">":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"a":{"a":{"a":{"a":{"df":0,"docs":{},"h":{"!":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"91":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"?":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"153":{"tf":1.0},"154":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"154":{"tf":1.0},"155":{"tf":1.0}}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"154":{"tf":1.0}}},"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}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"143":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":3,"docs":{"3":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"158":{"tf":1.0}}}},":":{":":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"172":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":4,"docs":{"172":{"tf":2.0},"70":{"tf":1.0},"71":{"tf":1.0},"94":{"tf":2.6457513110645907}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"94":{"tf":2.23606797749979}}}}}},"s":{"df":0,"docs":{},"e":{"df":9,"docs":{"11":{"tf":1.0},"113":{"tf":1.4142135623730951},"153":{"tf":1.0},"176":{"tf":1.0},"204":{"tf":1.4142135623730951},"213":{"tf":1.0},"3":{"tf":1.7320508075688772},"60":{"tf":1.0},"94":{"tf":1.0}}},"i":{"c":{"df":27,"docs":{"112":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"12":{"tf":1.0},"125":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"238":{"tf":1.7320508075688772},"24":{"tf":1.0},"247":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"93":{"tf":1.0}}},"df":1,"docs":{"213":{"tf":1.0}}}},"z":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":24,"docs":{"105":{"tf":2.0},"131":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"158":{"tf":1.0},"169":{"tf":2.449489742783178},"176":{"tf":1.0},"186":{"tf":1.7320508075688772},"194":{"tf":1.4142135623730951},"195":{"tf":3.605551275463989},"197":{"tf":1.0},"199":{"tf":1.4142135623730951},"202":{"tf":2.23606797749979},"230":{"tf":2.23606797749979},"249":{"tf":2.449489742783178},"250":{"tf":1.7320508075688772},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"60":{"tf":1.0},"69":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"176":{"tf":1.0},"200":{"tf":1.0}}}}},"df":7,"docs":{"108":{"tf":1.0},"195":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"155":{"tf":1.0},"164":{"tf":1.0},"195":{"tf":1.0},"204":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"162":{"tf":1.0},"193":{"tf":1.0}},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"131":{"tf":1.0},"255":{"tf":1.0},"56":{"tf":1.7320508075688772},"60":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"57":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":38,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"115":{"tf":1.0},"118":{"tf":1.4142135623730951},"123":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.0},"194":{"tf":1.0},"202":{"tf":1.0},"255":{"tf":1.0},"36":{"tf":1.4142135623730951},"41":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.4142135623730951},"60":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"152":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"152":{"tf":1.0},"260":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"170":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"256":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"151":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"248":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}},"df":2,"docs":{"122":{"tf":1.0},"62":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"202":{"tf":1.0},"93":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"144":{"tf":1.0},"152":{"tf":2.8284271247461903},"153":{"tf":1.0},"155":{"tf":1.7320508075688772},"176":{"tf":1.0},"189":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"255":{"tf":1.0},"69":{"tf":1.7320508075688772}}}}},"d":{"df":5,"docs":{"14":{"tf":1.4142135623730951},"16":{"tf":1.0},"210":{"tf":1.0},"37":{"tf":1.0},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"r":{"d":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"100":{"tf":1.0},"99":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":2,"docs":{"100":{"tf":2.6457513110645907},"99":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"t":{"df":9,"docs":{"139":{"tf":1.4142135623730951},"2":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":2.23606797749979},"251":{"tf":2.23606797749979},"253":{"tf":1.4142135623730951},"4":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"139":{"tf":1.0},"25":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":77,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"19":{"tf":1.0},"199":{"tf":1.0},"213":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.7320508075688772},"227":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":2.0},"56":{"tf":1.4142135623730951},"57":{"tf":2.0},"58":{"tf":1.0},"60":{"tf":2.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":2.0},"77":{"tf":1.7320508075688772},"84":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}},"":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":18,"docs":{"161":{"tf":1.0},"162":{"tf":1.7320508075688772},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"227":{"tf":1.0},"247":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.7320508075688772},"255":{"tf":2.23606797749979},"256":{"tf":1.4142135623730951},"71":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":2.0},"92":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"9":{"tf":1.0}}}}},"o":{"b":{"df":2,"docs":{"176":{"tf":1.0},"185":{"tf":1.7320508075688772}}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"260":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":17,"docs":{"0":{"tf":1.0},"110":{"tf":1.0},"12":{"tf":1.0},"140":{"tf":1.0},"150":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":1.0},"209":{"tf":1.0},"228":{"tf":1.0},"3":{"tf":1.4142135623730951},"35":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.7320508075688772},"82":{"tf":1.0}}},"l":{"df":13,"docs":{"105":{"tf":1.7320508075688772},"126":{"tf":1.0},"213":{"tf":1.0},"226":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":2.0},"29":{"tf":1.0},"57":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"25":{"tf":1.0},"69":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"248":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"1":{"df":1,"docs":{"194":{"tf":2.449489742783178}}},"2":{"df":1,"docs":{"194":{"tf":2.23606797749979}}},"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"&":{"df":1,"docs":{"40":{"tf":1.0}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":2,"docs":{"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":21,"docs":{"193":{"tf":1.0},"195":{"tf":3.1622776601683795},"197":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.4142135623730951},"208":{"tf":1.0},"211":{"tf":2.0},"213":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":2.0},"39":{"tf":1.4142135623730951},"40":{"tf":2.449489742783178},"41":{"tf":1.7320508075688772},"52":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"77":{"tf":1.0}},"e":{"d":{"(":{"&":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":12,"docs":{"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"139":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":2.0},"210":{"tf":1.0},"248":{"tf":1.4142135623730951},"37":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":14,"docs":{"102":{"tf":1.0},"121":{"tf":1.0},"131":{"tf":1.7320508075688772},"143":{"tf":1.0},"16":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.4142135623730951},"202":{"tf":2.8284271247461903},"203":{"tf":2.6457513110645907},"213":{"tf":1.4142135623730951},"51":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.0},"97":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"x":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"230":{"tf":1.0}}}}}}}},"2":{"0":{"df":2,"docs":{"37":{"tf":1.0},"59":{"tf":1.0}}},"df":1,"docs":{"75":{"tf":1.0}}},"3":{"df":1,"docs":{"211":{"tf":1.4142135623730951}}},"5":{"df":2,"docs":{"230":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"v":{"4":{"(":{"\"":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"(":{"\"":{":":{":":{"1":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":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":{"227":{"tf":1.0}}}}}},"df":0,"docs":{}},"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":3,"docs":{"101":{"tf":1.7320508075688772},"103":{"tf":1.0},"227":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}},"u":{"8":{"df":2,"docs":{"37":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"230":{"tf":2.23606797749979},"44":{"tf":1.0}}}},"r":{"\"":{"\\":{"df":0,"docs":{},"u":{"df":0,"docs":{},"{":{"2":{"1":{"1":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"#":{"\"":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"109":{"tf":1.0},"247":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"156":{"tf":1.0},"255":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"176":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"166":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"115":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"'":{"_":{"df":1,"docs":{"207":{"tf":1.0}}},"a":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":1,"docs":{"255":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"6":{"4":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"x":{"df":1,"docs":{"253":{"tf":1.0}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"114":{"tf":1.0}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":13,"docs":{"113":{"tf":1.0},"114":{"tf":2.449489742783178},"115":{"tf":1.7320508075688772},"139":{"tf":1.0},"251":{"tf":1.4142135623730951},"253":{"tf":2.23606797749979},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":3.7416573867739413},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0}},"s":{"(":{"&":{"[":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}}}}},"c":{"'":{"df":1,"docs":{"139":{"tf":1.0}}},".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"216":{"tf":1.0}}},"2":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"1":{"df":2,"docs":{"131":{"tf":1.0},"27":{"tf":1.4142135623730951}}},"2":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"131":{"tf":1.0},"156":{"tf":1.0},"27":{"tf":1.0}}},">":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"139":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"105":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"|":{"a":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{",":{"df":1,"docs":{"216":{"tf":1.7320508075688772}}},"df":1,"docs":{"97":{"tf":2.449489742783178}}}},"df":2,"docs":{"216":{"tf":1.0},"97":{"tf":2.0}}}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"1":{"0":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"226":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"97":{"tf":2.0}}}}},"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"252":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":1,"docs":{"214":{"tf":1.4142135623730951}},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"214":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"<":{"'":{"a":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"216":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":25,"docs":{"102":{"tf":1.7320508075688772},"107":{"tf":1.0},"109":{"tf":1.0},"126":{"tf":1.0},"143":{"tf":2.0},"153":{"tf":1.7320508075688772},"155":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.7320508075688772},"219":{"tf":1.0},"223":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"226":{"tf":1.0},"250":{"tf":1.0},"252":{"tf":2.0},"256":{"tf":1.7320508075688772},"47":{"tf":1.0},"53":{"tf":1.0},"75":{"tf":2.23606797749979},"77":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"139":{"tf":1.0},"34":{"tf":1.0},"75":{"tf":2.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"4":{"tf":1.0}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":14,"docs":{"114":{"tf":1.0},"127":{"tf":1.0},"168":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"250":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":1.0},"88":{"tf":1.0},"98":{"tf":1.0}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}},"":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.7320508075688772}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}}},"c":{"df":3,"docs":{"115":{"tf":2.6457513110645907},"122":{"tf":2.8284271247461903},"127":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"176":{"tf":1.0},"190":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":2.0},"213":{"tf":4.123105625617661},"215":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"56":{"tf":1.7320508075688772},"73":{"tf":1.0}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":6,"docs":{"144":{"tf":1.0},"151":{"tf":2.23606797749979},"152":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0}}}}}}},"df":8,"docs":{"1":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.7320508075688772},"168":{"tf":1.0},"169":{"tf":2.0},"204":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":19,"docs":{"108":{"tf":1.0},"121":{"tf":1.0},"142":{"tf":1.4142135623730951},"151":{"tf":1.0},"195":{"tf":1.7320508075688772},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.0},"256":{"tf":1.0},"270":{"tf":1.0},"37":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"66":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}},"t":{"df":2,"docs":{"131":{"tf":1.7320508075688772},"139":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":2,"docs":{"45":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"u":{"df":0,"docs":{},"s":{"df":11,"docs":{"100":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"131":{"tf":1.4142135623730951},"204":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":15,"docs":{"105":{"tf":1.4142135623730951},"114":{"tf":1.0},"124":{"tf":1.0},"158":{"tf":1.0},"186":{"tf":1.0},"216":{"tf":1.0},"24":{"tf":1.0},"249":{"tf":2.23606797749979},"252":{"tf":1.4142135623730951},"27":{"tf":1.0},"39":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"60":{"tf":1.0},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.7320508075688772}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"187":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"1":{"0":{"0":{".":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"6":{"4":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"127":{"tf":1.0},"158":{"tf":1.0},"57":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"139":{"tf":1.0},"2":{"tf":1.0},"224":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"0":{"tf":1.0},"12":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":18,"docs":{"122":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":1.0},"137":{"tf":1.0},"146":{"tf":1.0},"176":{"tf":1.0},"199":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"224":{"tf":1.0},"248":{"tf":1.0},"36":{"tf":1.4142135623730951},"39":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"_":{"_":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"3":{"2":{"df":2,"docs":{"60":{"tf":1.7320508075688772},"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"110":{"tf":1.0},"132":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"2":{"tf":1.0},"270":{"tf":1.0},"48":{"tf":1.0},"98":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"187":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":13,"docs":{"114":{"tf":2.0},"131":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"27":{"tf":2.0},"28":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}},"v":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"89":{"tf":1.4142135623730951}},"e":{"(":{"[":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}},"0":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"8":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"132":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"226":{"tf":1.0},"39":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"195":{"tf":1.0},"197":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":4,"docs":{"102":{"tf":1.0},"213":{"tf":1.0},"248":{"tf":1.0},"253":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"253":{"tf":1.0},"73":{"tf":1.0},"96":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"235":{"tf":1.7320508075688772}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"126":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"144":{"tf":1.7320508075688772}}},"r":{"df":1,"docs":{"114":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"105":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"7":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"6":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":2.449489742783178}}}}}}}},"o":{"b":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"b":{"df":0,"docs":{},"i":{"(":{"\"":{"c":{"df":1,"docs":{"252":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"252":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"251":{"tf":2.23606797749979},"252":{"tf":2.449489742783178}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":4,"docs":{"1":{"tf":1.0},"105":{"tf":1.7320508075688772},"36":{"tf":1.0},"7":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"161":{"tf":1.0},"183":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"210":{"tf":3.3166247903554},"211":{"tf":2.0},"212":{"tf":1.4142135623730951},"213":{"tf":4.358898943540674},"214":{"tf":2.0},"215":{"tf":2.23606797749979},"216":{"tf":1.7320508075688772},"224":{"tf":1.0},"97":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"213":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"210":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"210":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"131":{"tf":1.0},"143":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"114":{"tf":1.0}}}}}}}},"m":{"d":{"df":1,"docs":{"250":{"tf":1.7320508075688772}}},"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"255":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":84,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"102":{"tf":1.7320508075688772},"103":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"112":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.4142135623730951},"12":{"tf":1.0},"120":{"tf":1.4142135623730951},"123":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.7320508075688772},"137":{"tf":1.0},"14":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.4142135623730951},"149":{"tf":1.0},"153":{"tf":2.0},"154":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.7320508075688772},"16":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":2.0},"170":{"tf":2.0},"175":{"tf":1.7320508075688772},"183":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"211":{"tf":1.4142135623730951},"213":{"tf":1.0},"218":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"246":{"tf":1.0},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"251":{"tf":2.0},"252":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.7320508075688772},"256":{"tf":2.23606797749979},"270":{"tf":1.0},"271":{"tf":1.0},"3":{"tf":2.23606797749979},"36":{"tf":2.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.7320508075688772},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"85":{"tf":2.0},"86":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"255":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"195":{"tf":1.0},"199":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}},"i":{"c":{"(":{"&":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"<":{"'":{"a":{">":{"(":{"_":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":25,"docs":{"110":{"tf":1.7320508075688772},"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.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"137":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":3.0},"223":{"tf":2.23606797749979},"3":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"75":{"tf":1.0}}},"r":{"(":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":4,"docs":{"211":{"tf":2.23606797749979},"56":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"205":{"tf":1.0},"3":{"tf":1.0},"47":{"tf":1.0}}},"m":{"a":{"df":1,"docs":{"183":{"tf":1.0}},"n":{"d":{"df":3,"docs":{"169":{"tf":1.0},"7":{"tf":1.7320508075688772},"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":18,"docs":{"160":{"tf":2.0},"161":{"tf":2.449489742783178},"162":{"tf":3.0},"163":{"tf":1.4142135623730951},"164":{"tf":2.23606797749979},"165":{"tf":1.7320508075688772},"166":{"tf":1.0},"167":{"tf":1.7320508075688772},"168":{"tf":3.4641016151377544},"169":{"tf":2.6457513110645907},"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},"41":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"121":{"tf":1.0},"126":{"tf":1.0},"142":{"tf":1.4142135623730951},"147":{"tf":1.0},"171":{"tf":1.0},"197":{"tf":1.4142135623730951},"270":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"174":{"tf":1.0}}}}},"p":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"_":{"_":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"123":{"tf":1.0},"127":{"tf":1.0},"194":{"tf":1.0},"203":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}},"i":{"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":40,"docs":{"0":{"tf":1.0},"102":{"tf":2.23606797749979},"117":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.4142135623730951},"152":{"tf":1.0},"16":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"177":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"200":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951},"210":{"tf":1.0},"213":{"tf":1.7320508075688772},"22":{"tf":1.4142135623730951},"226":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"251":{"tf":1.7320508075688772},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":2.23606797749979},"270":{"tf":2.0},"271":{"tf":1.0},"41":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"153":{"tf":1.0},"154":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"155":{"tf":1.0},"213":{"tf":1.0},"77":{"tf":1.0}}},"x":{"df":4,"docs":{"182":{"tf":1.0},"195":{"tf":1.0},"224":{"tf":1.0},"248":{"tf":1.0}}}},"i":{"c":{"df":3,"docs":{"168":{"tf":1.0},"176":{"tf":1.0},"228":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"n":{"d":{"df":19,"docs":{"42":{"tf":1.7320508075688772},"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.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"197":{"tf":1.0}}}}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"108":{"tf":2.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"108":{"tf":1.0},"168":{"tf":1.0},"25":{"tf":1.4142135623730951},"54":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"168":{"tf":1.0}}}},":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"169":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"169":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"102":{"tf":1.0},"106":{"tf":1.4142135623730951},"56":{"tf":1.0},"60":{"tf":1.0},"84":{"tf":1.7320508075688772},"88":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"64":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}},"df":1,"docs":{"60":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"199":{"tf":2.449489742783178}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"122":{"tf":1.0}}}}},"s":{"(":{"_":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"3":{"2":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"255":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"249":{"tf":1.0}}}}},"i":{"d":{"df":4,"docs":{"114":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"177":{"tf":1.0},"60":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"114":{"tf":1.0},"199":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}},"df":7,"docs":{"131":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"228":{"tf":1.0},"87":{"tf":2.23606797749979},"88":{"tf":4.0},"89":{"tf":2.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"195":{"tf":1.0},"199":{"tf":1.0}},"t":{"df":3,"docs":{"114":{"tf":1.0},"195":{"tf":1.0},"250":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"63":{"tf":1.0},"88":{"tf":1.0},"97":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":9,"docs":{"208":{"tf":1.0},"211":{"tf":2.449489742783178},"220":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":2.0},"224":{"tf":1.0},"249":{"tf":1.0},"60":{"tf":1.0},"75":{"tf":1.4142135623730951}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"105":{"tf":2.449489742783178},"122":{"tf":1.0},"126":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":2.0},"169":{"tf":1.0},"176":{"tf":1.4142135623730951},"195":{"tf":1.0},"200":{"tf":1.4142135623730951},"202":{"tf":1.0},"230":{"tf":1.0},"255":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"1":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"1":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"<":{"a":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"91":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"111":{"tf":1.0},"133":{"tf":1.0},"144":{"tf":1.0},"250":{"tf":1.0},"252":{"tf":1.0},"95":{"tf":2.0}},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"(":{")":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"133":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":4,"docs":{"12":{"tf":1.0},"205":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":2.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":12,"docs":{"139":{"tf":1.0},"153":{"tf":1.0},"181":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"105":{"tf":1.0},"210":{"tf":1.0},"47":{"tf":1.0}}},"t":{"df":2,"docs":{"252":{"tf":1.4142135623730951},"256":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":10,"docs":{"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":15,"docs":{"131":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"176":{"tf":1.0},"220":{"tf":1.4142135623730951},"223":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"60":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"d":{"df":1,"docs":{"137":{"tf":1.0}},"s":{"[":{"0":{"]":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{":":{":":{"<":{"df":0,"docs":{},"i":{"3":{"2":{"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":{}},"1":{"]":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{":":{":":{"<":{"df":0,"docs":{},"i":{"3":{"2":{"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":{}}},"p":{"df":0,"docs":{},"i":{"df":9,"docs":{"121":{"tf":1.0},"128":{"tf":1.4142135623730951},"139":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.4142135623730951},"248":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"36":{"tf":1.0}}},"y":{"df":0,"docs":{},"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{":":{":":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{":":{":":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"251":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{":":{":":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{":":{":":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"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":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"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":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"&":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"176":{"tf":1.0},"177":{"tf":1.0},"195":{"tf":1.0},"253":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"249":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"155":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"102":{"tf":1.0},"131":{"tf":1.0},"251":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"0":{"tf":1.4142135623730951},"183":{"tf":2.0},"211":{"tf":2.449489742783178},"221":{"tf":1.4142135623730951},"66":{"tf":3.3166247903554},"70":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":3,"docs":{"221":{"tf":2.449489742783178},"64":{"tf":1.0},"66":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.7320508075688772}}},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"251":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}},"w":{"df":1,"docs":{"96":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"142":{"tf":2.0}}},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"251":{"tf":1.4142135623730951}},"i":{"d":{"df":1,"docs":{"251":{"tf":2.23606797749979}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"a":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{":":{":":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"173":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":14,"docs":{"109":{"tf":1.4142135623730951},"150":{"tf":1.7320508075688772},"151":{"tf":2.0},"152":{"tf":4.898979485566356},"153":{"tf":2.449489742783178},"154":{"tf":1.0},"155":{"tf":2.449489742783178},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":2.23606797749979},"159":{"tf":1.0},"168":{"tf":2.449489742783178},"226":{"tf":1.0},"255":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":27,"docs":{"109":{"tf":1.0},"113":{"tf":2.0},"126":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"157":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"183":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":2.0},"226":{"tf":1.0},"227":{"tf":1.0},"230":{"tf":1.4142135623730951},"57":{"tf":1.0},"60":{"tf":1.7320508075688772},"72":{"tf":1.0},"73":{"tf":1.0},"9":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"194":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"115":{"tf":1.0},"124":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.0},"204":{"tf":1.0},"246":{"tf":1.0},"65":{"tf":1.0},"77":{"tf":1.7320508075688772},"88":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"270":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"133":{"tf":1.4142135623730951},"137":{"tf":1.0},"176":{"tf":1.4142135623730951},"182":{"tf":1.0},"256":{"tf":1.0}}}}}}},"x":{"df":1,"docs":{"253":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"111":{"tf":1.0},"270":{"tf":1.0}}}}},"t":{"a":{"df":18,"docs":{"115":{"tf":1.4142135623730951},"139":{"tf":1.0},"144":{"tf":1.0},"195":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"205":{"tf":1.7320508075688772},"213":{"tf":1.0},"248":{"tf":1.0},"253":{"tf":1.0},"256":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"89":{"tf":2.0}}},"df":0,"docs":{}},"y":{"df":3,"docs":{"10":{"tf":1.0},"176":{"tf":1.0},"226":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"i":{"6":{"4":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"0":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"g":{"!":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"3":{"0":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"226":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"183":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":11,"docs":{"149":{"tf":1.4142135623730951},"176":{"tf":1.0},"180":{"tf":1.7320508075688772},"181":{"tf":2.449489742783178},"182":{"tf":2.0},"183":{"tf":1.0},"200":{"tf":1.7320508075688772},"202":{"tf":2.0},"224":{"tf":1.0},"58":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"181":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"131":{"tf":1.7320508075688772}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"16":{"tf":1.0},"248":{"tf":1.4142135623730951},"251":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"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":{"181":{"tf":1.0}},"e":{"(":{"7":{"df":1,"docs":{"181":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"4":{"tf":1.0}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":18,"docs":{"105":{"tf":1.0},"106":{"tf":2.23606797749979},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"187":{"tf":1.0},"195":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"186":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":16,"docs":{"103":{"tf":1.0},"109":{"tf":1.4142135623730951},"132":{"tf":1.0},"148":{"tf":1.0},"156":{"tf":1.0},"177":{"tf":1.0},"200":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"45":{"tf":1.0},"56":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"x":{"df":1,"docs":{"15":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"181":{"tf":1.0},"255":{"tf":1.0},"91":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"161":{"tf":1.0},"47":{"tf":1.7320508075688772}}}}}},"v":{"df":1,"docs":{"4":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"246":{"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":{"169":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"126":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.0},"213":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"108":{"tf":1.0},"132":{"tf":1.0},"256":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"138":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772},"53":{"tf":1.0}}}},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"123":{"tf":1.0},"126":{"tf":1.4142135623730951},"181":{"tf":1.7320508075688772},"182":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":18,"docs":{"106":{"tf":1.0},"123":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"181":{"tf":2.0},"195":{"tf":2.6457513110645907},"199":{"tf":1.0},"202":{"tf":1.0},"205":{"tf":1.0},"37":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"224":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"145":{"tf":1.0},"152":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}},"r":{"df":1,"docs":{"256":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"139":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":2,"docs":{"193":{"tf":1.0},"75":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"18":{"tf":1.7320508075688772},"19":{"tf":1.7320508075688772},"37":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.0},"75":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"11":{"tf":1.0},"143":{"tf":1.7320508075688772},"48":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"132":{"tf":1.0},"195":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":1.0},"52":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"10":{"tf":1.0},"111":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"213":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"105":{"tf":1.0},"121":{"tf":1.0},"139":{"tf":1.0},"151":{"tf":1.0},"154":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"198":{"tf":1.0},"202":{"tf":1.0},"212":{"tf":1.0},"220":{"tf":1.0},"248":{"tf":1.7320508075688772},"54":{"tf":1.0},"70":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"a":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}},"r":{"df":2,"docs":{"152":{"tf":1.4142135623730951},"154":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"255":{"tf":1.0},"69":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"107":{"tf":1.0},"136":{"tf":1.0},"176":{"tf":1.0},"219":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"250":{"tf":1.0},"52":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"151":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772}}}}}}},"df":1,"docs":{"69":{"tf":1.4142135623730951}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.0}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"102":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"123":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":11,"docs":{"109":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"176":{"tf":1.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.0},"182":{"tf":2.6457513110645907},"183":{"tf":1.0},"200":{"tf":2.449489742783178},"226":{"tf":1.4142135623730951},"228":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"123":{"tf":1.7320508075688772},"17":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"(":{"a":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"169":{"tf":1.0}},"e":{"df":1,"docs":{"0":{"tf":1.0}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"34":{"tf":2.23606797749979}}}}},"i":{"d":{"df":0,"docs":{},"e":{"(":{"1":{"5":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{":":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"271":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"u":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"c":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"172":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"173":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"(":{"1":{"0":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"(":{"1":{"0":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":17,"docs":{"132":{"tf":1.0},"160":{"tf":1.7320508075688772},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":2.6457513110645907},"165":{"tf":2.0},"166":{"tf":2.0},"167":{"tf":2.0},"168":{"tf":3.1622776601683795},"169":{"tf":3.4641016151377544},"170":{"tf":1.4142135623730951},"171":{"tf":2.0},"172":{"tf":2.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"174":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}}}},"df":17,"docs":{"102":{"tf":1.0},"136":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"3":{"tf":1.0},"37":{"tf":1.0},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"125":{"tf":1.4142135623730951},"129":{"tf":1.0},"152":{"tf":1.0},"176":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{},"":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.7320508075688772}}}}}}},"g":{"df":2,"docs":{"176":{"tf":1.0},"45":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"\\":{"df":0,"docs":{},"x":{"3":{"df":0,"docs":{},"f":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"91":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":32,"docs":{"103":{"tf":1.0},"112":{"tf":1.4142135623730951},"128":{"tf":1.0},"131":{"tf":1.4142135623730951},"137":{"tf":1.0},"146":{"tf":1.4142135623730951},"154":{"tf":1.0},"156":{"tf":1.0},"169":{"tf":1.0},"22":{"tf":1.4142135623730951},"227":{"tf":1.0},"251":{"tf":1.0},"29":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772},"37":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"122":{"tf":1.4142135623730951},"251":{"tf":1.0}}},"t":{"df":2,"docs":{"211":{"tf":1.4142135623730951},"78":{"tf":1.0}}},"":{"df":0,"docs":{},"t":{"df":2,"docs":{"56":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}},"t":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}},"u":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"195":{"tf":1.4142135623730951},"213":{"tf":1.7320508075688772},"47":{"tf":1.0},"75":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"127":{"tf":1.4142135623730951},"154":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"101":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"(":{"_":{"_":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"i":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"101":{"tf":2.449489742783178}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"(":{"_":{"_":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":7,"docs":{"115":{"tf":1.0},"127":{"tf":1.4142135623730951},"195":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"232":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":2.0}}}},"u":{"c":{"df":0,"docs":{},"k":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":2,"docs":{"100":{"tf":2.8284271247461903},"99":{"tf":3.0}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"151":{"tf":1.0},"204":{"tf":1.0},"255":{"tf":1.4142135623730951},"73":{"tf":1.0},"87":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"253":{"tf":1.0}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"102":{"tf":2.23606797749979},"228":{"tf":1.4142135623730951}},"i":{"c":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"&":{"df":0,"docs":{},"i":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"200":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":11,"docs":{"22":{"tf":1.0},"246":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.7320508075688772},"255":{"tf":1.0},"256":{"tf":1.0},"43":{"tf":1.0},"52":{"tf":1.0},"63":{"tf":1.0},"89":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":22,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"144":{"tf":1.0},"152":{"tf":1.0},"156":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"2":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.7320508075688772},"227":{"tf":1.0},"230":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}},"s":{"df":1,"docs":{"153":{"tf":1.0}},"i":{"df":5,"docs":{"0":{"tf":1.0},"182":{"tf":1.0},"2":{"tf":1.4142135623730951},"248":{"tf":1.0},"3":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"132":{"tf":1.0},"205":{"tf":1.0}}}}},"t":{"df":1,"docs":{"69":{"tf":1.0}}}},"t":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"153":{"tf":1.7320508075688772},"154":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"df":3,"docs":{"250":{"tf":2.0},"251":{"tf":1.7320508075688772},"253":{"tf":1.0}}}},"b":{"df":0,"docs":{},"p":{"df":1,"docs":{"250":{"tf":1.0}}},"x":{"df":2,"docs":{"250":{"tf":1.0},"251":{"tf":3.1622776601683795}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"164":{"tf":1.0}}}}},"x":{"df":2,"docs":{"250":{"tf":1.0},"251":{"tf":1.7320508075688772}}}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"250":{"tf":1.0}},"t":{"df":2,"docs":{"151":{"tf":1.4142135623730951},"2":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.7320508075688772}}}}}},"x":{"df":2,"docs":{"250":{"tf":1.0},"251":{"tf":1.4142135623730951}}}},"df":6,"docs":{"145":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"216":{"tf":2.449489742783178},"48":{"tf":1.0},"70":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"256":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":1,"docs":{"200":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"x":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"'":{"a":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"51":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":12,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.4142135623730951},"3":{"tf":2.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}}},"m":{"df":1,"docs":{"60":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"115":{"tf":1.0},"122":{"tf":2.23606797749979},"123":{"tf":1.0},"131":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"195":{"tf":1.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"51":{"tf":1.4142135623730951},"54":{"tf":1.0},"60":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}}},"i":{"d":{"df":2,"docs":{"197":{"tf":1.0},"219":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"106":{"tf":1.0},"183":{"tf":1.0},"256":{"tf":1.4142135623730951}}}}},"s":{"df":3,"docs":{"195":{"tf":1.4142135623730951},"197":{"tf":2.449489742783178},"207":{"tf":1.4142135623730951}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.7320508075688772}}}}},"b":{"df":1,"docs":{"246":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"253":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"122":{"tf":1.0},"125":{"tf":1.0},"60":{"tf":1.7320508075688772}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"194":{"tf":1.0},"210":{"tf":1.0},"88":{"tf":1.0}}}}},"o":{"d":{"df":3,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"144":{"tf":1.0},"198":{"tf":1.0}}}}}}},"d":{"df":9,"docs":{"161":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"24":{"tf":1.0},"250":{"tf":1.0},"255":{"tf":1.0},"60":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"139":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"1":{"tf":1.0},"204":{"tf":1.0}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":12,"docs":{"0":{"tf":1.0},"110":{"tf":1.0},"130":{"tf":1.0},"140":{"tf":1.0},"150":{"tf":1.0},"192":{"tf":1.0},"20":{"tf":1.0},"209":{"tf":1.0},"35":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"115":{"tf":1.0},"195":{"tf":1.0},"226":{"tf":1.4142135623730951},"66":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"109":{"tf":1.0},"125":{"tf":1.0},"139":{"tf":1.0},"155":{"tf":1.0},"193":{"tf":1.0},"251":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"162":{"tf":1.0},"194":{"tf":1.0},"251":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"125":{"tf":1.4142135623730951},"251":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":15,"docs":{"123":{"tf":1.7320508075688772},"133":{"tf":1.0},"145":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.0},"227":{"tf":1.4142135623730951},"60":{"tf":4.242640687119285},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"73":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":2.0},"89":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"183":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"143":{"tf":1.0},"190":{"tf":1.4142135623730951},"210":{"tf":1.0},"215":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"!":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"177":{"tf":1.0}},"l":{"df":0,"docs":{},"n":{"df":1,"docs":{"177":{"tf":1.0}}}}}}}}},"q":{"df":2,"docs":{"105":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772}},"u":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"114":{"tf":1.0},"115":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"39":{"tf":1.0},"50":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"139":{"tf":1.4142135623730951},"146":{"tf":1.0},"218":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"(":{"df":7,"docs":{"134":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":2.0},"147":{"tf":2.23606797749979},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"48":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":5,"docs":{"134":{"tf":1.4142135623730951},"137":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":78,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.7320508075688772},"128":{"tf":1.0},"131":{"tf":2.23606797749979},"132":{"tf":1.4142135623730951},"133":{"tf":2.0},"134":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"145":{"tf":1.7320508075688772},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.7320508075688772},"15":{"tf":1.4142135623730951},"153":{"tf":1.0},"155":{"tf":1.0},"169":{"tf":1.4142135623730951},"177":{"tf":1.0},"18":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"186":{"tf":1.0},"195":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"204":{"tf":1.0},"211":{"tf":1.4142135623730951},"213":{"tf":1.0},"215":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"244":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"271":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772},"41":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"191":{"tf":1.0},"47":{"tf":2.6457513110645907},"48":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":1,"docs":{"250":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"270":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"251":{"tf":1.0}}}},"t":{"c":{"df":4,"docs":{"139":{"tf":1.0},"2":{"tf":1.0},"253":{"tf":1.0},"256":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":9,"docs":{"122":{"tf":1.0},"148":{"tf":1.0},"176":{"tf":1.0},"213":{"tf":1.0},"251":{"tf":1.4142135623730951},"256":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"87":{"tf":1.0}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"134":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"162":{"tf":1.0},"204":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"148":{"tf":1.0},"46":{"tf":1.0}}}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"146":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"251":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":57,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.4142135623730951},"158":{"tf":1.0},"162":{"tf":1.7320508075688772},"165":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":2.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":3.0},"196":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":2.0},"202":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.7320508075688772},"249":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.7320508075688772},"256":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"37":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":1.0},"75":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"91":{"tf":1.7320508075688772},"94":{"tf":1.0}},"e":{"1":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"<":{"'":{"a":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"212":{"tf":1.0}},"e":{"(":{"5":{"df":1,"docs":{"212":{"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":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":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":{}}}}}},"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"122":{"tf":1.0},"131":{"tf":1.0},"202":{"tf":1.0}},"l":{"df":1,"docs":{"3":{"tf":1.0}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"127":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"255":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"213":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"<":{"'":{"a":{"df":1,"docs":{"213":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":1,"docs":{"213":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"248":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":17,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"107":{"tf":1.0},"116":{"tf":1.0},"138":{"tf":1.0},"155":{"tf":1.0},"163":{"tf":1.4142135623730951},"2":{"tf":2.0},"208":{"tf":1.4142135623730951},"270":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.4142135623730951},"37":{"tf":1.0},"59":{"tf":1.0},"76":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"125":{"tf":1.4142135623730951},"151":{"tf":1.0},"197":{"tf":1.0}}}},"t":{"df":3,"docs":{"141":{"tf":1.4142135623730951},"195":{"tf":1.0},"251":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"122":{"tf":1.0},"145":{"tf":1.0},"169":{"tf":1.0},"248":{"tf":1.0},"34":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"194":{"tf":1.0},"204":{"tf":1.0},"228":{"tf":1.0}}}},"n":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"125":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"195":{"tf":1.4142135623730951},"250":{"tf":2.23606797749979},"251":{"tf":1.4142135623730951},"60":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"22":{"tf":1.4142135623730951},"255":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"y":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":1.0},"34":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"88":{"tf":2.23606797749979},"89":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"<":{"'":{"b":{">":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"139":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":2,"docs":{"118":{"tf":1.4142135623730951},"139":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"109":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"252":{"tf":1.0},"256":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"183":{"tf":1.0},"54":{"tf":1.0}}}},"df":3,"docs":{"102":{"tf":1.0},"176":{"tf":1.0},"187":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}},"f":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"213":{"tf":1.4142135623730951}}}}}}}},"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"103":{"tf":1.7320508075688772}}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"3":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}},".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"146":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"3":{"2":{":":{":":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{":":{":":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"126":{"tf":1.0},"23":{"tf":1.4142135623730951},"86":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":11,"docs":{"101":{"tf":1.0},"126":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":2.449489742783178},"176":{"tf":1.0},"182":{"tf":1.4142135623730951},"23":{"tf":1.0},"75":{"tf":3.0},"85":{"tf":1.4142135623730951},"93":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"<":{"'":{"a":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},">":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"248":{"tf":1.0}}}},"t":{"df":2,"docs":{"132":{"tf":1.0},"87":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"x":{":":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"141":{"tf":1.4142135623730951},"143":{"tf":1.0},"169":{"tf":2.0},"194":{"tf":1.0},"195":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":1.4142135623730951}},"e":{"d":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"<":{"'":{"a":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"96":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":5,"docs":{"25":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"69":{"tf":1.0},"91":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"248":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"213":{"tf":2.23606797749979}},"l":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"176":{"tf":1.0},"177":{"tf":1.0}}}}}}},"v":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"108":{"tf":1.4142135623730951}},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"108":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"108":{"tf":1.0}}}}}}}},"df":11,"docs":{"109":{"tf":1.0},"146":{"tf":1.7320508075688772},"183":{"tf":1.0},"203":{"tf":1.4142135623730951},"213":{"tf":4.358898943540674},"214":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"255":{"tf":1.0},"28":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"170":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"260":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"220":{"tf":1.4142135623730951}}}}},"w":{"df":10,"docs":{"114":{"tf":1.0},"155":{"tf":1.0},"162":{"tf":1.0},"171":{"tf":1.0},"195":{"tf":1.0},"227":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"54":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"122":{"tf":1.0},"256":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"256":{"tf":1.0}}}},"i":{"b":{"df":1,"docs":{"221":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"207":{"tf":1.4142135623730951},"56":{"tf":2.23606797749979},"57":{"tf":1.4142135623730951},"75":{"tf":1.0}},"s":{"'":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"270":{"tf":2.0},"271":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"146":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":9,"docs":{"146":{"tf":1.0},"151":{"tf":1.7320508075688772},"152":{"tf":2.8284271247461903},"154":{"tf":1.7320508075688772},"166":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"59":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"l":{"df":81,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"19":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"213":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.7320508075688772},"227":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":2.0},"34":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":2.0},"56":{"tf":1.4142135623730951},"57":{"tf":2.0},"58":{"tf":1.0},"60":{"tf":2.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":2.0},"77":{"tf":1.7320508075688772},"84":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"169":{"tf":2.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"141":{"tf":1.0},"256":{"tf":1.0},"60":{"tf":1.0}}}},"d":{"df":48,"docs":{"103":{"tf":1.0},"109":{"tf":1.0},"116":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0},"159":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":1.0},"216":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"25":{"tf":1.0},"271":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":2,"docs":{"195":{"tf":1.0},"253":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"169":{"tf":2.0},"217":{"tf":1.0},"248":{"tf":1.0},"3":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":1,"docs":{"53":{"tf":1.0}}},"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"148":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{":":{":":{"<":{"df":0,"docs":{},"i":{"3":{"2":{">":{"(":{")":{".":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":16,"docs":{"105":{"tf":1.0},"114":{"tf":1.4142135623730951},"151":{"tf":1.0},"16":{"tf":1.0},"183":{"tf":1.0},"204":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.7320508075688772},"249":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"75":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"78":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"t":{"df":2,"docs":{"131":{"tf":1.0},"89":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"60":{"tf":1.0}}}},"x":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"153":{"tf":1.0},"154":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"195":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"195":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":56,"docs":{"112":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"14":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"15":{"tf":1.4142135623730951},"153":{"tf":1.0},"155":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"181":{"tf":1.0},"186":{"tf":1.0},"195":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"25":{"tf":1.0},"271":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"m":{"df":2,"docs":{"176":{"tf":1.4142135623730951},"195":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"102":{"tf":1.0},"121":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"210":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"o":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"126":{"tf":1.0},"131":{"tf":1.4142135623730951},"188":{"tf":1.0},"23":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":6,"docs":{"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"107":{"tf":2.23606797749979},"99":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"109":{"tf":1.0},"183":{"tf":1.0},"226":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":4,"docs":{"105":{"tf":1.7320508075688772},"176":{"tf":1.0},"181":{"tf":2.0},"182":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":7,"docs":{"109":{"tf":1.0},"136":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":1.0},"183":{"tf":1.0},"226":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":1.0},"183":{"tf":2.0},"226":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"136":{"tf":1.0}}}},"n":{"(":{"&":{"'":{"a":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},")":{">":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"216":{"tf":1.4142135623730951}}},"i":{"3":{"2":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"3":{"2":{"df":1,"docs":{"97":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"z":{"df":0,"docs":{},"|":{"df":0,"docs":{},"{":{"df":0,"docs":{},"z":{"df":1,"docs":{"213":{"tf":1.0}}}}}}}},"<":{"df":0,"docs":{},"f":{">":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"1":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":162,"docs":{"100":{"tf":2.449489742783178},"101":{"tf":2.449489742783178},"102":{"tf":2.449489742783178},"103":{"tf":2.23606797749979},"105":{"tf":3.0},"106":{"tf":1.4142135623730951},"107":{"tf":3.3166247903554},"108":{"tf":2.449489742783178},"109":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":2.449489742783178},"125":{"tf":2.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":2.23606797749979},"132":{"tf":1.4142135623730951},"133":{"tf":1.7320508075688772},"134":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"139":{"tf":2.449489742783178},"14":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":2.0},"145":{"tf":1.4142135623730951},"146":{"tf":2.23606797749979},"147":{"tf":2.449489742783178},"148":{"tf":1.7320508075688772},"149":{"tf":2.0},"15":{"tf":1.7320508075688772},"153":{"tf":2.0},"154":{"tf":3.0},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.7320508075688772},"16":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":2.23606797749979},"17":{"tf":1.0},"170":{"tf":1.4142135623730951},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"181":{"tf":1.7320508075688772},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":4.123105625617661},"196":{"tf":2.23606797749979},"197":{"tf":2.449489742783178},"198":{"tf":1.0},"199":{"tf":2.6457513110645907},"200":{"tf":3.4641016151377544},"202":{"tf":2.8284271247461903},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"205":{"tf":1.7320508075688772},"208":{"tf":2.0},"210":{"tf":1.7320508075688772},"211":{"tf":2.23606797749979},"212":{"tf":1.4142135623730951},"213":{"tf":4.47213595499958},"214":{"tf":1.7320508075688772},"215":{"tf":1.7320508075688772},"216":{"tf":2.0},"218":{"tf":2.0},"219":{"tf":1.4142135623730951},"22":{"tf":2.6457513110645907},"220":{"tf":1.7320508075688772},"221":{"tf":2.449489742783178},"223":{"tf":1.4142135623730951},"224":{"tf":2.0},"226":{"tf":3.3166247903554},"227":{"tf":2.23606797749979},"228":{"tf":2.23606797749979},"23":{"tf":1.7320508075688772},"230":{"tf":2.23606797749979},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"254":{"tf":1.0},"27":{"tf":1.7320508075688772},"271":{"tf":2.0},"28":{"tf":1.4142135623730951},"29":{"tf":2.0},"31":{"tf":1.0},"32":{"tf":2.0},"33":{"tf":2.6457513110645907},"34":{"tf":2.0},"36":{"tf":3.1622776601683795},"37":{"tf":1.7320508075688772},"39":{"tf":3.0},"40":{"tf":2.23606797749979},"41":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"45":{"tf":2.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":2.6457513110645907},"52":{"tf":1.7320508075688772},"53":{"tf":2.0},"54":{"tf":2.6457513110645907},"56":{"tf":2.23606797749979},"57":{"tf":2.23606797749979},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":3.4641016151377544},"62":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"69":{"tf":2.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"72":{"tf":1.0},"73":{"tf":2.6457513110645907},"75":{"tf":2.6457513110645907},"77":{"tf":2.8284271247461903},"78":{"tf":2.0},"79":{"tf":1.7320508075688772},"80":{"tf":1.0},"84":{"tf":2.6457513110645907},"85":{"tf":2.0},"86":{"tf":2.0},"88":{"tf":2.0},"89":{"tf":2.23606797749979},"91":{"tf":3.3166247903554},"92":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"94":{"tf":2.449489742783178},"95":{"tf":2.449489742783178},"96":{"tf":2.23606797749979},"97":{"tf":3.605551275463989},"99":{"tf":2.6457513110645907}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"213":{"tf":2.449489742783178}}}}},"o":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"213":{"tf":2.449489742783178}},"e":{"(":{")":{">":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"213":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":2,"docs":{"223":{"tf":1.0},"224":{"tf":1.0}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":23,"docs":{"103":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.7320508075688772},"170":{"tf":1.0},"187":{"tf":1.0},"195":{"tf":1.0},"207":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"215":{"tf":1.0},"218":{"tf":1.4142135623730951},"227":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0}}}}}},"o":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"252":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"158":{"tf":1.0}}}},".":{"b":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},":":{":":{"<":{"2":{"0":{"2":{"1":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":1,"docs":{"88":{"tf":1.0}}},"{":{"2":{"0":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"71":{"tf":1.4142135623730951}}},"z":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"(":{"1":{"0":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"228":{"tf":1.0}}}}},"df":1,"docs":{"94":{"tf":2.6457513110645907}}}},"df":0,"docs":{}},"df":8,"docs":{"102":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"189":{"tf":1.7320508075688772},"252":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"94":{"tf":2.0}},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"93":{"tf":2.0}}}},"r":{"<":{"'":{"a":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":2,"docs":{"195":{"tf":1.0},"213":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"139":{"tf":1.0},"253":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}}}}},"k":{"df":1,"docs":{"0":{"tf":1.0}}},"m":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"t":{"!":{"(":{"\"":{"0":{"df":0,"docs":{},"o":{"df":0,"docs":{},"{":{":":{"df":0,"docs":{},"o":{"df":1,"docs":{"189":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"{":{":":{"df":0,"docs":{},"x":{"df":1,"docs":{"189":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"6":{"4":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"60":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"95":{"tf":1.0}}}},"u":{"8":{"df":2,"docs":{"101":{"tf":1.0},"102":{"tf":1.0}}},"df":0,"docs":{}},"{":{":":{"df":0,"docs":{},"p":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"_":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":27,"docs":{"108":{"tf":1.0},"114":{"tf":1.4142135623730951},"176":{"tf":2.449489742783178},"177":{"tf":3.0},"178":{"tf":2.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":2.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"22":{"tf":1.0},"226":{"tf":1.0},"23":{"tf":1.0},"248":{"tf":1.7320508075688772},"253":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"df":4,"docs":{"107":{"tf":2.6457513110645907},"176":{"tf":1.0},"88":{"tf":1.0},"97":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"183":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"107":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.0},"132":{"tf":1.0},"145":{"tf":1.4142135623730951},"148":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":4,"docs":{"170":{"tf":1.0},"195":{"tf":1.4142135623730951},"212":{"tf":1.0},"251":{"tf":1.0}}}},"x":{"df":1,"docs":{"176":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"249":{"tf":1.0}}}}}}},"n":{"c":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"220":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"75":{"tf":1.0}}},"df":1,"docs":{"249":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"176":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"132":{"tf":1.7320508075688772},"133":{"tf":1.0},"134":{"tf":1.4142135623730951}}}}}}},"<":{"&":{"'":{"_":{"df":2,"docs":{"119":{"tf":1.0},"132":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"[":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"119":{"tf":1.0}}}}},"t":{"df":1,"docs":{"132":{"tf":1.0}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"137":{"tf":1.0}}},"df":1,"docs":{"137":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":2.0}}}}}},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"153":{"tf":2.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"154":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":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":{"60":{"tf":1.0}}}}}},"s":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"159":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"251":{"tf":1.4142135623730951},"253":{"tf":1.0},"256":{"tf":1.0}},"i":{"df":2,"docs":{"107":{"tf":1.7320508075688772},"252":{"tf":1.0}}}}},"n":{":":{":":{"<":{"a":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"(":{"3":{"df":1,"docs":{"213":{"tf":1.0}}},"4":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"99":{"tf":1.0}}},"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"210":{"tf":1.4142135623730951}}}},"df":59,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"139":{"tf":2.0},"142":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.4142135623730951},"153":{"tf":1.0},"155":{"tf":1.0},"162":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"195":{"tf":3.1622776601683795},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":1.0},"209":{"tf":1.7320508075688772},"210":{"tf":2.23606797749979},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":2.0},"214":{"tf":2.449489742783178},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"246":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"33":{"tf":2.0},"34":{"tf":2.6457513110645907},"54":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":2.8284271247461903},"76":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":2.6457513110645907},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":2.23606797749979},"90":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"155":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"114":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"122":{"tf":1.0},"124":{"tf":1.0},"174":{"tf":1.0},"265":{"tf":1.7320508075688772}}}}}}},"g":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":1,"docs":{"69":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"i":{"3":{"2":{"(":{"_":{"_":{"df":1,"docs":{"84":{"tf":1.0}}},"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"(":{"_":{"_":{"df":1,"docs":{"84":{"tf":1.0}}},"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":47,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":2.23606797749979},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":2.449489742783178},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"134":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.4142135623730951},"166":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"183":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.7320508075688772},"213":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":1.0},"246":{"tf":1.4142135623730951},"247":{"tf":1.0},"248":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"75":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":2.0},"84":{"tf":2.6457513110645907},"85":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"87":{"tf":2.6457513110645907},"88":{"tf":3.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.0}},"i":{"c":{"(":{"_":{"_":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"<":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{">":{"(":{"_":{"_":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{">":{"(":{"_":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"107":{"tf":2.0}}}}}}},"df":0,"docs":{}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}},"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":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"190":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"&":{"'":{"a":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"190":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":3,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"91":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"_":{"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":{"108":{"tf":1.4142135623730951}},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"108":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"108":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"36":{"tf":1.4142135623730951}}}}}}}}}}}},"df":6,"docs":{"124":{"tf":1.0},"143":{"tf":1.0},"226":{"tf":1.0},"256":{"tf":1.0},"56":{"tf":1.0},"75":{"tf":1.0}},"n":{"df":8,"docs":{"165":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.4142135623730951},"22":{"tf":1.0},"226":{"tf":1.0},"246":{"tf":1.0},"252":{"tf":1.0},"48":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"131":{"tf":1.0},"243":{"tf":1.7320508075688772},"256":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"255":{"tf":1.0}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"169":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"df":6,"docs":{"204":{"tf":1.0},"211":{"tf":1.0},"228":{"tf":1.0},"4":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.4142135623730951}},"e":{"df":6,"docs":{"114":{"tf":1.0},"121":{"tf":1.0},"161":{"tf":1.4142135623730951},"199":{"tf":1.0},"50":{"tf":1.0},"72":{"tf":1.0}}},"o":{"d":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"126":{"tf":1.0},"139":{"tf":1.0},"6":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"":{"df":1,"docs":{"124":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"176":{"tf":1.0},"248":{"tf":1.0}}}}}}},"r":{"a":{"b":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"80":{"tf":1.0}}},"t":{"df":1,"docs":{"213":{"tf":2.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":2,"docs":{"44":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"153":{"tf":1.0}}}},"w":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"127":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"117":{"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":{"113":{"tf":1.0},"226":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"45":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"154":{"tf":1.0}}}}},"i":{"d":{"df":2,"docs":{"10":{"tf":1.0},"8":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"1":{"df":1,"docs":{"49":{"tf":1.0}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"176":{"tf":1.0}}},"v":{"df":1,"docs":{"62":{"tf":1.0}}}},"n":{"d":{"df":2,"docs":{"10":{"tf":1.0},"19":{"tf":1.0}},"l":{"df":5,"docs":{"133":{"tf":1.0},"141":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.4142135623730951}}},"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":{"246":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"102":{"tf":1.0},"113":{"tf":1.0},"255":{"tf":1.0}}}}}},"r":{"d":{"df":1,"docs":{"2":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"215":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"246":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"4":{"2":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"124":{"tf":1.4142135623730951}}}},"df":4,"docs":{"105":{"tf":1.4142135623730951},"124":{"tf":2.23606797749979},"126":{"tf":2.449489742783178},"129":{"tf":2.23606797749979}},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"125":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"156":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"1":{"0":{"0":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"_":{"df":3,"docs":{"129":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0}}},"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":6,"docs":{"124":{"tf":2.23606797749979},"125":{"tf":1.0},"126":{"tf":2.6457513110645907},"127":{"tf":2.449489742783178},"128":{"tf":2.0},"129":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"a":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"d":{"(":{"1":{"df":1,"docs":{"99":{"tf":1.0}}},"2":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":3,"docs":{"114":{"tf":1.4142135623730951},"253":{"tf":1.0},"49":{"tf":1.7320508075688772}},"e":{"a":{"d":{"df":3,"docs":{"60":{"tf":1.0},"7":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"125":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772}}}}},"p":{"df":5,"docs":{"113":{"tf":1.4142135623730951},"115":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.4142135623730951},"75":{"tf":1.0}}},"r":{"df":1,"docs":{"154":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"58":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":5,"docs":{"102":{"tf":1.0},"119":{"tf":1.4142135623730951},"128":{"tf":1.0},"36":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},",":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":35,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":2.0},"119":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":2.8284271247461903},"153":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"187":{"tf":3.3166247903554},"188":{"tf":1.7320508075688772},"191":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"220":{"tf":1.0},"228":{"tf":1.0},"37":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.7320508075688772},"60":{"tf":1.0},"73":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.7320508075688772}},"你":{"df":0,"docs":{},"好":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":5,"docs":{"147":{"tf":1.0},"148":{"tf":1.0},"183":{"tf":1.0},"226":{"tf":1.0},"270":{"tf":1.0}}}},"n":{"c":{"df":3,"docs":{"132":{"tf":1.0},"134":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"88":{"tf":1.0}}},"df":80,"docs":{"103":{"tf":1.0},"109":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"134":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"16":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"210":{"tf":1.0},"216":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.4142135623730951},"25":{"tf":1.0},"256":{"tf":1.0},"271":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"189":{"tf":1.7320508075688772}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"169":{"tf":1.0},"226":{"tf":1.0},"8":{"tf":1.0}}}},"df":2,"docs":{"250":{"tf":2.0},"92":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"253":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"19":{"tf":1.0},"2":{"tf":1.0},"203":{"tf":1.4142135623730951},"250":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"250":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"o":{"b":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"200":{"tf":1.0},"211":{"tf":1.0},"60":{"tf":1.4142135623730951},"69":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"154":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"154":{"tf":1.0},"155":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"195":{"tf":1.0}}}}},"p":{"df":1,"docs":{"126":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"b":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}}}}}},"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"164":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"260":{"tf":1.0},"60":{"tf":1.0},"94":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"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":{}}}}}},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}},"i":{"'":{"df":0,"docs":{},"m":{"df":3,"docs":{"199":{"tf":1.0},"47":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772}}}},"+":{"1":{",":{"df":0,"docs":{},"v":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},",":{"df":0,"docs":{},"v":{"df":1,"docs":{"63":{"tf":1.0}}}},".":{"df":2,"docs":{"75":{"tf":1.0},"88":{"tf":1.0}}},"1":{"6":{"df":2,"docs":{"134":{"tf":1.0},"54":{"tf":1.0}}},"df":1,"docs":{"132":{"tf":1.0}}},"2":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}},"3":{"2":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},">":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":43,"docs":{"105":{"tf":3.0},"127":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":2.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":2.449489742783178},"139":{"tf":2.23606797749979},"14":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"156":{"tf":1.0},"158":{"tf":2.8284271247461903},"16":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"169":{"tf":2.23606797749979},"170":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"195":{"tf":4.0},"196":{"tf":1.0},"197":{"tf":2.0},"199":{"tf":1.7320508075688772},"202":{"tf":1.7320508075688772},"203":{"tf":1.4142135623730951},"205":{"tf":2.0},"210":{"tf":2.23606797749979},"213":{"tf":2.23606797749979},"22":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"252":{"tf":2.0},"271":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"52":{"tf":2.0},"54":{"tf":2.0},"56":{"tf":2.0},"60":{"tf":3.4641016151377544},"69":{"tf":2.0},"73":{"tf":2.0},"84":{"tf":1.0}}},"df":1,"docs":{"132":{"tf":1.0}}},"6":{"4":{"df":2,"docs":{"176":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"8":{":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"d":{"d":{"(":{"2":{"5":{"1":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"22":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":2,"docs":{"251":{"tf":1.7320508075688772},"73":{"tf":3.1622776601683795}},"e":{"a":{"df":2,"docs":{"3":{"tf":1.0},"51":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"161":{"tf":1.0},"169":{"tf":2.0},"195":{"tf":1.0},"51":{"tf":1.0},"73":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"121":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"<":{"'":{"_":{"df":1,"docs":{"119":{"tf":1.0}}},"a":{"df":4,"docs":{"202":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{",":{"df":1,"docs":{"216":{"tf":1.0}}},"df":3,"docs":{"86":{"tf":1.0},"88":{"tf":1.0},"97":{"tf":2.0}}}},"df":47,"docs":{"100":{"tf":2.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":2.23606797749979},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"119":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"132":{"tf":2.0},"133":{"tf":1.7320508075688772},"134":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"200":{"tf":1.7320508075688772},"205":{"tf":1.0},"207":{"tf":1.0},"221":{"tf":1.7320508075688772},"226":{"tf":2.23606797749979},"227":{"tf":1.4142135623730951},"271":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"75":{"tf":1.7320508075688772},"77":{"tf":2.23606797749979},"78":{"tf":1.7320508075688772},"79":{"tf":2.23606797749979},"80":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"96":{"tf":2.23606797749979},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":55,"docs":{"102":{"tf":2.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":2.23606797749979},"109":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":2.6457513110645907},"128":{"tf":1.0},"132":{"tf":2.449489742783178},"133":{"tf":2.449489742783178},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"141":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.7320508075688772},"154":{"tf":2.23606797749979},"176":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"181":{"tf":2.6457513110645907},"182":{"tf":2.0},"183":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":1.0},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"219":{"tf":1.4142135623730951},"221":{"tf":1.7320508075688772},"222":{"tf":1.0},"226":{"tf":1.7320508075688772},"33":{"tf":1.0},"34":{"tf":1.0},"56":{"tf":1.4142135623730951},"60":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772},"96":{"tf":2.0},"97":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"91":{"tf":1.0}}},"df":3,"docs":{"106":{"tf":1.0},"91":{"tf":1.7320508075688772},"94":{"tf":1.0}}}}}}}}},"i":{"c":{"df":1,"docs":{"114":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"131":{"tf":1.0},"250":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"255":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"75":{"tf":1.0},"84":{"tf":1.7320508075688772}}},"y":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"<":{"'":{"a":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"196":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"153":{"tf":1.0},"176":{"tf":1.0},"200":{"tf":1.0},"227":{"tf":1.0},"249":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"105":{"tf":1.0},"197":{"tf":1.0},"227":{"tf":1.0},"248":{"tf":1.0}}}}}}},"n":{"(":{"\"":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"252":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":7,"docs":{"248":{"tf":1.0},"249":{"tf":1.7320508075688772},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"224":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"c":{"df":1,"docs":{"211":{"tf":1.7320508075688772}},"h":{"df":1,"docs":{"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"(":{"1":{"2":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":7,"docs":{"126":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"255":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"227":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"122":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"d":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"210":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"131":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"127":{"tf":1.0},"214":{"tf":1.0}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":11,"docs":{"114":{"tf":2.6457513110645907},"120":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"143":{"tf":1.4142135623730951},"183":{"tf":1.0},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"54":{"tf":1.0},"63":{"tf":1.0}}}},"i":{"c":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"251":{"tf":1.0},"254":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"125":{"tf":1.0},"210":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"51":{"tf":1.0},"60":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}}},"o":{"df":4,"docs":{"143":{"tf":1.4142135623730951},"206":{"tf":1.0},"58":{"tf":1.7320508075688772},"93":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"256":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"199":{"tf":1.7320508075688772},"57":{"tf":1.0}},"i":{"df":3,"docs":{"127":{"tf":1.0},"14":{"tf":1.0},"51":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"249":{"tf":1.0},"256":{"tf":1.0}}}}}},"df":1,"docs":{"249":{"tf":2.23606797749979}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"102":{"tf":1.0},"172":{"tf":1.7320508075688772},"246":{"tf":2.23606797749979},"247":{"tf":1.0},"248":{"tf":2.23606797749979},"249":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"251":{"tf":1.7320508075688772},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":2.23606797749979},"256":{"tf":2.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"66":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"66":{"tf":1.0}}},"df":1,"docs":{"105":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"_":{"a":{"b":{"c":{"d":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"251":{"tf":1.0}}}}}},"df":2,"docs":{"248":{"tf":1.4142135623730951},"249":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"<":{"'":{"a":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"197":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"195":{"tf":1.7320508075688772},"199":{"tf":1.0},"200":{"tf":2.449489742783178},"210":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"248":{"tf":3.0},"249":{"tf":1.7320508075688772},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"256":{"tf":1.0},"94":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"254":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"125":{"tf":1.7320508075688772},"128":{"tf":1.0},"247":{"tf":1.7320508075688772},"248":{"tf":1.7320508075688772},"252":{"tf":1.4142135623730951},"253":{"tf":1.0}}}}},"i":{"d":{"df":7,"docs":{"102":{"tf":1.0},"115":{"tf":1.0},"162":{"tf":1.0},"195":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.4142135623730951},"255":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}},"n":{"c":{"df":6,"docs":{"213":{"tf":1.0},"57":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"255":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":17,"docs":{"102":{"tf":1.0},"114":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.7320508075688772},"146":{"tf":1.0},"172":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"247":{"tf":1.7320508075688772},"248":{"tf":2.0},"249":{"tf":1.0},"250":{"tf":2.449489742783178},"251":{"tf":2.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":2,"docs":{"126":{"tf":1.0},"131":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":11,"docs":{"124":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"199":{"tf":1.0},"22":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"60":{"tf":1.0},"75":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"r":{"df":2,"docs":{"152":{"tf":1.0},"261":{"tf":1.7320508075688772}}}},"l":{"df":2,"docs":{"254":{"tf":1.0},"255":{"tf":1.0}}},"n":{"d":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":2,"docs":{"208":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"<":{"'":{"a":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":4,"docs":{"10":{"tf":1.0},"115":{"tf":1.0},"127":{"tf":1.4142135623730951},"153":{"tf":1.0}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.7320508075688772},"255":{"tf":1.0}}}}}}}},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"218":{"tf":1.0},"220":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":7,"docs":{"129":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"19":{"tf":1.0},"205":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"<":{"'":{"a":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"139":{"tf":1.0},"195":{"tf":1.0},"200":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"139":{"tf":1.0},"247":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":3,"docs":{"109":{"tf":1.0},"226":{"tf":1.0},"88":{"tf":1.0}}}}}}},"o":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"133":{"tf":1.0},"146":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"177":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"p":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"d":{"d":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"v":{"4":{"(":{"\"":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"(":{"\"":{":":{":":{"1":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":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":{"123":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"123":{"tf":1.0}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"194":{"tf":1.0}}}}}}}},"s":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"91":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"c":{"(":{"&":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"118":{"tf":1.0}}},"df":1,"docs":{"118":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"89":{"tf":1.7320508075688772}}}}}},"t":{"'":{"df":15,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"174":{"tf":1.0},"200":{"tf":1.7320508075688772},"251":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":11,"docs":{"122":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"158":{"tf":1.0},"164":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"223":{"tf":1.0},"95":{"tf":1.0}}},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":2.0}}}}}},"df":14,"docs":{"114":{"tf":1.4142135623730951},"119":{"tf":1.0},"183":{"tf":1.4142135623730951},"217":{"tf":2.449489742783178},"218":{"tf":2.8284271247461903},"219":{"tf":2.23606797749979},"220":{"tf":3.0},"221":{"tf":3.1622776601683795},"222":{"tf":2.0},"223":{"tf":2.449489742783178},"224":{"tf":3.1622776601683795},"63":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"132":{"tf":1.0},"251":{"tf":1.0},"56":{"tf":1.0}}}}}},"":{"df":4,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.0}}}}},"j":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"190":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"176":{"tf":1.0}}}}},"df":1,"docs":{"158":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"48":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"255":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"255":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"248":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"169":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"246":{"tf":1.0}}}}}},"y":{"df":3,"docs":{"124":{"tf":2.0},"125":{"tf":1.4142135623730951},"126":{"tf":2.449489742783178}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":7,"docs":{"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"213":{"tf":1.0},"64":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"248":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":9,"docs":{"102":{"tf":2.0},"176":{"tf":1.0},"195":{"tf":1.0},"204":{"tf":1.0},"249":{"tf":1.0},"53":{"tf":1.0},"88":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"204":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"n":{"df":6,"docs":{"117":{"tf":1.0},"197":{"tf":1.0},"224":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"88":{"tf":1.0}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"255":{"tf":3.4641016151377544},"66":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"260":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"108":{"tf":1.4142135623730951},"12":{"tf":1.0},"253":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"124":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"105":{"tf":1.0},"132":{"tf":1.0},"204":{"tf":1.0},"64":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"249":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"249":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"199":{"tf":1.0},"213":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.4142135623730951}}}}}},"z":{"df":0,"docs":{},"i":{"df":2,"docs":{"176":{"tf":1.0},"224":{"tf":1.0}}}}},"df":1,"docs":{"253":{"tf":1.0}},"e":{"a":{"d":{"df":2,"docs":{"255":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":18,"docs":{"11":{"tf":1.0},"110":{"tf":1.0},"130":{"tf":1.0},"140":{"tf":1.0},"150":{"tf":1.0},"192":{"tf":1.0},"195":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"270":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"42":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0}}}},"v":{"df":3,"docs":{"127":{"tf":1.4142135623730951},"195":{"tf":1.0},"220":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":5,"docs":{"143":{"tf":1.4142135623730951},"187":{"tf":1.7320508075688772},"19":{"tf":1.0},"226":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"253":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"d":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"115":{"tf":2.0},"143":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"115":{"tf":1.7320508075688772},"122":{"tf":2.0},"188":{"tf":1.0},"228":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"115":{"tf":1.0},"131":{"tf":1.0}}}},"t":{"'":{"df":5,"docs":{"125":{"tf":1.0},"153":{"tf":1.4142135623730951},"168":{"tf":1.0},"204":{"tf":1.0},"256":{"tf":1.0}}},"df":4,"docs":{"125":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"&":{"'":{"a":{"df":1,"docs":{"196":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"148":{"tf":1.0},"246":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"204":{"tf":2.0}}},"df":0,"docs":{}}}},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":7,"docs":{"151":{"tf":1.0},"153":{"tf":1.7320508075688772},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"129":{"tf":1.4142135623730951},"164":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":21,"docs":{"109":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":2.6457513110645907},"153":{"tf":1.7320508075688772},"155":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"169":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.4142135623730951},"176":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"268":{"tf":1.7320508075688772},"269":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":20,"docs":{"139":{"tf":1.4142135623730951},"192":{"tf":1.7320508075688772},"193":{"tf":2.23606797749979},"194":{"tf":2.8284271247461903},"195":{"tf":5.196152422706632},"196":{"tf":1.7320508075688772},"197":{"tf":2.23606797749979},"198":{"tf":1.7320508075688772},"199":{"tf":3.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.7320508075688772},"202":{"tf":2.8284271247461903},"203":{"tf":2.449489742783178},"204":{"tf":3.0},"205":{"tf":1.0},"206":{"tf":2.0},"207":{"tf":1.0},"208":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"77":{"tf":1.7320508075688772},"78":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"127":{"tf":1.4142135623730951},"251":{"tf":1.0},"48":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"98":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":45,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0},"128":{"tf":1.0},"141":{"tf":1.4142135623730951},"143":{"tf":1.0},"146":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"16":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"169":{"tf":2.449489742783178},"17":{"tf":1.0},"176":{"tf":1.0},"194":{"tf":1.0},"212":{"tf":1.0},"248":{"tf":1.0},"271":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.4142135623730951},"7":{"tf":1.7320508075688772},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"8":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"k":{"df":4,"docs":{"132":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"60":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"255":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"!":{"[":{"1":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"208":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"1":{"df":1,"docs":{"60":{"tf":1.0}}},"2":{"df":1,"docs":{"60":{"tf":1.0}}},"3":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"60":{"tf":1.0}}}}}}}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"!":{"[":{"1":{",":{"2":{",":{"3":{",":{"4":{",":{"5":{",":{"6":{",":{"7":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"208":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"156":{"tf":1.0},"176":{"tf":1.0},"183":{"tf":1.0},"208":{"tf":1.7320508075688772},"24":{"tf":1.0},"247":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"271":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"60":{"tf":4.69041575982343}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"113":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.0},"199":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"195":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"251":{"tf":1.4142135623730951},"255":{"tf":1.0}}}}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"254":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"1":{"tf":1.7320508075688772},"105":{"tf":1.0},"109":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.4142135623730951}}},"t":{"df":2,"docs":{"249":{"tf":1.0},"254":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"250":{"tf":2.0}},"g":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"217":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}}}},"df":9,"docs":{"124":{"tf":1.0},"195":{"tf":2.0},"199":{"tf":1.0},"200":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"54":{"tf":1.4142135623730951},"71":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"195":{"tf":2.23606797749979},"199":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"220":{"tf":1.0},"97":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"195":{"tf":1.0}}}},"<":{"'":{"a":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"194":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"k":{"df":11,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0},"181":{"tf":1.0},"248":{"tf":1.0},"3":{"tf":1.0},"56":{"tf":1.0},"70":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"102":{"tf":1.0},"124":{"tf":1.0}}}}},"p":{"df":6,"docs":{"115":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":4.0}}}},"t":{"df":2,"docs":{"144":{"tf":1.0},"2":{"tf":1.0}}},"w":{"df":2,"docs":{"246":{"tf":1.0},"253":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"127":{"tf":1.4142135623730951},"131":{"tf":1.0},"211":{"tf":1.0},"250":{"tf":1.0},"270":{"tf":1.0}}}}}},"s":{"df":1,"docs":{"7":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"255":{"tf":1.4142135623730951}}}}},"m":{"1":{".":{"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":{},"v":{"1":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"128":{"tf":1.0}}},"2":{".":{"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":{},"v":{"2":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"128":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"139":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":5,"docs":{"118":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.7320508075688772}},"s":{"]":{"[":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"177":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"115":{"tf":1.0},"255":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":4,"docs":{"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0}}}},"1":{"df":1,"docs":{"152":{"tf":1.0}}},"2":{"df":1,"docs":{"152":{"tf":1.0}}},"df":153,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":2.449489742783178},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":2.6457513110645907},"15":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"16":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"181":{"tf":1.7320508075688772},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":2.8284271247461903},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"199":{"tf":2.0},"200":{"tf":1.7320508075688772},"202":{"tf":2.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":2.0},"212":{"tf":1.0},"213":{"tf":2.449489742783178},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":2.0},"219":{"tf":1.0},"22":{"tf":2.449489742783178},"220":{"tf":1.7320508075688772},"221":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"226":{"tf":2.0},"227":{"tf":1.0},"228":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"230":{"tf":2.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"251":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"271":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"36":{"tf":2.8284271247461903},"37":{"tf":1.7320508075688772},"39":{"tf":2.449489742783178},"40":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":2.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":2.449489742783178},"52":{"tf":1.7320508075688772},"53":{"tf":1.7320508075688772},"54":{"tf":2.449489742783178},"56":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":2.449489742783178},"62":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"72":{"tf":1.0},"73":{"tf":2.449489742783178},"75":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":2.0},"86":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":2.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.7320508075688772},"99":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"127":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":82,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"108":{"tf":1.0},"115":{"tf":1.0},"122":{"tf":1.4142135623730951},"126":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0},"16":{"tf":1.4142135623730951},"163":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":2.0},"182":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":2.0},"196":{"tf":1.0},"199":{"tf":2.449489742783178},"200":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":2.23606797749979},"220":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"230":{"tf":2.0},"24":{"tf":1.4142135623730951},"248":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"32":{"tf":1.0},"36":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"47":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.4142135623730951},"8":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"208":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"<":{"'":{"a":{"df":1,"docs":{"208":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":8,"docs":{"113":{"tf":1.0},"152":{"tf":1.4142135623730951},"176":{"tf":1.0},"251":{"tf":1.0},"256":{"tf":1.0},"36":{"tf":1.0},"47":{"tf":1.0},"94":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"213":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"195":{"tf":1.0},"213":{"tf":1.0},"254":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"251":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"x":{"df":1,"docs":{"137":{"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":{"(":{"1":{"df":1,"docs":{"127":{"tf":1.0}}},"3":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"(":{"5":{"0":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"124":{"tf":1.0},"127":{"tf":1.7320508075688772},"147":{"tf":2.23606797749979}}},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"164":{"tf":1.0}}}}}},"df":3,"docs":{"14":{"tf":1.0},"252":{"tf":1.0},"57":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"176":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":20,"docs":{"134":{"tf":1.0},"142":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":2.0},"148":{"tf":1.0},"149":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.0},"227":{"tf":1.0},"34":{"tf":1.7320508075688772},"48":{"tf":1.0},"60":{"tf":2.8284271247461903},"67":{"tf":1.7320508075688772},"68":{"tf":2.23606797749979},"69":{"tf":3.4641016151377544},"70":{"tf":2.8284271247461903},"71":{"tf":2.8284271247461903},"72":{"tf":2.23606797749979},"73":{"tf":4.358898943540674},"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"131":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"y":{"b":{"df":5,"docs":{"114":{"tf":1.0},"132":{"tf":1.0},"154":{"tf":1.0},"181":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":1,"docs":{"88":{"tf":2.449489742783178}},"e":{"a":{"df":0,"docs":{},"n":{"df":10,"docs":{"132":{"tf":1.0},"144":{"tf":1.0},"200":{"tf":1.4142135623730951},"251":{"tf":1.0},"256":{"tf":1.7320508075688772},"37":{"tf":1.0},"47":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"89":{"tf":1.0}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"169":{"tf":2.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"132":{"tf":1.0},"141":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"124":{"tf":1.0},"2":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}},"m":{":":{":":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"213":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"54":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"115":{"tf":1.0},"131":{"tf":1.0},"199":{"tf":1.4142135623730951},"254":{"tf":2.23606797749979},"256":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"45":{"tf":1.0},"88":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"132":{"tf":1.0},"220":{"tf":1.0},"94":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"141":{"tf":1.0},"147":{"tf":1.0},"239":{"tf":1.7320508075688772},"60":{"tf":2.0},"69":{"tf":1.4142135623730951},"73":{"tf":1.0},"8":{"tf":1.0}},"e":{":":{":":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"2":{"5":{"5":{",":{"2":{"5":{"5":{",":{"0":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"73":{"tf":2.0}}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"69":{"tf":1.0}},"e":{"df":0,"docs":{},"{":{"_":{"_":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{":":{"1":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"60":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"_":{"_":{"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":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"226":{"tf":2.23606797749979},"227":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}},"s":{"(":{"2":{"0":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":1,"docs":{"226":{"tf":1.0}}},"u":{"3":{"2":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"o":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"102":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":34,"docs":{"102":{"tf":2.0},"103":{"tf":1.0},"107":{"tf":2.449489742783178},"114":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"118":{"tf":1.0},"125":{"tf":1.0},"131":{"tf":1.4142135623730951},"133":{"tf":1.7320508075688772},"134":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"196":{"tf":1.7320508075688772},"207":{"tf":1.0},"219":{"tf":2.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.7320508075688772},"223":{"tf":2.0},"224":{"tf":1.0},"226":{"tf":1.4142135623730951},"45":{"tf":1.0},"60":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"75":{"tf":3.0},"76":{"tf":1.0},"77":{"tf":2.8284271247461903},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"91":{"tf":2.23606797749979},"94":{"tf":1.7320508075688772}},"":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.7320508075688772}},"m":{"df":1,"docs":{"10":{"tf":1.0}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"88":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"[":{"6":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{":":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"`":{"'":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"176":{"tf":1.0}}}},"x":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}}}},"o":{"d":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"154":{"tf":1.0},"155":{"tf":1.0}}}},"df":7,"docs":{"131":{"tf":1.0},"153":{"tf":1.7320508075688772},"154":{"tf":2.0},"158":{"tf":1.7320508075688772},"168":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0}},"e":{"df":1,"docs":{"251":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0}},"i":{"df":30,"docs":{"115":{"tf":1.0},"131":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.7320508075688772},"211":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"24":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.7320508075688772},"253":{"tf":2.6457513110645907},"29":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"37":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"l":{"df":14,"docs":{"148":{"tf":1.4142135623730951},"150":{"tf":1.7320508075688772},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":3.3166247903554},"154":{"tf":2.23606797749979},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":2.449489742783178},"170":{"tf":1.0},"45":{"tf":1.0}},"u":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"181":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"!":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":26,"docs":{"105":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"143":{"tf":1.0},"147":{"tf":1.0},"176":{"tf":1.7320508075688772},"181":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"53":{"tf":1.0},"88":{"tf":1.4142135623730951},"93":{"tf":1.0},"98":{"tf":1.0}},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"255":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"211":{"tf":2.0}}}},"df":0,"docs":{}},"df":4,"docs":{"248":{"tf":1.4142135623730951},"251":{"tf":2.0},"253":{"tf":1.0},"255":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}},"t":{"df":0,"docs":{},"o":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"205":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":16,"docs":{"105":{"tf":1.0},"112":{"tf":1.0},"121":{"tf":1.0},"128":{"tf":1.4142135623730951},"139":{"tf":1.0},"211":{"tf":1.7320508075688772},"213":{"tf":2.449489742783178},"215":{"tf":1.4142135623730951},"220":{"tf":1.0},"251":{"tf":1.0},"37":{"tf":3.1622776601683795},"45":{"tf":1.0},"59":{"tf":3.1622776601683795},"60":{"tf":1.7320508075688772},"63":{"tf":1.0},"69":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"g":{"1":{"df":1,"docs":{"60":{"tf":1.0}}},"2":{"df":1,"docs":{"60":{"tf":1.0}}},"df":3,"docs":{"60":{"tf":2.449489742783178},"69":{"tf":2.0},"73":{"tf":1.4142135623730951}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"105":{"tf":1.0},"127":{"tf":1.4142135623730951},"147":{"tf":1.0},"156":{"tf":1.0},"215":{"tf":1.0},"47":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"l":{"(":{"a":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"250":{"tf":2.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":11,"docs":{"107":{"tf":1.4142135623730951},"156":{"tf":1.0},"195":{"tf":1.0},"224":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":2.0},"47":{"tf":1.0},"79":{"tf":2.0},"98":{"tf":1.0}},"i":{"df":5,"docs":{"146":{"tf":1.0},"147":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"y":{"(":{"\"":{"1":{"0":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"147":{"tf":1.0}}}},"1":{".":{"0":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"148":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"n":{"1":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"(":{"\"":{"1":{"0":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"1":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":14,"docs":{"121":{"tf":1.4142135623730951},"125":{"tf":1.0},"14":{"tf":1.7320508075688772},"18":{"tf":1.0},"195":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.7320508075688772},"220":{"tf":1.0},"36":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"41":{"tf":1.0},"57":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":2.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.4142135623730951},"213":{"tf":1.0}}}},"df":60,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":2.23606797749979},"122":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"131":{"tf":1.7320508075688772},"139":{"tf":3.3166247903554},"14":{"tf":1.0},"146":{"tf":1.7320508075688772},"156":{"tf":1.0},"16":{"tf":1.0},"183":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":3.7416573867739413},"205":{"tf":2.23606797749979},"208":{"tf":2.0},"211":{"tf":2.23606797749979},"213":{"tf":2.6457513110645907},"215":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":2.0},"221":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"24":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"253":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":2.0},"40":{"tf":2.23606797749979},"41":{"tf":2.449489742783178},"45":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"70":{"tf":1.0},"73":{"tf":2.0},"75":{"tf":1.7320508075688772},"91":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"y":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"165":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"167":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"1":{"3":{"_":{"df":0,"docs":{},"u":{"3":{"2":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"a":{"b":{"c":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"228":{"tf":1.0}}},"x":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"132":{"tf":1.0},"48":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"70":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":2.0}}}}},"df":0,"docs":{}}}}},"n":{"+":{"=":{"1":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"_":{"_":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{":":{":":{"<":{"df":0,"docs":{},"i":{"3":{"2":{"df":2,"docs":{"145":{"tf":1.0},"147":{"tf":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":{"145":{"tf":1.0}}},"2":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"145":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{":":{":":{"<":{"df":0,"docs":{},"i":{"3":{"2":{"df":2,"docs":{"145":{"tf":1.0},"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":3,"docs":{"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951}}}}}},"df":2,"docs":{"145":{"tf":1.0},"147":{"tf":1.0}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{":":{":":{"<":{"df":0,"docs":{},"i":{"3":{"2":{">":{"(":{")":{".":{"_":{"_":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"91":{"tf":1.7320508075688772}}}},"m":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"108":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"0":{"df":1,"docs":{"51":{"tf":1.0}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"251":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"251":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":39,"docs":{"107":{"tf":2.0},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":2.0},"153":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"16":{"tf":1.0},"176":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"190":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"210":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":2.23606797749979},"223":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":1.7320508075688772},"253":{"tf":2.23606797749979},"255":{"tf":1.4142135623730951},"37":{"tf":2.449489742783178},"51":{"tf":1.0},"56":{"tf":2.449489742783178},"57":{"tf":1.7320508075688772},"59":{"tf":2.8284271247461903},"63":{"tf":2.23606797749979},"72":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"91":{"tf":1.7320508075688772},"95":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"210":{"tf":1.0}}}}}},"s":{".":{"_":{"_":{"df":1,"docs":{"220":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"0":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"_":{"_":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"[":{"2":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"df":1,"docs":{"131":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"170":{"tf":1.7320508075688772}}}}}},"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.7320508075688772}}}}}}},"df":19,"docs":{"119":{"tf":1.0},"134":{"tf":1.7320508075688772},"147":{"tf":1.0},"148":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"271":{"tf":1.4142135623730951},"51":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":3.4641016151377544},"63":{"tf":2.0},"64":{"tf":2.449489742783178},"65":{"tf":2.23606797749979},"73":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":3.3166247903554},"89":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"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":5,"docs":{"108":{"tf":1.0},"246":{"tf":1.0},"252":{"tf":1.0},"36":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"199":{"tf":1.0}}},"v":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":68,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"123":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"137":{"tf":1.0},"139":{"tf":1.0},"144":{"tf":1.4142135623730951},"149":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.4142135623730951},"191":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"216":{"tf":1.0},"224":{"tf":1.0},"230":{"tf":1.0},"248":{"tf":1.4142135623730951},"25":{"tf":1.0},"251":{"tf":2.449489742783178},"253":{"tf":1.4142135623730951},"256":{"tf":1.0},"271":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"g":{"df":1,"docs":{"62":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"162":{"tf":1.0},"66":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}}}}}},"df":4,"docs":{"195":{"tf":1.0},"200":{"tf":1.0},"251":{"tf":1.0},"34":{"tf":1.0}}}}},"w":{"(":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"126":{"tf":1.0},"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"216":{"tf":1.0}}}}}}},"x":{"df":2,"docs":{"75":{"tf":1.0},"97":{"tf":1.0}}}},"df":24,"docs":{"109":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"164":{"tf":1.4142135623730951},"167":{"tf":1.0},"168":{"tf":1.0},"195":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"230":{"tf":1.0},"271":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.4142135623730951},"72":{"tf":2.0},"78":{"tf":1.4142135623730951},"92":{"tf":1.0}},"i":{"d":{"@":{"1":{"0":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"177":{"tf":1.4142135623730951},"248":{"tf":1.0},"45":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":5,"docs":{"109":{"tf":1.4142135623730951},"225":{"tf":1.7320508075688772},"226":{"tf":2.23606797749979},"227":{"tf":1.4142135623730951},"228":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"219":{"tf":1.0},"221":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":7,"docs":{"168":{"tf":1.0},"219":{"tf":1.7320508075688772},"221":{"tf":2.0},"223":{"tf":1.0},"3":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"223":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"60":{"tf":2.449489742783178}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"195":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"204":{"tf":2.0},"205":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951}}}},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"173":{"tf":1.4142135623730951}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"195":{"tf":2.6457513110645907}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"91":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"256":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"206":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":5,"docs":{"114":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.7320508075688772},"213":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":10,"docs":{"142":{"tf":1.0},"17":{"tf":1.0},"199":{"tf":1.0},"211":{"tf":1.0},"216":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"34":{"tf":1.0},"60":{"tf":1.4142135623730951},"73":{"tf":1.0},"97":{"tf":2.0}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"208":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"p":{"df":1,"docs":{"247":{"tf":1.0}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"44":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":1.7320508075688772}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"256":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":17,"docs":{"121":{"tf":1.0},"126":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"162":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"213":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"250":{"tf":1.0},"48":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0}}},"h":{"df":4,"docs":{"107":{"tf":1.0},"162":{"tf":1.0},"213":{"tf":1.0},"248":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"w":{"df":13,"docs":{"125":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"162":{"tf":1.0},"181":{"tf":1.0},"19":{"tf":1.0},"205":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"248":{"tf":1.0},"52":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"113":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.0}}}},"m":{"(":{"df":0,"docs":{},"i":{"3":{"2":{"df":2,"docs":{"195":{"tf":1.0},"197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"60":{"tf":1.0}}},"2":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"60":{"tf":1.0}}},"=":{"1":{"df":2,"docs":{"176":{"tf":1.4142135623730951},"187":{"tf":1.0}}},"df":0,"docs":{}},"_":{"1":{"df":1,"docs":{"105":{"tf":2.0}}},"2":{"df":1,"docs":{"105":{"tf":2.449489742783178}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{":":{":":{"<":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"149":{"tf":1.0}}}}}},"df":23,"docs":{"105":{"tf":2.0},"115":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.7320508075688772},"137":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"176":{"tf":2.0},"187":{"tf":1.0},"195":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"222":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"248":{"tf":1.0},"25":{"tf":1.0},"255":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":2.0},"73":{"tf":1.4142135623730951}}}}},"df":5,"docs":{"133":{"tf":1.7320508075688772},"139":{"tf":2.0},"199":{"tf":2.23606797749979},"215":{"tf":2.449489742783178},"73":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"255":{"tf":1.7320508075688772}}}},"s":{".":{"0":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"176":{"tf":1.0}}}}},"df":0,"docs":{}},"df":13,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"102":{"tf":2.23606797749979},"103":{"tf":2.449489742783178},"123":{"tf":1.0},"176":{"tf":1.0},"40":{"tf":1.4142135623730951},"52":{"tf":1.0},"75":{"tf":2.23606797749979},"77":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":2.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"256":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"251":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"51":{"tf":1.0},"52":{"tf":1.0}}}},"r":{"df":9,"docs":{"102":{"tf":1.0},"122":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.0},"37":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"189":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":2,"docs":{"248":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"197":{"tf":1.0}}}},"df":0,"docs":{}}}},"h":{"df":2,"docs":{"100":{"tf":1.0},"99":{"tf":1.0}}},"k":{"(":{"_":{"df":1,"docs":{"146":{"tf":1.0}}},"a":{"df":1,"docs":{"169":{"tf":1.0}}},"df":1,"docs":{"146":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"8":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"146":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"n":{"1":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"145":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"147":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"147":{"tf":1.0}}},"df":3,"docs":{"134":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"149":{"tf":1.0}}},"df":1,"docs":{"133":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"145":{"tf":1.0}}}},"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"75":{"tf":1.0},"88":{"tf":2.0}}}},"df":5,"docs":{"145":{"tf":1.0},"149":{"tf":1.0},"169":{"tf":3.3166247903554},"204":{"tf":1.0},"40":{"tf":1.0}}},"l":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"(":{"&":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"226":{"tf":1.0}},"e":{"_":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"226":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"226":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"125":{"tf":1.0},"143":{"tf":1.0},"197":{"tf":1.0}}}}},"n":{"c":{"df":5,"docs":{"220":{"tf":1.0},"248":{"tf":1.0},"255":{"tf":1.0},"41":{"tf":1.0},"51":{"tf":1.0}}},"df":33,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"125":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.4142135623730951},"146":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"165":{"tf":1.0},"17":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.0},"195":{"tf":2.0},"199":{"tf":1.0},"200":{"tf":1.0},"210":{"tf":1.7320508075688772},"213":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"248":{"tf":1.0},"255":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"87":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.4142135623730951},"12":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"122":{"tf":1.4142135623730951},"256":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"200":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"166":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"248":{"tf":1.0},"249":{"tf":1.7320508075688772},"250":{"tf":3.1622776601683795},"252":{"tf":1.7320508075688772},"253":{"tf":1.4142135623730951},"254":{"tf":2.0},"255":{"tf":1.0},"256":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"a":{"d":{"d":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":13,"docs":{"112":{"tf":1.4142135623730951},"114":{"tf":1.0},"118":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"183":{"tf":2.0},"247":{"tf":1.0},"25":{"tf":1.0},"50":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"9":{"tf":1.0},"94":{"tf":2.8284271247461903}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"251":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"s":{":":{":":{"a":{"d":{"d":{"<":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"102":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"249":{"tf":1.0},"256":{"tf":2.0}}},"o":{"df":0,"docs":{},"n":{"<":{"&":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}},"t":{"df":1,"docs":{"51":{"tf":1.0}}},"u":{"8":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":1,"docs":{"216":{"tf":1.0}},"i":{"3":{"2":{"df":3,"docs":{"170":{"tf":1.4142135623730951},"34":{"tf":1.0},"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"219":{"tf":1.0},"221":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":2,"docs":{"147":{"tf":1.0},"60":{"tf":1.0}}},"u":{"3":{"2":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":4,"docs":{"170":{"tf":1.4142135623730951},"176":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":2.449489742783178}},"s":{"(":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"255":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"254":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"256":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"248":{"tf":1.0},"251":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"153":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"124":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.4142135623730951},"226":{"tf":1.0},"251":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"109":{"tf":1.7320508075688772},"226":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":1,"docs":{"9":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"0":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}}}}},"i":{"df":1,"docs":{"106":{"tf":1.0}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"79":{"tf":1.0}}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":9,"docs":{"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"180":{"tf":1.0},"191":{"tf":1.4142135623730951},"250":{"tf":1.0},"71":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"246":{"tf":1.0},"255":{"tf":1.0},"77":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"x":{"df":1,"docs":{"251":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"252":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"248":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"255":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"145":{"tf":1.4142135623730951}}}}},"df":23,"docs":{"107":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"121":{"tf":1.0},"131":{"tf":1.0},"141":{"tf":1.4142135623730951},"143":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":2.0},"172":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.0},"199":{"tf":1.0},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"250":{"tf":1.4142135623730951},"34":{"tf":1.0},"37":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":2.449489742783178}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"195":{"tf":1.7320508075688772},"202":{"tf":2.23606797749979}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"124":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":29,"docs":{"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"176":{"tf":2.449489742783178},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"226":{"tf":1.0},"24":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":2.8284271247461903},"249":{"tf":2.0},"250":{"tf":1.0},"251":{"tf":2.23606797749979},"252":{"tf":1.0},"256":{"tf":1.4142135623730951},"39":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"153":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{",":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"105":{"tf":1.0},"2":{"tf":1.0}}}},"df":15,"docs":{"111":{"tf":1.0},"114":{"tf":1.0},"139":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.4142135623730951},"60":{"tf":1.0},"65":{"tf":1.0},"87":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"131":{"tf":1.7320508075688772},"142":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"253":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"124":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"249":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"128":{"tf":1.0},"200":{"tf":1.7320508075688772},"213":{"tf":1.0},"75":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"1":{"8":{"df":1,"docs":{"196":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"3":{"2":{"df":2,"docs":{"196":{"tf":1.0},"197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"196":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"196":{"tf":1.0}}}}}}}},"df":3,"docs":{"128":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":14,"docs":{"111":{"tf":1.0},"128":{"tf":1.7320508075688772},"220":{"tf":1.0},"223":{"tf":1.0},"35":{"tf":1.7320508075688772},"36":{"tf":2.23606797749979},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}}}}}}}},"p":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"1":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"p":{"2":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"131":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"86":{"tf":1.0}}},"2":{"df":3,"docs":{"131":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"86":{"tf":1.0}}},"3":{"df":1,"docs":{"86":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"151":{"tf":3.4641016151377544},"152":{"tf":4.0},"153":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"159":{"tf":1.0},"164":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.0}},"e":{"1":{"df":2,"docs":{"151":{"tf":1.0},"152":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":3,"docs":{"176":{"tf":1.0},"187":{"tf":2.6457513110645907},"189":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"172":{"tf":1.0},"173":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"1":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"75":{"tf":1.0}}},"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":{"75":{"tf":1.0}}}}}}}},".":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.7320508075688772}}}},"df":4,"docs":{"47":{"tf":1.0},"75":{"tf":2.23606797749979},"88":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"i":{"c":{"!":{"(":{"\"":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"60":{"tf":1.4142135623730951},"63":{"tf":1.0}}}}},"w":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"0":{"tf":1.0},"121":{"tf":1.0},"140":{"tf":1.7320508075688772},"141":{"tf":2.449489742783178},"142":{"tf":2.8284271247461903},"143":{"tf":2.23606797749979},"144":{"tf":2.0},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"169":{"tf":2.0},"22":{"tf":1.0},"34":{"tf":1.0},"51":{"tf":1.0},"60":{"tf":1.0}},"k":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":12,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":2.0},"195":{"tf":1.0},"203":{"tf":1.0},"213":{"tf":2.0},"77":{"tf":2.23606797749979},"78":{"tf":1.0},"84":{"tf":2.23606797749979},"88":{"tf":3.0},"95":{"tf":2.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.0},"153":{"tf":1.0},"37":{"tf":1.0},"59":{"tf":1.0}}}}},"s":{"df":3,"docs":{"137":{"tf":2.23606797749979},"164":{"tf":1.0},"177":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"137":{"tf":1.0},"147":{"tf":2.0},"148":{"tf":1.0},"149":{"tf":1.0}}}}}}}}}}}},"t":{"df":12,"docs":{"132":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.4142135623730951},"202":{"tf":1.0},"248":{"tf":1.0},"37":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"73":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"37":{"tf":2.23606797749979},"59":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"q":{"<":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":4,"docs":{"106":{"tf":1.0},"123":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"93":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"248":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"148":{"tf":1.0},"248":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"129":{"tf":2.0}}}}},"s":{"df":0,"docs":{},"s":{"<":{"'":{"a":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"197":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"x":{"(":{"&":{"df":0,"docs":{},"x":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}},"<":{"'":{"a":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":11,"docs":{"121":{"tf":1.0},"169":{"tf":2.23606797749979},"195":{"tf":1.4142135623730951},"200":{"tf":2.0},"239":{"tf":1.7320508075688772},"254":{"tf":1.0},"256":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0},"97":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":42,"docs":{"103":{"tf":1.0},"109":{"tf":1.0},"116":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.7320508075688772},"155":{"tf":1.0},"159":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":1.0},"216":{"tf":1.0},"224":{"tf":1.0},"230":{"tf":1.0},"25":{"tf":1.0},"271":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":19,"docs":{"109":{"tf":1.0},"147":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.4142135623730951},"217":{"tf":1.0},"226":{"tf":1.0},"37":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":2.8284271247461903}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"91":{"tf":1.0}}}}},"df":8,"docs":{"137":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"39":{"tf":2.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"73":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"176":{"tf":1.0}},"e":{"df":0,"docs":{},"":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":9,"docs":{"124":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"133":{"tf":1.0},"217":{"tf":1.0},"224":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.0},"88":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":2,"docs":{"37":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772}}},".":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"37":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"<":{"'":{"a":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"107":{"tf":1.0},"108":{"tf":2.0},"181":{"tf":2.23606797749979},"190":{"tf":1.4142135623730951},"37":{"tf":3.3166247903554},"56":{"tf":1.4142135623730951},"57":{"tf":2.23606797749979},"59":{"tf":3.3166247903554}}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}}},"n":{"df":1,"docs":{"266":{"tf":1.7320508075688772}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":9,"docs":{"102":{"tf":1.0},"152":{"tf":1.0},"168":{"tf":1.0},"183":{"tf":1.0},"186":{"tf":1.0},"220":{"tf":1.0},"255":{"tf":1.4142135623730951},"34":{"tf":1.0},"72":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.0}}}},"y":{"df":1,"docs":{"47":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"s":{"df":8,"docs":{"131":{"tf":1.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"169":{"tf":1.0},"197":{"tf":1.0},"202":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"177":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"60":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"x":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"8":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"_":{"_":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"d":{"df":1,"docs":{"182":{"tf":2.0}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"1":{".":{"0":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"f":{"3":{"2":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":3,"docs":{"106":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.7320508075688772}}}},"df":19,"docs":{"106":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"115":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"136":{"tf":2.23606797749979},"137":{"tf":1.7320508075688772},"182":{"tf":1.0},"188":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":2.0},"23":{"tf":1.4142135623730951},"47":{"tf":1.0},"73":{"tf":2.23606797749979},"75":{"tf":3.7416573867739413},"85":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"102":{"tf":1.0},"115":{"tf":1.4142135623730951},"131":{"tf":1.0},"139":{"tf":2.449489742783178},"191":{"tf":1.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"251":{"tf":1.4142135623730951},"252":{"tf":1.0},"256":{"tf":1.4142135623730951},"52":{"tf":1.0},"60":{"tf":1.0}}}},"{":{"df":0,"docs":{},"x":{"df":2,"docs":{"85":{"tf":1.0},"86":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"127":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":1,"docs":{"251":{"tf":2.0}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"10":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"139":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"124":{"tf":1.0},"250":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"131":{"tf":1.0},"176":{"tf":1.0},"185":{"tf":1.4142135623730951},"62":{"tf":1.0},"96":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":19,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":2.0},"144":{"tf":1.0},"145":{"tf":1.0},"195":{"tf":1.0},"203":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.7320508075688772},"219":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"39":{"tf":1.0},"66":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"9":{"tf":1.0},"95":{"tf":2.449489742783178}}}},"w":{"df":1,"docs":{"226":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"170":{"tf":1.0},"98":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":8,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.7320508075688772},"115":{"tf":1.0},"151":{"tf":1.0},"164":{"tf":1.0},"2":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"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":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"126":{"tf":1.0},"188":{"tf":1.7320508075688772},"190":{"tf":1.0},"3":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"211":{"tf":1.0},"213":{"tf":1.0},"60":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"189":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":1.0},"147":{"tf":1.0},"169":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"227":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.7320508075688772}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"y":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"102":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"115":{"tf":1.0},"173":{"tf":1.0},"60":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":8,"docs":{"153":{"tf":1.0},"16":{"tf":1.0},"162":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"256":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0}},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"8":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"131":{"tf":1.0},"2":{"tf":1.0},"246":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"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":0,"docs":{},"y":{"(":{"\"":{"1":{"0":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"x":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"147":{"tf":1.0},"148":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"147":{"tf":1.0}}}}}}}}},"<":{"'":{"a":{">":{"(":{"&":{"'":{"a":{"df":2,"docs":{"196":{"tf":1.0},"197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"a":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"<":{"_":{"_":{">":{"(":{"_":{"_":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"b":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"b":{"df":1,"docs":{"230":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"(":{"c":{"1":{"df":1,"docs":{"27":{"tf":1.0}}},"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"g":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"i":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"200":{"tf":1.0}}}},"1":{"(":{"&":{"df":0,"docs":{},"i":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"200":{"tf":1.0}}},"2":{"(":{"&":{"df":0,"docs":{},"i":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"(":{"&":{"df":0,"docs":{},"x":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}},"<":{"'":{"a":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}},"x":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{},"z":{"df":1,"docs":{"195":{"tf":1.0}}}},"<":{"'":{"a":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"x":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"'":{"a":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"195":{"tf":1.7320508075688772}},"s":{"(":{"&":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"df":0,"docs":{}},"<":{"'":{"a":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"36":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":23,"docs":{"115":{"tf":1.0},"126":{"tf":1.0},"136":{"tf":1.0},"141":{"tf":1.7320508075688772},"149":{"tf":1.0},"16":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":2.23606797749979},"179":{"tf":1.7320508075688772},"181":{"tf":2.449489742783178},"190":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"211":{"tf":1.7320508075688772},"230":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":2.23606797749979},"60":{"tf":1.4142135623730951},"93":{"tf":1.0}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"195":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"0":{"0":{"1":{"1":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"8":{"0":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"0":{"0":{"0":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"25":{"tf":1.0}}},"3":{"0":{"0":{".":{"0":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"213":{"tf":1.0}}},"_":{"_":{"df":1,"docs":{"181":{"tf":1.0}}},"df":0,"docs":{}},"`":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"211":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"211":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"211":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"df":3,"docs":{"196":{"tf":1.0},"197":{"tf":1.0},"202":{"tf":1.0}}}}}}}},"a":{"df":1,"docs":{"48":{"tf":1.0}},"g":{"df":1,"docs":{"72":{"tf":1.0}}},"n":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"252":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"1":{"df":1,"docs":{"194":{"tf":1.0}}},"2":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"z":{"df":0,"docs":{},"z":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"210":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"210":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"210":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}}}},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"251":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}},"o":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"147":{"tf":1.0},"148":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"141":{"tf":1.4142135623730951},"34":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"df":0,"docs":{},"z":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"df":1,"docs":{"64":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"73":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":5,"docs":{"149":{"tf":1.0},"162":{"tf":1.0},"187":{"tf":2.6457513110645907},"190":{"tf":1.0},"191":{"tf":1.0}}}}}},"i":{"df":1,"docs":{"227":{"tf":1.0}}}},"i":{"'":{"df":0,"docs":{},"m":{"df":1,"docs":{"214":{"tf":1.4142135623730951}}}},"df":4,"docs":{"195":{"tf":1.0},"213":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0}},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"v":{"4":{"df":1,"docs":{"123":{"tf":1.0}}},"6":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"60":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"100":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}}},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"71":{"tf":1.7320508075688772},"73":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":1,"docs":{"176":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"220":{"tf":1.0}}},"n":{"df":1,"docs":{"131":{"tf":1.0}}}},"df":3,"docs":{"147":{"tf":1.0},"148":{"tf":1.0},"64":{"tf":1.0}},"o":{"df":1,"docs":{"69":{"tf":1.0}},"w":{"df":2,"docs":{"181":{"tf":1.4142135623730951},"213":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"199":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"66":{"tf":1.0}}},"l":{"d":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"df":2,"docs":{"73":{"tf":2.0},"93":{"tf":1.7320508075688772}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}}}}},"r":{"df":1,"docs":{"194":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":88,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":2.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.7320508075688772},"203":{"tf":1.0},"22":{"tf":2.23606797749979},"23":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"24":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"39":{"tf":2.23606797749979},"40":{"tf":1.7320508075688772},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":2.449489742783178},"52":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"54":{"tf":2.23606797749979},"56":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"60":{"tf":2.0},"63":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"105":{"tf":1.0},"125":{"tf":1.0},"37":{"tf":2.0},"39":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":2.0},"63":{"tf":1.0},"77":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"213":{"tf":1.0}}},"r":{"df":1,"docs":{"134":{"tf":1.0}}}},"i":{"df":2,"docs":{"176":{"tf":1.0},"71":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"66":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"54":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"1":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"w":{"df":2,"docs":{"109":{"tf":1.0},"226":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":3,"docs":{"195":{"tf":2.0},"227":{"tf":1.0},"31":{"tf":1.0}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"v":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"z":{"df":1,"docs":{"31":{"tf":1.0}}},"{":{"0":{":":{".":{"5":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"176":{"tf":1.0},"185":{"tf":1.0}}},":":{"#":{"0":{"1":{"0":{"b":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"1":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}},"?":{"df":0,"docs":{},"}":{"\"":{",":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"220":{"tf":1.0},"228":{"tf":1.0}}}}},"c":{"df":1,"docs":{"80":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}},"df":1,"docs":{"213":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"223":{"tf":1.0},"224":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":1,"docs":{"191":{"tf":1.0}}},"x":{"df":1,"docs":{"189":{"tf":1.0}}}},"a":{"b":{"c":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"186":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"190":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{"0":{">":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"176":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},">":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"176":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"176":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"}":{"\"":{",":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"218":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"df":1,"docs":{"24":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"211":{"tf":1.0}}}}}}},"df":3,"docs":{"213":{"tf":1.4142135623730951},"36":{"tf":1.0},"44":{"tf":1.0}},"p":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"86":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"1":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"218":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},",":{"df":0,"docs":{},"{":{"df":0,"docs":{},"}":{"\"":{",":{"df":0,"docs":{},"v":{"1":{",":{"df":0,"docs":{},"v":{"2":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"_":{"df":2,"docs":{"58":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":48,"docs":{"100":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"115":{"tf":1.4142135623730951},"120":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":2.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"181":{"tf":1.0},"200":{"tf":3.1622776601683795},"204":{"tf":1.4142135623730951},"205":{"tf":1.7320508075688772},"208":{"tf":1.0},"213":{"tf":1.4142135623730951},"220":{"tf":1.0},"223":{"tf":1.0},"230":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":2.449489742783178},"37":{"tf":1.4142135623730951},"40":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"50":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":2.0},"62":{"tf":2.449489742783178},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":2.0},"95":{"tf":1.4142135623730951}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"153":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"154":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"124":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"181":{"tf":1.0},"183":{"tf":1.0},"87":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"251":{"tf":1.4142135623730951},"52":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"249":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"(":{"2":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":25,"docs":{"11":{"tf":1.0},"141":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"15":{"tf":1.0},"160":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.7320508075688772},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}},"m":{"df":1,"docs":{"108":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"155":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":15,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"144":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":2.449489742783178},"4":{"tf":1.4142135623730951},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"126":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"51":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"103":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":23,"docs":{"121":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"222":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"270":{"tf":1.0},"56":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"115":{"tf":1.4142135623730951},"139":{"tf":2.0}}}},"u":{"b":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"158":{"tf":2.23606797749979}}}}},"df":24,"docs":{"105":{"tf":1.0},"142":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":3.4641016151377544},"156":{"tf":1.7320508075688772},"157":{"tf":1.7320508075688772},"158":{"tf":2.23606797749979},"159":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"208":{"tf":1.4142135623730951},"219":{"tf":1.0},"226":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"153":{"tf":1.4142135623730951},"158":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"95":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"256":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":4,"docs":{"148":{"tf":1.0},"176":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"251":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":3,"docs":{"122":{"tf":1.0},"251":{"tf":2.0},"256":{"tf":1.0}}}},"t":{"df":2,"docs":{"139":{"tf":1.0},"248":{"tf":1.0}}}}},"q":{"df":2,"docs":{"151":{"tf":1.0},"152":{"tf":1.0}},"u":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"100":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"100":{"tf":1.0}}}},"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"216":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"113":{"tf":1.0},"3":{"tf":1.4142135623730951},"4":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"176":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}},"t":{"df":2,"docs":{"60":{"tf":1.7320508075688772},"69":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.7320508075688772}}}},"x":{"(":{"df":0,"docs":{},"u":{"3":{"2":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"#":{"\"":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"#":{"#":{"\"":{"a":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"(":{"1":{"0":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"1":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"204":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772}}},"2":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"204":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772}}},"3":{"df":1,"docs":{"204":{"tf":1.4142135623730951}}},"<":{"'":{"a":{">":{"(":{"&":{"'":{"a":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":1,"docs":{"139":{"tf":1.0}}},"c":{">":{">":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"139":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{">":{">":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"139":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"139":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":2,"docs":{"125":{"tf":1.0},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":7,"docs":{"131":{"tf":1.0},"15":{"tf":1.0},"218":{"tf":1.0},"24":{"tf":1.7320508075688772},"63":{"tf":1.0},"73":{"tf":2.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"24":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"1":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"k":{"df":1,"docs":{"203":{"tf":2.0}}}},"w":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":4,"docs":{"131":{"tf":1.0},"139":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772}}},"x":{":":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"250":{"tf":1.7320508075688772},"252":{"tf":1.0},"253":{"tf":1.0}}}},"b":{"df":0,"docs":{},"x":{"df":1,"docs":{"251":{"tf":1.7320508075688772}}}},"c":{"df":1,"docs":{"233":{"tf":1.7320508075688772}}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"252":{"tf":1.0}}},"x":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":6,"docs":{"194":{"tf":2.449489742783178},"202":{"tf":2.0},"205":{"tf":2.0},"39":{"tf":1.0},"47":{"tf":1.0},"73":{"tf":1.4142135623730951}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"155":{"tf":1.0},"64":{"tf":1.0}}}},"d":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"256":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"146":{"tf":1.0}}},"2":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}}}},"df":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":{"146":{"tf":1.0}}},"df":0,"docs":{}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"105":{"tf":1.0},"153":{"tf":1.0},"197":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.0},"248":{"tf":1.0}}}},"df":0,"docs":{}},"df":12,"docs":{"0":{"tf":1.4142135623730951},"121":{"tf":1.0},"146":{"tf":1.0},"162":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.7320508075688772},"256":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"182":{"tf":1.0},"2":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"182":{"tf":1.0},"71":{"tf":1.0},"96":{"tf":1.0}}},"o":{"c":{"df":1,"docs":{"122":{"tf":2.449489742783178}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"122":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"52":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"139":{"tf":1.0},"205":{"tf":2.449489742783178},"211":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"200":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"113":{"tf":1.0},"157":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"162":{"tf":1.0},"248":{"tf":1.0},"3":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"1":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"77":{"tf":1.0}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":4,"docs":{"58":{"tf":1.4142135623730951},"75":{"tf":2.6457513110645907},"77":{"tf":2.0},"79":{"tf":1.7320508075688772}},"e":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"1":{".":{"0":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"256":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.0}},"i":{"df":2,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":2.0}}},"u":{"c":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"105":{"tf":1.0},"115":{"tf":1.0},"157":{"tf":1.4142135623730951},"16":{"tf":1.0},"169":{"tf":1.0}},"f":{"(":{"&":{"'":{"a":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"205":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"205":{"tf":1.4142135623730951}}},"<":{"'":{"a":{"df":2,"docs":{"202":{"tf":1.0},"207":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"x":{"df":1,"docs":{"202":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.7320508075688772}}}}},"df":5,"docs":{"202":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":34,"docs":{"125":{"tf":1.0},"148":{"tf":1.0},"183":{"tf":1.0},"195":{"tf":4.0},"198":{"tf":1.0},"199":{"tf":2.449489742783178},"200":{"tf":1.7320508075688772},"202":{"tf":2.449489742783178},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.7320508075688772},"213":{"tf":2.6457513110645907},"221":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"235":{"tf":1.7320508075688772},"251":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"39":{"tf":2.0},"40":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":2.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"73":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"37":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"236":{"tf":1.7320508075688772}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"248":{"tf":1.0}}}}},"g":{"_":{"a":{"b":{"c":{"d":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{"_":{"_":{"df":1,"docs":{"84":{"tf":1.0}}},"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"248":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"248":{"tf":2.0},"249":{"tf":2.449489742783178},"250":{"tf":3.1622776601683795},"251":{"tf":4.123105625617661},"252":{"tf":1.7320508075688772},"253":{"tf":3.872983346207417},"255":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}}}}},"l":{"df":2,"docs":{"153":{"tf":1.0},"3":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}},"o":{"a":{"d":{"df":1,"docs":{"249":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"199":{"tf":1.4142135623730951},"65":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"100":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":18,"docs":{"128":{"tf":1.0},"131":{"tf":1.0},"151":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"197":{"tf":1.0},"211":{"tf":1.0},"22":{"tf":1.0},"271":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.4142135623730951},"45":{"tf":1.0},"63":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"77":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"205":{"tf":1.0},"248":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"223":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":6,"docs":{"129":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":2,"docs":{"3":{"tf":1.0},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"115":{"tf":1.4142135623730951},"149":{"tf":1.0},"22":{"tf":1.0},"60":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":17,"docs":{"108":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"129":{"tf":1.0},"132":{"tf":1.4142135623730951},"160":{"tf":1.0},"176":{"tf":1.4142135623730951},"195":{"tf":1.0},"203":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.7320508075688772},"221":{"tf":1.0},"246":{"tf":1.0},"250":{"tf":1.0},"254":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}},"s":{"<":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"198":{"tf":1.0},"251":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}},"z":{"df":2,"docs":{"117":{"tf":1.0},"127":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":12,"docs":{"110":{"tf":1.0},"130":{"tf":1.0},"140":{"tf":1.0},"150":{"tf":1.0},"192":{"tf":1.0},"20":{"tf":1.0},"209":{"tf":1.0},"35":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"114":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"115":{"tf":1.0},"217":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"66":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"251":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.4142135623730951},"213":{"tf":1.0},"226":{"tf":1.0},"253":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}}}}}}}},"i":{"3":{"2":{"df":3,"docs":{"133":{"tf":1.0},"147":{"tf":2.0},"169":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"134":{"tf":1.0},"137":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}}}},"t":{"df":3,"docs":{"145":{"tf":1.0},"147":{"tf":1.0},"227":{"tf":1.0}}}},"df":28,"docs":{"102":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.7320508075688772},"139":{"tf":1.0},"140":{"tf":1.7320508075688772},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":2.449489742783178},"146":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"148":{"tf":2.23606797749979},"149":{"tf":2.449489742783178},"168":{"tf":1.0},"169":{"tf":2.6457513110645907},"181":{"tf":1.0},"218":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.7320508075688772},"252":{"tf":1.7320508075688772},"255":{"tf":1.0},"37":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":36,"docs":{"103":{"tf":1.0},"114":{"tf":1.4142135623730951},"125":{"tf":2.23606797749979},"131":{"tf":1.4142135623730951},"134":{"tf":1.0},"142":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.7320508075688772},"165":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"195":{"tf":2.0},"199":{"tf":1.0},"210":{"tf":2.0},"212":{"tf":1.0},"213":{"tf":1.7320508075688772},"215":{"tf":1.7320508075688772},"22":{"tf":1.0},"221":{"tf":1.0},"252":{"tf":1.0},"29":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"54":{"tf":1.0},"60":{"tf":2.0},"66":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":2.6457513110645907},"98":{"tf":1.0},"99":{"tf":2.23606797749979}},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"153":{"tf":1.0},"220":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"118":{"tf":1.0},"147":{"tf":1.0},"79":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}}}}}}}}},"h":{"df":1,"docs":{"94":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":5,"docs":{"143":{"tf":1.4142135623730951},"176":{"tf":1.0},"187":{"tf":1.4142135623730951},"226":{"tf":1.0},"88":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"4":{"tf":1.7320508075688772}}}}}}},"s":{"c":{"df":1,"docs":{"246":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"152":{"tf":2.0},"153":{"tf":1.4142135623730951},"168":{"tf":1.0}}}}},"r":{"df":1,"docs":{"205":{"tf":1.4142135623730951}}},"s":{"df":1,"docs":{"174":{"tf":1.0}}},"u":{"\\":{"df":0,"docs":{},"x":{"7":{"3":{"_":{"_":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":8,"docs":{"109":{"tf":2.0},"127":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"226":{"tf":1.0},"248":{"tf":1.0},"40":{"tf":1.4142135623730951}}}},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"271":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":11,"docs":{"1":{"tf":1.7320508075688772},"143":{"tf":1.7320508075688772},"162":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":2.6457513110645907},"199":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"60":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"102":{"tf":1.4142135623730951},"131":{"tf":1.0},"88":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"\"":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"108":{"tf":1.0},"95":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"'":{"df":1,"docs":{"87":{"tf":1.0}}},"(":{"df":0,"docs":{},"o":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"7":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"=":{"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"171":{"tf":1.0},"174":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":55,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"102":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"12":{"tf":2.0},"121":{"tf":1.0},"124":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"144":{"tf":1.0},"150":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"170":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"181":{"tf":1.4142135623730951},"183":{"tf":1.0},"19":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"197":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"204":{"tf":1.0},"207":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"227":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.0},"270":{"tf":1.0},"3":{"tf":2.0},"35":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"90":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}}}}}},"s":{"(":{"a":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},".":{"_":{"_":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"45":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"114":{"tf":1.0},"119":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"119":{"tf":1.0},"36":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"_":{"_":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"115":{"tf":1.0},"45":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"39":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"213":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"45":{"tf":1.7320508075688772}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"p":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"1":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"[":{"0":{"df":1,"docs":{"49":{"tf":1.0}}},"3":{".":{".":{"5":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"114":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":8,"docs":{"114":{"tf":1.4142135623730951},"178":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"45":{"tf":2.0},"46":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0}}},"2":{"df":4,"docs":{"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"45":{"tf":1.4142135623730951},"52":{"tf":1.0}}},"3":{"df":1,"docs":{"45":{"tf":1.0}}},"[":{".":{".":{"1":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{".":{"2":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"114":{"tf":1.0}}},"3":{".":{".":{"5":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"_":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"181":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":4,"docs":{"103":{"tf":2.0},"139":{"tf":1.0},"151":{"tf":1.0},"51":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"e":{"df":32,"docs":{"107":{"tf":1.7320508075688772},"118":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"16":{"tf":1.0},"177":{"tf":2.23606797749979},"183":{"tf":1.0},"188":{"tf":1.0},"195":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"249":{"tf":2.0},"253":{"tf":1.0},"255":{"tf":1.7320508075688772},"256":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"131":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"148":{"tf":1.0},"197":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":2.0}}}},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":1,"docs":{"107":{"tf":1.0}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"149":{"tf":1.0}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":12,"docs":{"133":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"15":{"tf":2.23606797749979},"156":{"tf":1.0},"194":{"tf":1.7320508075688772},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"204":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"125":{"tf":2.6457513110645907},"190":{"tf":1.7320508075688772}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"\"":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{"(":{"\"":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"[":{"\"":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"10":{"tf":1.0},"251":{"tf":1.7320508075688772},"5":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":31,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":2.23606797749979},"114":{"tf":2.0},"115":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"132":{"tf":1.0},"146":{"tf":1.7320508075688772},"178":{"tf":1.0},"188":{"tf":1.4142135623730951},"198":{"tf":1.0},"202":{"tf":1.7320508075688772},"204":{"tf":2.0},"212":{"tf":1.0},"213":{"tf":2.23606797749979},"228":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":3.0},"39":{"tf":1.7320508075688772},"40":{"tf":2.449489742783178},"41":{"tf":2.6457513110645907},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":2.23606797749979},"46":{"tf":2.0},"47":{"tf":1.7320508075688772},"50":{"tf":1.0},"53":{"tf":2.0},"60":{"tf":1.0},"84":{"tf":1.4142135623730951},"92":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"154":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"148":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{":":{":":{"<":{"df":0,"docs":{},"i":{"3":{"2":{">":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"148":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"8":{"tf":1.0}}}}},"df":11,"docs":{"114":{"tf":1.0},"131":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.0},"255":{"tf":1.0},"52":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"93":{"tf":1.0}},"s":{"(":{"1":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"8":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"220":{"tf":1.0},"52":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":15,"docs":{"152":{"tf":1.0},"162":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"197":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"248":{"tf":2.449489742783178},"249":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"51":{"tf":1.0},"60":{"tf":1.0},"73":{"tf":1.0}},"m":{"df":3,"docs":{"139":{"tf":1.0},"3":{"tf":1.0},"95":{"tf":1.0}}},"n":{"df":2,"docs":{"153":{"tf":1.0},"98":{"tf":1.0}}}},"l":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"107":{"tf":1.4142135623730951},"124":{"tf":1.0},"251":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"0":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"0":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":6,"docs":{"105":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"183":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"226":{"tf":1.0}}},"1":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"a":{"df":1,"docs":{"271":{"tf":1.0}},"g":{"df":1,"docs":{"107":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"77":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.4142135623730951}}}}}}},"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"*":{"df":0,"docs":{},"i":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}}}}}}},"i":{"df":3,"docs":{"106":{"tf":1.0},"205":{"tf":1.0},"97":{"tf":1.4142135623730951}},"s":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}},"m":{"df":1,"docs":{"91":{"tf":2.0}},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}},"p":{"1":{".":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}},"x":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":1,"docs":{"75":{"tf":1.4142135623730951}}},"2":{".":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}},"x":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":1,"docs":{"75":{"tf":1.4142135623730951}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{")":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"216":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"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":{"95":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}},"u":{"df":2,"docs":{"216":{"tf":1.4142135623730951},"97":{"tf":2.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"x":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"(":{"2":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":3,"docs":{"106":{"tf":1.0},"205":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"(":{"2":{")":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},":":{":":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"_":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"b":{":":{":":{"c":{":":{":":{"df":0,"docs":{},"j":{"df":1,"docs":{"158":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"134":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":23,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":2.0},"106":{"tf":1.4142135623730951},"196":{"tf":1.7320508075688772},"197":{"tf":1.4142135623730951},"202":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"236":{"tf":1.7320508075688772},"271":{"tf":1.7320508075688772},"60":{"tf":2.8284271247461903},"75":{"tf":4.0},"77":{"tf":3.4641016151377544},"78":{"tf":1.4142135623730951},"91":{"tf":2.0},"93":{"tf":1.0},"97":{"tf":2.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"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":1,"docs":{"31":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}},"x":{"df":1,"docs":{"158":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"n":{"d":{"df":2,"docs":{"227":{"tf":1.0},"242":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"152":{"tf":1.0},"154":{"tf":1.7320508075688772},"172":{"tf":1.0},"173":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.0},"248":{"tf":1.4142135623730951},"249":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"113":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"221":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"177":{"tf":1.0},"9":{"tf":1.0}}},"v":{"df":3,"docs":{"1":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"153":{"tf":1.0},"154":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"154":{"tf":1.0},"155":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"u":{"1":{"df":1,"docs":{"57":{"tf":1.0}}},"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"98":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"132":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"253":{"tf":1.0},"73":{"tf":1.0},"96":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"<":{"a":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"84":{"tf":1.0}}}},"df":1,"docs":{"84":{"tf":1.0}}}}},"h":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"16":{"tf":2.23606797749979},"18":{"tf":1.0},"72":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"249":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":2,"docs":{"91":{"tf":2.8284271247461903},"96":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":2,"docs":{"251":{"tf":1.0},"48":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"182":{"tf":1.0}}}}},"l":{"df":1,"docs":{"251":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"df":1,"docs":{"224":{"tf":2.6457513110645907}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"_":{"_":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"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":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"224":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"145":{"tf":1.0},"195":{"tf":1.0},"204":{"tf":1.0},"25":{"tf":1.0},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"<":{"'":{"b":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"139":{"tf":1.0}}},"r":{"df":3,"docs":{"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"203":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"57":{"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":{"255":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":2,"docs":{"60":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"_":{"_":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":9,"docs":{"143":{"tf":1.0},"149":{"tf":1.0},"168":{"tf":1.4142135623730951},"181":{"tf":1.0},"248":{"tf":1.0},"255":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.0},"7":{"tf":1.0}},"n":{"df":1,"docs":{"131":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":2,"docs":{"117":{"tf":1.0},"127":{"tf":1.7320508075688772}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"19":{"tf":1.0},"256":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"125":{"tf":1.0},"195":{"tf":1.4142135623730951},"199":{"tf":1.0},"33":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"78":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"m":{"d":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":10,"docs":{"114":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"152":{"tf":1.0},"39":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"77":{"tf":1.0},"90":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"195":{"tf":1.0},"196":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"132":{"tf":1.0},"182":{"tf":1.0},"218":{"tf":1.0},"6":{"tf":1.0}},"e":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"141":{"tf":1.0},"247":{"tf":1.0}}}}},"i":{"c":{"df":1,"docs":{"52":{"tf":1.0}}},"df":2,"docs":{"132":{"tf":1.0},"136":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"251":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":6,"docs":{"148":{"tf":1.0},"195":{"tf":1.4142135623730951},"37":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"96":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"124":{"tf":1.0},"129":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"155":{"tf":1.0},"157":{"tf":1.0}}},"x":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}},"z":{"df":0,"docs":{},"e":{"df":14,"docs":{"115":{"tf":1.0},"117":{"tf":1.0},"124":{"tf":1.0},"139":{"tf":1.4142135623730951},"224":{"tf":2.449489742783178},"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"253":{"tf":1.0},"29":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":2.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"p":{"df":2,"docs":{"65":{"tf":1.0},"66":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"213":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"6":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"113":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"1":{"df":4,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.0},"53":{"tf":1.0}}},"2":{"df":4,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951}}},"3":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"113":{"tf":1.0}}}}}}},"[":{"3":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"113":{"tf":1.0},"121":{"tf":1.0}}},"df":12,"docs":{"113":{"tf":2.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.0},"121":{"tf":2.449489742783178},"139":{"tf":1.4142135623730951},"19":{"tf":1.0},"228":{"tf":1.7320508075688772},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":3.872983346207417},"53":{"tf":2.0},"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"122":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":14,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":1.0},"144":{"tf":1.0},"3":{"tf":2.23606797749979},"4":{"tf":1.4142135623730951},"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"253":{"tf":1.0},"93":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"229":{"tf":1.7320508075688772},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"153":{"tf":1.0},"227":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":46,"docs":{"103":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"179":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"v":{"df":1,"docs":{"33":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"(":{"&":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"1":{"df":1,"docs":{"221":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"221":{"tf":1.4142135623730951}}},"3":{"0":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}},"df":1,"docs":{"221":{"tf":1.4142135623730951}}},"4":{"df":2,"docs":{"221":{"tf":1.0},"73":{"tf":1.0}}},"5":{"df":2,"docs":{"221":{"tf":1.4142135623730951},"60":{"tf":1.0}}},"7":{"df":1,"docs":{"71":{"tf":1.0}}},"9":{"8":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}}},"b":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":2,"docs":{"60":{"tf":1.0},"71":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":3,"docs":{"216":{"tf":1.4142135623730951},"220":{"tf":1.0},"97":{"tf":2.0}}},"x":{"df":2,"docs":{"170":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":10,"docs":{"132":{"tf":1.0},"143":{"tf":1.0},"153":{"tf":1.0},"157":{"tf":1.0},"181":{"tf":1.0},"22":{"tf":1.0},"248":{"tf":1.0},"40":{"tf":1.0},"63":{"tf":1.4142135623730951},"70":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":9,"docs":{"108":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"158":{"tf":1.0},"169":{"tf":1.4142135623730951},"182":{"tf":1.0},"254":{"tf":1.0},"47":{"tf":1.0},"89":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"100":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"df":1,"docs":{"114":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"139":{"tf":1.0},"152":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":7,"docs":{"122":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"148":{"tf":1.0},"156":{"tf":1.0},"176":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"176":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":3,"docs":{"12":{"tf":1.0},"148":{"tf":1.4142135623730951},"250":{"tf":1.7320508075688772}},"i":{"df":21,"docs":{"106":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"139":{"tf":1.0},"176":{"tf":1.4142135623730951},"187":{"tf":1.0},"203":{"tf":1.0},"213":{"tf":1.4142135623730951},"248":{"tf":2.8284271247461903},"249":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"254":{"tf":1.0},"256":{"tf":1.0},"56":{"tf":1.0},"73":{"tf":1.0},"84":{"tf":2.23606797749979},"90":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"142":{"tf":2.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"137":{"tf":1.0},"73":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"1":{".":{"0":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"c":{"/":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"154":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"152":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"168":{"tf":1.0},"169":{"tf":2.449489742783178}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"154":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"154":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"154":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":4,"docs":{"152":{"tf":1.0},"154":{"tf":1.0},"169":{"tf":2.0},"170":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"152":{"tf":1.0},"155":{"tf":1.0}},"s":{":":{"3":{":":{"5":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{":":{"5":{"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":5,"docs":{"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"141":{"tf":1.0},"143":{"tf":2.449489742783178},"144":{"tf":1.0},"256":{"tf":1.7320508075688772},"51":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"195":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"196":{"tf":1.0},"197":{"tf":1.0},"88":{"tf":1.0}}}}},"r":{"d":{"df":12,"docs":{"109":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"152":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":1,"docs":{"268":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"0":{"tf":1.0}},"t":{"df":11,"docs":{"127":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"164":{"tf":1.0},"194":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"247":{"tf":1.0},"51":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"251":{"tf":2.449489742783178},"60":{"tf":1.0},"77":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"30":{"tf":1.7320508075688772},"31":{"tf":1.0},"32":{"tf":1.0},"66":{"tf":1.0}}}}}}},"i":{"c":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"199":{"tf":2.0}}}}}},"df":6,"docs":{"102":{"tf":2.0},"195":{"tf":1.4142135623730951},"198":{"tf":3.4641016151377544},"199":{"tf":3.7416573867739413},"200":{"tf":4.47213595499958},"227":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"126":{"tf":1.0}}}},"y":{"df":3,"docs":{"199":{"tf":1.0},"37":{"tf":1.0},"59":{"tf":1.0}}}},"d":{":":{":":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"<":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"c":{"df":0,"docs":{},"h":{":":{":":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":10,"docs":{"247":{"tf":1.0},"248":{"tf":2.0},"249":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"_":{"_":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":7,"docs":{"125":{"tf":1.7320508075688772},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"133":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"134":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"133":{"tf":1.0}},"m":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":5,"docs":{"180":{"tf":1.0},"181":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"180":{"tf":1.0},"181":{"tf":1.0},"200":{"tf":1.0},"228":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"]":{"[":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":2,"docs":{"176":{"tf":1.0},"177":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":6,"docs":{"109":{"tf":1.0},"136":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"226":{"tf":1.0}}}},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"146":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"133":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{":":{":":{"<":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"v":{"df":3,"docs":{"27":{"tf":1.0},"29":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}},"e":{":":{":":{"<":{"&":{"'":{"b":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"139":{"tf":1.0}}}}}},"*":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"<":{"'":{"b":{"df":1,"docs":{"139":{"tf":1.0}}},"df":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":{"115":{"tf":1.0},"213":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"137":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"133":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"94":{"tf":1.4142135623730951}},"s":{":":{":":{"a":{"d":{"d":{"df":2,"docs":{"226":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}},"{":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"133":{"tf":1.0},"134":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":2,"docs":{"148":{"tf":1.0},"227":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"48":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"148":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"45":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"270":{"tf":1.0}}}},"p":{"df":3,"docs":{"1":{"tf":1.0},"152":{"tf":1.0},"176":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"128":{"tf":1.0},"147":{"tf":1.0},"199":{"tf":1.0},"213":{"tf":1.0},"226":{"tf":1.4142135623730951},"249":{"tf":1.0},"251":{"tf":1.0},"37":{"tf":1.0},"59":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":12,"docs":{"113":{"tf":1.0},"115":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"199":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"255":{"tf":1.0},"45":{"tf":1.4142135623730951},"56":{"tf":1.0},"98":{"tf":1.0}}},"i":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}},"y":{".":{"_":{"_":{"df":1,"docs":{"115":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{":":{":":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"181":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"255":{"tf":1.0}}}}},"df":31,"docs":{"113":{"tf":2.6457513110645907},"119":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":2.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":2.23606797749979},"148":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"196":{"tf":1.0},"197":{"tf":2.0},"198":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.7320508075688772},"208":{"tf":1.0},"213":{"tf":1.4142135623730951},"228":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":3.1622776601683795},"45":{"tf":1.0},"46":{"tf":2.6457513110645907},"48":{"tf":2.0},"52":{"tf":2.0},"53":{"tf":2.23606797749979},"78":{"tf":1.0},"89":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"267":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"'":{"df":2,"docs":{"115":{"tf":1.0},"45":{"tf":1.0}}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{")":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"1":{"df":1,"docs":{"132":{"tf":1.0}}},"2":{"df":1,"docs":{"132":{"tf":1.0}}},"3":{"df":1,"docs":{"132":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"*":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"37":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"211":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":11,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"204":{"tf":1.0},"36":{"tf":2.23606797749979},"37":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}}},"i":{"df":2,"docs":{"49":{"tf":1.0},"92":{"tf":1.0}}}},"i":{"df":1,"docs":{"45":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"\"":{")":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"154":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"224":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"c":{"df":3,"docs":{"190":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":2,"docs":{"51":{"tf":1.0},"57":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"107":{"tf":1.0}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"226":{"tf":1.0},"37":{"tf":1.4142135623730951},"45":{"tf":1.0}}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"154":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":2,"docs":{"46":{"tf":1.0},"54":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"114":{"tf":1.0},"115":{"tf":1.0},"146":{"tf":1.4142135623730951},"213":{"tf":2.0}}}}}},"df":0,"docs":{}},"]":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"176":{"tf":1.0},"177":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":65,"docs":{"101":{"tf":1.7320508075688772},"102":{"tf":2.0},"103":{"tf":1.0},"107":{"tf":2.8284271247461903},"108":{"tf":3.0},"111":{"tf":2.449489742783178},"112":{"tf":1.7320508075688772},"113":{"tf":3.4641016151377544},"114":{"tf":2.6457513110645907},"115":{"tf":2.23606797749979},"116":{"tf":1.4142135623730951},"119":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":2.0},"128":{"tf":1.0},"132":{"tf":2.449489742783178},"136":{"tf":1.7320508075688772},"137":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"181":{"tf":1.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"213":{"tf":1.0},"22":{"tf":1.4142135623730951},"224":{"tf":1.0},"23":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":2.23606797749979},"250":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.7320508075688772},"269":{"tf":1.7320508075688772},"36":{"tf":2.0},"37":{"tf":1.0},"39":{"tf":2.23606797749979},"40":{"tf":1.4142135623730951},"43":{"tf":2.0},"44":{"tf":1.0},"45":{"tf":3.0},"46":{"tf":2.6457513110645907},"47":{"tf":3.0},"48":{"tf":3.7416573867739413},"49":{"tf":2.0},"50":{"tf":2.0},"53":{"tf":2.23606797749979},"56":{"tf":1.4142135623730951},"57":{"tf":2.23606797749979},"59":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"71":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":2.8284271247461903},"92":{"tf":1.4142135623730951},"95":{"tf":2.8284271247461903},"96":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"176":{"tf":1.0}}},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"47":{"tf":1.0}}},"t":{"df":58,"docs":{"100":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0},"176":{"tf":1.4142135623730951},"181":{"tf":2.6457513110645907},"182":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":2.6457513110645907},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"199":{"tf":1.0},"202":{"tf":2.0},"205":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.7320508075688772},"216":{"tf":1.7320508075688772},"221":{"tf":1.4142135623730951},"224":{"tf":1.0},"226":{"tf":2.23606797749979},"271":{"tf":1.0},"37":{"tf":1.7320508075688772},"55":{"tf":1.7320508075688772},"56":{"tf":3.4641016151377544},"57":{"tf":2.8284271247461903},"58":{"tf":2.23606797749979},"59":{"tf":2.23606797749979},"60":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":2.0},"77":{"tf":2.449489742783178},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"85":{"tf":2.449489742783178},"86":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":2.23606797749979},"94":{"tf":2.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"97":{"tf":2.0},"99":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"152":{"tf":1.0},"155":{"tf":1.0},"176":{"tf":1.7320508075688772},"181":{"tf":1.0},"183":{"tf":1.0},"195":{"tf":1.0},"2":{"tf":1.0}},"e":{"(":{"3":{"df":2,"docs":{"176":{"tf":1.0},"181":{"tf":1.0}}},"df":0,"docs":{},"i":{"3":{"2":{"df":2,"docs":{"176":{"tf":1.0},"181":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"v":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"108":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":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":{"108":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"108":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"108":{"tf":1.0}}}}}}}}}},"df":2,"docs":{"108":{"tf":2.6457513110645907},"92":{"tf":2.0}}}}},"y":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"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":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"162":{"tf":1.4142135623730951},"224":{"tf":2.449489742783178}}}}}},"u":{"b":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"106":{"tf":1.0},"94":{"tf":1.0}}}}}}},"df":2,"docs":{"250":{"tf":1.0},"255":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"176":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"253":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"198":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"131":{"tf":1.0},"227":{"tf":1.4142135623730951},"25":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.0}}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"88":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"48":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"148":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":13,"docs":{"115":{"tf":1.0},"124":{"tf":1.7320508075688772},"149":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"251":{"tf":1.0},"256":{"tf":1.0},"270":{"tf":1.0},"37":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"176":{"tf":1.4142135623730951},"255":{"tf":1.0}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"75":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"253":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"(":{"1":{".":{"2":{"3":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"32":{"tf":1.0}}},"2":{"0":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{},"i":{"8":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"x":{"df":2,"docs":{"32":{"tf":1.0},"33":{"tf":1.4142135623730951}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"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":0,"docs":{},"y":{"(":{"_":{"_":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":5,"docs":{"137":{"tf":1.0},"223":{"tf":1.0},"24":{"tf":1.4142135623730951},"84":{"tf":1.0},"97":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"95":{"tf":2.23606797749979}},"z":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"95":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"o":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"f":{"a":{"c":{"df":6,"docs":{"179":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.4142135623730951},"224":{"tf":1.0},"54":{"tf":1.4142135623730951},"57":{"tf":1.0}},"e":{"\"":{",":{"1":{"8":{"df":1,"docs":{"223":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"108":{"tf":1.0},"181":{"tf":1.0},"51":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"\"":{",":{"1":{"8":{"df":1,"docs":{"223":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"224":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"153":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"127":{"tf":1.0},"148":{"tf":1.0},"226":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"164":{"tf":1.0},"246":{"tf":1.7320508075688772},"251":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"131":{"tf":1.0},"31":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"115":{"tf":1.0},"176":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"w":{"a":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"100":{"tf":2.6457513110645907},"99":{"tf":2.6457513110645907}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"99":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"124":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"252":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"c":{"df":3,"docs":{"2":{"tf":1.0},"240":{"tf":1.7320508075688772},"242":{"tf":1.7320508075688772}}},"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":8,"docs":{"107":{"tf":1.7320508075688772},"158":{"tf":1.0},"210":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":1.0}}}}}}}},"t":{".":{"0":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"1":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"131":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}},"`":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{".":{"_":{"_":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"df":2,"docs":{"60":{"tf":2.449489742783178},"88":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"211":{"tf":1.4142135623730951}}}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"153":{"tf":1.0},"154":{"tf":1.0}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"df":1,"docs":{"36":{"tf":1.0}},"s":{"1":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"153":{"tf":1.0},"154":{"tf":1.0}}}},"df":0,"docs":{}}},"df":15,"docs":{"114":{"tf":1.4142135623730951},"156":{"tf":1.0},"162":{"tf":1.0},"195":{"tf":1.4142135623730951},"210":{"tf":1.0},"213":{"tf":2.23606797749979},"223":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"39":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"60":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.4142135623730951}},"n":{"df":2,"docs":{"121":{"tf":1.0},"202":{"tf":1.0}}},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"124":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"251":{"tf":1.0},"254":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"217":{"tf":1.0},"94":{"tf":1.0}}}}},"df":32,"docs":{"106":{"tf":1.4142135623730951},"113":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.0},"145":{"tf":1.0},"195":{"tf":1.4142135623730951},"198":{"tf":2.23606797749979},"199":{"tf":1.0},"200":{"tf":3.872983346207417},"202":{"tf":4.795831523312719},"203":{"tf":1.7320508075688772},"207":{"tf":2.0},"211":{"tf":2.0},"213":{"tf":3.3166247903554},"215":{"tf":1.7320508075688772},"216":{"tf":2.0},"22":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.7320508075688772},"37":{"tf":2.0},"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":2.449489742783178},"89":{"tf":1.7320508075688772},"92":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":4.123105625617661}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":2.23606797749979}}}}}},"df":0,"docs":{},"m":{".":{"1":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"125":{"tf":2.449489742783178}},"s":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"1":{".":{"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":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{".":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"125":{"tf":1.0}}},"2":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"148":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"174":{"tf":1.0},"204":{"tf":1.0},"226":{"tf":1.0},"251":{"tf":1.4142135623730951},"252":{"tf":1.0},"90":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"248":{"tf":2.23606797749979},"250":{"tf":1.0},"253":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"251":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"n":{"df":1,"docs":{"62":{"tf":1.0}}},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"113":{"tf":1.0},"141":{"tf":1.0},"16":{"tf":1.0},"45":{"tf":1.0},"6":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"152":{"tf":1.4142135623730951},"169":{"tf":4.898979485566356},"186":{"tf":1.4142135623730951},"216":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":2.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"271":{"tf":1.7320508075688772},"73":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"16":{"tf":1.0},"176":{"tf":2.23606797749979},"177":{"tf":2.0},"208":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"2":{"tf":1.0}}}},"t":{"'":{"df":2,"docs":{"48":{"tf":1.4142135623730951},"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"63":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"211":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"126":{"tf":1.0}}}},"":{"df":1,"docs":{"115":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"114":{"tf":1.0},"182":{"tf":1.0},"248":{"tf":1.0},"255":{"tf":1.0}}},"k":{"df":1,"docs":{"4":{"tf":1.0}}}},"r":{"d":{"df":2,"docs":{"129":{"tf":2.0},"248":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"124":{"tf":1.0},"128":{"tf":1.0},"270":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":8,"docs":{"122":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"143":{"tf":1.0},"198":{"tf":1.0},"213":{"tf":1.0},"251":{"tf":1.7320508075688772},"4":{"tf":1.0}},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":9,"docs":{"141":{"tf":2.0},"143":{"tf":1.4142135623730951},"2":{"tf":1.0},"237":{"tf":1.7320508075688772},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":11,"docs":{"106":{"tf":1.0},"115":{"tf":1.0},"132":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"170":{"tf":1.0},"195":{"tf":1.0},"2":{"tf":1.0},"251":{"tf":1.0},"256":{"tf":1.0},"34":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":6,"docs":{"114":{"tf":1.0},"12":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"256":{"tf":1.0},"63":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}}}},"u":{"df":3,"docs":{"200":{"tf":1.0},"220":{"tf":1.0},"78":{"tf":1.0}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"227":{"tf":2.0}}}}}},"i":{"df":1,"docs":{"195":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":24,"docs":{"102":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"132":{"tf":1.0},"142":{"tf":1.0},"153":{"tf":1.0},"177":{"tf":1.0},"198":{"tf":1.0},"204":{"tf":1.0},"226":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0},"98":{"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":1,"docs":{"126":{"tf":1.0}}}}}}}}}},"p":{"df":8,"docs":{"114":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"143":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"52":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"95":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"251":{"tf":2.0}}}},"o":{"_":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"213":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"112":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"df":35,"docs":{"163":{"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.4142135623730951},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.7320508075688772},"269":{"tf":1.0},"34":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"81":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"139":{"tf":1.0},"248":{"tf":1.0},"66":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"11":{"tf":1.0}}}}},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"10":{"tf":1.0},"2":{"tf":1.0}}}},"p":{"df":1,"docs":{"168":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"176":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"223":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":1,"docs":{"34":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"80":{"tf":1.7320508075688772}}}}}}},"df":2,"docs":{"77":{"tf":2.23606797749979},"78":{"tf":2.0}}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"t":{"df":55,"docs":{"100":{"tf":2.23606797749979},"101":{"tf":1.7320508075688772},"102":{"tf":2.8284271247461903},"103":{"tf":2.6457513110645907},"104":{"tf":2.0},"105":{"tf":2.6457513110645907},"106":{"tf":1.7320508075688772},"107":{"tf":3.0},"108":{"tf":3.3166247903554},"109":{"tf":2.0},"123":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"132":{"tf":2.8284271247461903},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.7320508075688772},"182":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":3.0},"203":{"tf":1.4142135623730951},"213":{"tf":2.449489742783178},"219":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"226":{"tf":2.0},"228":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":2.8284271247461903},"91":{"tf":2.6457513110645907},"92":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772},"94":{"tf":3.0},"95":{"tf":2.6457513110645907},"96":{"tf":3.1622776601683795},"97":{"tf":3.0},"98":{"tf":2.6457513110645907},"99":{"tf":2.8284271247461903}},"s":{"]":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"176":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"":{"df":2,"docs":{"107":{"tf":1.0},"108":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":2.6457513110645907}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"248":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"152":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"183":{"tf":1.0}}}}},"df":3,"docs":{"162":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"u":{"df":0,"docs":{},"e":{"df":9,"docs":{"181":{"tf":1.0},"203":{"tf":1.0},"213":{"tf":1.0},"28":{"tf":1.7320508075688772},"34":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"(":{"a":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"134":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"169":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}}}}}}}}},"<":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"134":{"tf":1.7320508075688772}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"134":{"tf":2.0}}}}}}}},"t":{"df":1,"docs":{"147":{"tf":1.0}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"54":{"tf":1.4142135623730951}},"l":{"df":9,"docs":{"109":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"226":{"tf":1.0},"54":{"tf":3.1622776601683795},"56":{"tf":1.7320508075688772},"60":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"'":{"df":1,"docs":{"54":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"r":{"b":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.4142135623730951},"139":{"tf":2.23606797749979},"217":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"5":{"tf":1.0},"9":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"o":{"df":40,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.4142135623730951},"137":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.4142135623730951},"152":{"tf":1.0},"156":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"167":{"tf":1.0},"169":{"tf":1.7320508075688772},"17":{"tf":1.0},"176":{"tf":1.0},"187":{"tf":1.0},"195":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"211":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"39":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"92":{"tf":1.0},"97":{"tf":1.0}},"x":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"6":{"4":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"x":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{">":{"(":{"_":{"df":2,"docs":{"22":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":111,"docs":{"102":{"tf":2.0},"103":{"tf":1.4142135623730951},"105":{"tf":3.0},"106":{"tf":3.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":2.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":2.23606797749979},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":2.449489742783178},"132":{"tf":3.0},"133":{"tf":2.449489742783178},"134":{"tf":1.7320508075688772},"135":{"tf":1.0},"136":{"tf":2.449489742783178},"137":{"tf":2.0},"138":{"tf":1.0},"139":{"tf":2.23606797749979},"147":{"tf":1.0},"148":{"tf":2.23606797749979},"149":{"tf":1.0},"156":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.4142135623730951},"176":{"tf":2.449489742783178},"180":{"tf":1.4142135623730951},"181":{"tf":2.23606797749979},"182":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.0},"20":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"212":{"tf":1.7320508075688772},"213":{"tf":2.23606797749979},"215":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":2.449489742783178},"221":{"tf":2.23606797749979},"226":{"tf":3.3166247903554},"227":{"tf":2.8284271247461903},"228":{"tf":2.23606797749979},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.4142135623730951},"253":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":2.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":2.6457513110645907},"52":{"tf":1.7320508075688772},"53":{"tf":1.7320508075688772},"54":{"tf":2.0},"55":{"tf":1.0},"56":{"tf":2.23606797749979},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":2.449489742783178},"75":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"84":{"tf":3.0},"87":{"tf":2.23606797749979},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":2.0},"91":{"tf":2.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951},"96":{"tf":2.23606797749979},"97":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}}},"i":{"c":{"df":5,"docs":{"124":{"tf":1.0},"132":{"tf":1.0},"149":{"tf":1.0},"193":{"tf":1.0},"253":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"+":{"2":{"1":{"1":{"d":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"8":{"df":1,"docs":{"250":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"df":4,"docs":{"131":{"tf":1.0},"22":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0}}},"df":1,"docs":{"57":{"tf":1.0}}},"2":{"df":1,"docs":{"57":{"tf":1.0}}},"3":{"2":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"139":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"w":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":17,"docs":{"103":{"tf":1.0},"139":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"212":{"tf":2.0},"22":{"tf":1.4142135623730951},"221":{"tf":2.23606797749979},"224":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"79":{"tf":1.7320508075688772},"97":{"tf":3.0}}},"df":0,"docs":{}},"6":{"4":{"df":7,"docs":{"131":{"tf":1.4142135623730951},"248":{"tf":2.6457513110645907},"249":{"tf":2.23606797749979},"250":{"tf":2.0},"251":{"tf":1.0},"256":{"tf":1.4142135623730951},"57":{"tf":1.0}}},"df":0,"docs":{}},"8":{",":{"df":0,"docs":{},"i":{"1":{"6":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"]":{">":{"(":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":20,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.7320508075688772},"113":{"tf":1.0},"118":{"tf":1.0},"125":{"tf":1.4142135623730951},"131":{"tf":3.7416573867739413},"134":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.7320508075688772},"181":{"tf":1.0},"197":{"tf":1.0},"22":{"tf":1.0},"228":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"88":{"tf":2.23606797749979}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"132":{"tf":1.0}}}},"`":{",":{"`":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"132":{"tf":1.7320508075688772},"139":{"tf":1.0},"204":{"tf":2.0},"56":{"tf":1.0},"86":{"tf":2.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"132":{"tf":1.0},"142":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"206":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"107":{"tf":1.0},"75":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":42,"docs":{"103":{"tf":1.0},"109":{"tf":1.0},"116":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.4142135623730951},"144":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0},"159":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":1.0},"216":{"tf":1.0},"224":{"tf":1.0},"230":{"tf":1.0},"25":{"tf":1.0},"271":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"121":{"tf":1.0},"133":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"197":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"270":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"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":1,"docs":{"47":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"163":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}}}}},"t":{"(":{"1":{"df":1,"docs":{"97":{"tf":1.0}}},"3":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":7,"docs":{"255":{"tf":1.0},"26":{"tf":1.7320508075688772},"261":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":2.23606797749979},"56":{"tf":2.23606797749979}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"108":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"108":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":6,"docs":{"134":{"tf":1.0},"182":{"tf":1.0},"210":{"tf":1.0},"227":{"tf":1.0},"250":{"tf":1.0},"77":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"183":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"266":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"181":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":16,"docs":{"115":{"tf":1.4142135623730951},"131":{"tf":2.0},"139":{"tf":3.3166247903554},"199":{"tf":1.0},"245":{"tf":1.7320508075688772},"246":{"tf":1.0},"247":{"tf":1.7320508075688772},"248":{"tf":2.23606797749979},"249":{"tf":1.7320508075688772},"250":{"tf":1.7320508075688772},"251":{"tf":1.7320508075688772},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"131":{"tf":1.0}}}},"z":{"df":1,"docs":{"228":{"tf":2.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"131":{"tf":1.0},"200":{"tf":1.0},"66":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"14":{"tf":1.0},"17":{"tf":1.7320508075688772}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":2.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":4,"docs":{"142":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"57":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"213":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"107":{"tf":1.0},"115":{"tf":1.0},"144":{"tf":2.0},"152":{"tf":1.0},"156":{"tf":1.0},"223":{"tf":1.0},"255":{"tf":1.0},"3":{"tf":1.0},"47":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"128":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":4,"docs":{"129":{"tf":1.0},"139":{"tf":1.0},"210":{"tf":1.0},"247":{"tf":1.4142135623730951}}}},"df":159,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"102":{"tf":2.8284271247461903},"103":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"106":{"tf":2.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"11":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":2.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":2.23606797749979},"126":{"tf":2.449489742783178},"127":{"tf":1.7320508075688772},"128":{"tf":1.0},"129":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"133":{"tf":2.449489742783178},"134":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"137":{"tf":2.23606797749979},"139":{"tf":3.1622776601683795},"14":{"tf":1.7320508075688772},"141":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":2.0},"147":{"tf":2.0},"148":{"tf":2.23606797749979},"149":{"tf":2.0},"15":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":2.0},"155":{"tf":1.0},"156":{"tf":2.8284271247461903},"157":{"tf":1.7320508075688772},"158":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.7320508075688772},"169":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":2.0},"176":{"tf":2.23606797749979},"179":{"tf":1.0},"18":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":2.0},"19":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":1.7320508075688772},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":3.3166247903554},"214":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"226":{"tf":1.7320508075688772},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"230":{"tf":1.0},"238":{"tf":1.7320508075688772},"24":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":3.1622776601683795},"249":{"tf":2.8284271247461903},"25":{"tf":1.0},"250":{"tf":2.6457513110645907},"251":{"tf":3.4641016151377544},"252":{"tf":1.0},"253":{"tf":2.449489742783178},"254":{"tf":1.7320508075688772},"255":{"tf":2.8284271247461903},"256":{"tf":1.7320508075688772},"27":{"tf":1.0},"271":{"tf":1.0},"29":{"tf":1.7320508075688772},"32":{"tf":1.0},"34":{"tf":2.0},"36":{"tf":1.7320508075688772},"37":{"tf":2.6457513110645907},"39":{"tf":1.0},"41":{"tf":1.4142135623730951},"44":{"tf":2.0},"45":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"52":{"tf":2.23606797749979},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":2.449489742783178},"60":{"tf":2.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"72":{"tf":1.0},"73":{"tf":2.449489742783178},"75":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"94":{"tf":2.23606797749979},"95":{"tf":1.4142135623730951},"96":{"tf":2.0},"97":{"tf":2.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"(":{"a":{"df":1,"docs":{"204":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":3,"docs":{"176":{"tf":1.0},"195":{"tf":1.0},"57":{"tf":2.23606797749979}},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"107":{"tf":2.23606797749979},"108":{"tf":1.0},"57":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"107":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"z":{"df":9,"docs":{"131":{"tf":1.0},"139":{"tf":1.4142135623730951},"176":{"tf":1.0},"190":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"52":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.23606797749979},"89":{"tf":1.4142135623730951}},"e":{">":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"139":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"126":{"tf":1.0},"251":{"tf":1.0},"4":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"f":{"8":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"114":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772}},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"(":{"df":2,"docs":{"114":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"114":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772}}},"df":5,"docs":{"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":2.449489742783178},"45":{"tf":1.0},"48":{"tf":1.7320508075688772}}}},"{":{"2":{"1":{"1":{"d":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"191":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"3":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"121":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"218":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"1":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"_":{"_":{".":{"_":{"_":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"223":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"118":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"3":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"223":{"tf":1.0}}}}}},"df":1,"docs":{"223":{"tf":1.4142135623730951}}}}}}},"df":8,"docs":{"118":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"128":{"tf":2.0},"216":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.7320508075688772},"224":{"tf":1.0}}},"2":{".":{"_":{"_":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"118":{"tf":1.4142135623730951},"119":{"tf":2.0},"128":{"tf":1.0},"216":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0}}},"3":{"df":1,"docs":{"119":{"tf":1.4142135623730951}}},"4":{"(":{"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":1,"docs":{"123":{"tf":1.4142135623730951}}}}}}}}},"df":2,"docs":{"119":{"tf":1.0},"123":{"tf":1.0}}},"6":{"(":{"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":1,"docs":{"123":{"tf":1.4142135623730951}}}}}}}}},"df":1,"docs":{"123":{"tf":1.0}}},"[":{"0":{".":{".":{"3":{"df":1,"docs":{"121":{"tf":1.0}}},"4":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":1,"docs":{"120":{"tf":1.0}}}},"a":{"df":0,"docs":{},"l":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"210":{"tf":1.4142135623730951},"251":{"tf":1.0},"85":{"tf":2.8284271247461903}},"i":{"d":{"df":9,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"15":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"227":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":48,"docs":{"122":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":2.449489742783178},"128":{"tf":2.0},"131":{"tf":2.6457513110645907},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"145":{"tf":1.4142135623730951},"15":{"tf":2.0},"165":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"211":{"tf":1.0},"213":{"tf":3.4641016151377544},"216":{"tf":1.4142135623730951},"220":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"251":{"tf":2.0},"252":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.4142135623730951},"34":{"tf":2.0},"37":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":2.6457513110645907},"75":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":2.0}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"216":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{".":{"_":{"_":{"df":1,"docs":{"220":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"_":{"_":{"df":1,"docs":{"220":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"_":{"a":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":29,"docs":{"13":{"tf":1.7320508075688772},"14":{"tf":1.7320508075688772},"143":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.7320508075688772},"17":{"tf":2.0},"176":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"213":{"tf":2.6457513110645907},"215":{"tf":1.0},"22":{"tf":1.7320508075688772},"243":{"tf":1.7320508075688772},"248":{"tf":2.6457513110645907},"250":{"tf":2.23606797749979},"251":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":2.0},"45":{"tf":1.0},"59":{"tf":2.0},"64":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":1.0},"89":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"145":{"tf":1.0},"227":{"tf":1.0},"249":{"tf":1.0},"60":{"tf":2.0},"69":{"tf":1.4142135623730951},"77":{"tf":1.0}}}},"t":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"255":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"176":{"tf":1.0},"247":{"tf":1.0}}}}}}},"df":22,"docs":{"114":{"tf":1.0},"118":{"tf":2.0},"120":{"tf":1.0},"121":{"tf":1.7320508075688772},"123":{"tf":2.0},"125":{"tf":1.0},"131":{"tf":1.0},"142":{"tf":1.4142135623730951},"183":{"tf":2.0},"188":{"tf":2.23606797749979},"191":{"tf":1.0},"204":{"tf":1.7320508075688772},"216":{"tf":1.7320508075688772},"218":{"tf":2.0},"22":{"tf":1.4142135623730951},"246":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"56":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":2.0},"97":{"tf":2.449489742783178}},"e":{"c":{"!":{"(":{"1":{"df":1,"docs":{"118":{"tf":1.0}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"118":{"tf":1.0}}}}},"df":0,"docs":{}},"[":{"\"":{"b":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"0":{"df":2,"docs":{"119":{"tf":1.0},"220":{"tf":1.4142135623730951}}},"1":{"0":{"4":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":11,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"142":{"tf":1.0},"191":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.7320508075688772},"224":{"tf":1.0}}},"2":{"df":2,"docs":{"120":{"tf":1.0},"224":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{",":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"b":{"a":{"df":0,"docs":{},"r":{",":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"1":{"1":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},":":{":":{"_":{"_":{"(":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"[":{"1":{"df":2,"docs":{"118":{"tf":1.0},"120":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"118":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"118":{"tf":1.4142135623730951},"218":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"122":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"1":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"_":{"_":{"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":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"[":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{},"i":{"3":{"2":{"df":5,"docs":{"119":{"tf":1.4142135623730951},"121":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"224":{"tf":1.4142135623730951}}}}},"t":{"df":3,"docs":{"109":{"tf":1.4142135623730951},"113":{"tf":1.0},"126":{"tf":1.0}}},"u":{"8":{"df":3,"docs":{"113":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"4":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"121":{"tf":1.0}}}}}},"df":10,"docs":{"118":{"tf":1.7320508075688772},"119":{"tf":2.6457513110645907},"121":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"183":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"36":{"tf":1.0},"45":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":12,"docs":{"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":2.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":3.3166247903554},"123":{"tf":2.0},"124":{"tf":1.0},"127":{"tf":1.0},"45":{"tf":1.0}},"":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"r":{"b":{"=":{"\"":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"176":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"176":{"tf":1.0}},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"143":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":12,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"139":{"tf":1.0},"152":{"tf":1.0},"170":{"tf":1.0},"181":{"tf":1.0},"210":{"tf":1.0},"270":{"tf":1.0},"73":{"tf":1.0}},"f":{"df":1,"docs":{"226":{"tf":1.0}}}},"s":{"a":{"df":2,"docs":{"109":{"tf":1.0},"131":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"124":{"tf":1.0},"151":{"tf":1.4142135623730951},"19":{"tf":1.0},"251":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"227":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"i":{"a":{"df":10,"docs":{"210":{"tf":1.0},"227":{"tf":1.0},"246":{"tf":1.0},"251":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"60":{"tf":1.0},"75":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"109":{"tf":1.0},"131":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"113":{"tf":1.4142135623730951},"253":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"126":{"tf":3.3166247903554}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"12":{"tf":1.0},"144":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"t":{"df":15,"docs":{"121":{"tf":1.0},"143":{"tf":1.0},"154":{"tf":1.0},"158":{"tf":1.0},"169":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"48":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"14":{"tf":1.0},"17":{"tf":1.4142135623730951},"253":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"107":{"tf":1.0}}}},"y":{"df":34,"docs":{"106":{"tf":1.0},"113":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.4142135623730951},"137":{"tf":1.0},"139":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"182":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.7320508075688772},"211":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"224":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.0},"248":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"df":3,"docs":{"109":{"tf":1.4142135623730951},"204":{"tf":2.0},"226":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"235":{"tf":1.7320508075688772}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"i":{"b":{"df":0,"docs":{},"o":{"df":1,"docs":{"95":{"tf":2.6457513110645907}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"124":{"tf":1.0},"195":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":4,"docs":{"151":{"tf":1.0},"152":{"tf":1.0},"204":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"122":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"153":{"tf":1.0},"73":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"176":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":9,"docs":{"143":{"tf":1.0},"151":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"183":{"tf":1.0},"256":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"152":{"tf":1.0},"174":{"tf":1.0}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"h":{"=":{"6":{"df":2,"docs":{"176":{"tf":1.4142135623730951},"187":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"176":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"58":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"131":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"109":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.7320508075688772},"220":{"tf":1.0},"37":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":17,"docs":{"0":{"tf":1.0},"114":{"tf":1.0},"122":{"tf":1.4142135623730951},"144":{"tf":1.0},"147":{"tf":1.0},"176":{"tf":1.0},"199":{"tf":1.0},"211":{"tf":1.0},"248":{"tf":1.0},"271":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"95":{"tf":1.0}}}}}}},"z":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"141":{"tf":1.0},"176":{"tf":1.0},"249":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"214":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"d":{"df":3,"docs":{"145":{"tf":1.0},"195":{"tf":1.0},"52":{"tf":2.0}}},"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}},"d":{"df":1,"docs":{"226":{"tf":1.0}}},"df":72,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"157":{"tf":1.0},"163":{"tf":1.0},"176":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":2.0},"196":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":2.23606797749979},"220":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"230":{"tf":2.0},"24":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"251":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.4142135623730951},"78":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"89":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"l":{"d":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":23,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":2.23606797749979},"149":{"tf":1.0},"15":{"tf":1.0},"162":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"188":{"tf":1.0},"198":{"tf":1.0},"36":{"tf":2.0},"37":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"46":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":4,"docs":{"142":{"tf":1.0},"254":{"tf":1.0},"60":{"tf":1.0},"88":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"!":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":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":1,"docs":{"226":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"!":{"(":{"df":0,"docs":{},"f":{"df":3,"docs":{"109":{"tf":1.0},"183":{"tf":2.0},"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"60":{"tf":1.7320508075688772},"69":{"tf":1.0}}}}}},"df":14,"docs":{"12":{"tf":1.4142135623730951},"132":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"248":{"tf":2.0},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"256":{"tf":1.4142135623730951},"259":{"tf":1.7320508075688772},"47":{"tf":2.0},"48":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"162":{"tf":1.0},"207":{"tf":1.0},"249":{"tf":1.4142135623730951},"251":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"249":{"tf":1.0}}}}}}},"x":{"+":{"1":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"36":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":1,"docs":{"103":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"195":{"tf":1.0},"213":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"75":{"tf":2.0}}},"2":{")":{".":{"a":{"b":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"75":{"tf":1.7320508075688772}}},"3":{"df":0,"docs":{},"f":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}},"8":{"6":{"/":{"df":0,"docs":{},"x":{"8":{"6":{"_":{"6":{"4":{"df":1,"docs":{"254":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"246":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":6,"docs":{"246":{"tf":1.4142135623730951},"250":{"tf":1.7320508075688772},"253":{"tf":1.7320508075688772},"255":{"tf":1.0},"256":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"df":49,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"106":{"tf":2.23606797749979},"119":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"14":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":2.6457513110645907},"158":{"tf":1.0},"16":{"tf":3.0},"165":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"187":{"tf":3.872983346207417},"19":{"tf":1.4142135623730951},"194":{"tf":2.23606797749979},"195":{"tf":3.605551275463989},"197":{"tf":1.7320508075688772},"202":{"tf":1.4142135623730951},"205":{"tf":2.0},"210":{"tf":1.7320508075688772},"212":{"tf":3.1622776601683795},"213":{"tf":1.7320508075688772},"215":{"tf":2.6457513110645907},"218":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"227":{"tf":2.449489742783178},"23":{"tf":1.0},"248":{"tf":2.6457513110645907},"251":{"tf":2.6457513110645907},"253":{"tf":1.7320508075688772},"31":{"tf":2.6457513110645907},"32":{"tf":2.0},"33":{"tf":1.4142135623730951},"36":{"tf":2.449489742783178},"39":{"tf":2.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"60":{"tf":2.23606797749979},"69":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":2.8284271247461903},"75":{"tf":3.3166247903554},"85":{"tf":2.0},"86":{"tf":2.0},"97":{"tf":2.23606797749979}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"x":{"df":0,"docs":{},"x":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"75":{"tf":2.0}}},"2":{")":{")":{".":{"a":{"b":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"a":{"b":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"75":{"tf":1.4142135623730951}}},":":{"3":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"142":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}}}}}}}}},"df":35,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"106":{"tf":2.23606797749979},"136":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"14":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":2.23606797749979},"158":{"tf":1.0},"16":{"tf":1.4142135623730951},"18":{"tf":1.0},"182":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"195":{"tf":4.123105625617661},"197":{"tf":1.0},"202":{"tf":1.4142135623730951},"205":{"tf":2.0},"22":{"tf":1.4142135623730951},"227":{"tf":2.449489742783178},"23":{"tf":1.0},"248":{"tf":1.4142135623730951},"31":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"33":{"tf":2.0},"36":{"tf":2.23606797749979},"39":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"60":{"tf":2.23606797749979},"69":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":3.0},"75":{"tf":3.4641016151377544},"85":{"tf":2.23606797749979},"86":{"tf":2.23606797749979},"97":{"tf":2.6457513110645907}},"e":{"a":{"df":0,"docs":{},"h":{"df":2,"docs":{"139":{"tf":1.0},"182":{"tf":1.0}}},"r":{"df":2,"docs":{"181":{"tf":1.0},"226":{"tf":2.23606797749979}},"s":{"(":{"5":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{},"i":{"6":{"4":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"0":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"4":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"p":{"df":1,"docs":{"152":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"162":{"tf":1.0},"168":{"tf":1.0}}}}}}},"":{"df":0,"docs":{},"r":{"df":3,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"96":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":3,"docs":{"154":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0}}}}}}},"z":{"df":7,"docs":{"158":{"tf":1.0},"195":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"31":{"tf":1.7320508075688772},"54":{"tf":1.0},"70":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":7,"docs":{"169":{"tf":2.0},"176":{"tf":1.0},"187":{"tf":1.0},"203":{"tf":1.0},"60":{"tf":2.0},"62":{"tf":1.0},"88":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"256":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"z":{"df":0,"docs":{},"z":{"df":0,"docs":{},"z":{"df":1,"docs":{"213":{"tf":1.0}}}}}}}}},"title":{"root":{"1":{"df":1,"docs":{"4":{"tf":1.0}}},"2":{"df":1,"docs":{"5":{"tf":1.0}}},"3":{"df":1,"docs":{"6":{"tf":1.0}}},"4":{"df":1,"docs":{"7":{"tf":1.0}}},"5":{"df":1,"docs":{"8":{"tf":1.0}}},"6":{"df":1,"docs":{"9":{"tf":1.0}}},"7":{"df":1,"docs":{"10":{"tf":1.0}}},"8":{"df":2,"docs":{"11":{"tf":1.0},"114":{"tf":1.0}}},"9":{"df":1,"docs":{"12":{"tf":1.0}}},"a":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"252":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"155":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"223":{"tf":1.0},"224":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"254":{"tf":1.0}}}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"104":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":2,"docs":{"148":{"tf":1.0},"227":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}}},"r":{"c":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"185":{"tf":1.0},"186":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"100":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"246":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"262":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"105":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"n":{"c":{"/":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"264":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"264":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.0}}},"i":{"c":{"df":6,"docs":{"112":{"tf":1.0},"118":{"tf":1.0},"125":{"tf":1.0},"20":{"tf":1.0},"238":{"tf":1.0},"247":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"260":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"155":{"tf":1.0},"189":{"tf":1.0}}}}},"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"167":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"8":{"tf":1.0}}},"l":{"df":2,"docs":{"26":{"tf":1.0},"28":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"271":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"202":{"tf":1.0},"203":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"230":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"10":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}},"p":{"a":{"c":{"df":2,"docs":{"122":{"tf":1.0},"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"190":{"tf":1.0},"211":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"166":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"235":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"b":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"251":{"tf":1.0},"252":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"210":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":5,"docs":{"155":{"tf":1.0},"159":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.0},"3":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"160":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"116":{"tf":1.0},"142":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"270":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"222":{"tf":1.0},"223":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"65":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"130":{"tf":1.0}}},"t":{"df":2,"docs":{"131":{"tf":1.0},"136":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.4142135623730951},"158":{"tf":1.0},"168":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"180":{"tf":1.0},"181":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"138":{"tf":1.0},"231":{"tf":1.0}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"93":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"18":{"tf":1.0},"19":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"154":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"180":{"tf":1.0},"182":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"o":{"c":{"df":8,"docs":{"160":{"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},"171":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"232":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":2,"docs":{"101":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"3":{"tf":1.0}}}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"197":{"tf":1.0},"207":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"60":{"tf":1.0},"80":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"190":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"244":{"tf":1.0}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"162":{"tf":1.0},"31":{"tf":1.0},"75":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":6,"docs":{"163":{"tf":1.0},"208":{"tf":1.0},"32":{"tf":1.0},"76":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"250":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"154":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":1,"docs":{"61":{"tf":1.0}}}}},"n":{"df":2,"docs":{"149":{"tf":1.0},"213":{"tf":1.0}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"213":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"159":{"tf":1.0},"175":{"tf":1.0}},"i":{"df":1,"docs":{"107":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"209":{"tf":1.0},"214":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"265":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"106":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"243":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"129":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"124":{"tf":1.0},"126":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"189":{"tf":1.0}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"b":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"f":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"79":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"133":{"tf":1.0},"96":{"tf":1.0}}}}}}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"114":{"tf":1.0},"120":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"212":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"172":{"tf":1.0},"246":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"214":{"tf":1.0},"248":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"22":{"tf":1.0}},"r":{"df":1,"docs":{"261":{"tf":1.0}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}}},"df":6,"docs":{"217":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"126":{"tf":1.0}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"255":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"249":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"b":{"df":1,"docs":{"129":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"155":{"tf":1.0},"268":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":7,"docs":{"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"165":{"tf":1.0},"7":{"tf":1.0}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"257":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"149":{"tf":1.0}}}},"p":{"df":1,"docs":{"147":{"tf":1.0}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"254":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"239":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":7,"docs":{"116":{"tf":1.0},"196":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"253":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"150":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"168":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"207":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"37":{"tf":1.0},"59":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"157":{"tf":1.0},"186":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"170":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"225":{"tf":1.0},"226":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"204":{"tf":1.0},"41":{"tf":1.0}}}},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"173":{"tf":1.0}}}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"204":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"189":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"249":{"tf":1.0},"250":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0}}},"df":0,"docs":{}}},"df":7,"docs":{"112":{"tf":1.0},"118":{"tf":1.0},"125":{"tf":1.0},"183":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"256":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":1,"docs":{"9":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"135":{"tf":1.0},"191":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"176":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"128":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"106":{"tf":1.0},"95":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"137":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"37":{"tf":1.0},"59":{"tf":1.0}}}},"df":1,"docs":{"129":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"239":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"67":{"tf":1.0},"73":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"266":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"188":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"179":{"tf":1.0},"58":{"tf":1.0}},"l":{"df":0,"docs":{},"n":{"df":2,"docs":{"177":{"tf":1.0},"179":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"b":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"158":{"tf":1.0}}}}},"df":2,"docs":{"156":{"tf":1.0},"157":{"tf":1.0}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"24":{"tf":1.0}}},"k":{"df":1,"docs":{"203":{"tf":1.0}}}}},"c":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"205":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"10":{"tf":1.0},"11":{"tf":1.0}}}},"df":1,"docs":{"157":{"tf":1.0}},"f":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"235":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"250":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"140":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"215":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"4":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"109":{"tf":1.0},"207":{"tf":1.0},"40":{"tf":1.0}}}},"n":{"df":1,"docs":{"1":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"12":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"103":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"15":{"tf":1.0},"194":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"236":{"tf":1.0}}}},"n":{"d":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"154":{"tf":1.0}}}},"df":0,"docs":{}}},"h":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"16":{"tf":1.0},"72":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":1,"docs":{"225":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"121":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"10":{"tf":1.0}}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"268":{"tf":1.0}}},"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":{"30":{"tf":1.0}}}}}}},"i":{"c":{"df":4,"docs":{"102":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"123":{"tf":1.0}}}}},"r":{"df":3,"docs":{"113":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":14,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"187":{"tf":1.0},"269":{"tf":1.0},"43":{"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},"53":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"216":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"252":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"c":{"df":2,"docs":{"240":{"tf":1.0},"242":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":2,"docs":{"198":{"tf":1.0},"200":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"253":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"169":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"245":{"tf":1.0},"268":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":11,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"134":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"119":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":17,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"148":{"tf":1.0},"20":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"29":{"tf":1.0},"42":{"tf":1.0},"56":{"tf":1.0},"96":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"206":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"26":{"tf":1.0},"261":{"tf":1.0},"29":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"266":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"245":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"228":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"17":{"tf":1.0}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"247":{"tf":1.0}}}},"df":5,"docs":{"149":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"238":{"tf":1.0},"95":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"8":{"df":1,"docs":{"50":{"tf":1.0}}},"df":1,"docs":{"114":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"13":{"tf":1.0},"17":{"tf":1.0},"243":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"119":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"117":{"tf":1.0},"123":{"tf":1.0}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"235":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"12":{"tf":1.0},"259":{"tf":1.0},"9":{"tf":1.0}}}}}}},"x":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}});