diff --git a/404.html b/404.html index 484bea2..08ba60b 100644 --- a/404.html +++ b/404.html @@ -91,7 +91,9 @@ - + diff --git a/about-this-guide.html b/about-this-guide.html index 9da4d68..84fba92 100644 --- a/about-this-guide.html +++ b/about-this-guide.html @@ -90,7 +90,9 @@ - + diff --git a/appendix/fun.html b/appendix/fun.html index b3b81a9..4c7b865 100644 --- a/appendix/fun.html +++ b/appendix/fun.html @@ -90,7 +90,9 @@ - + diff --git a/appendix/learning-resources.html b/appendix/learning-resources.html index c099f01..b7bf187 100644 --- a/appendix/learning-resources.html +++ b/appendix/learning-resources.html @@ -90,7 +90,9 @@ - + diff --git a/architecture/rspack/intro.html b/architecture/rspack/intro.html index 90540ac..f38802c 100644 --- a/architecture/rspack/intro.html +++ b/architecture/rspack/intro.html @@ -90,7 +90,9 @@ - + diff --git a/architecture/rspack/loader.html b/architecture/rspack/loader.html index 3746f5f..d2bad09 100644 --- a/architecture/rspack/loader.html +++ b/architecture/rspack/loader.html @@ -90,7 +90,9 @@ - + diff --git a/architecture/webpack/dependency.html b/architecture/webpack/dependency.html index 939b197..f2316ea 100644 --- a/architecture/webpack/dependency.html +++ b/architecture/webpack/dependency.html @@ -90,7 +90,9 @@ - + diff --git a/architecture/webpack/intro.html b/architecture/webpack/intro.html index 73becf7..f34a882 100644 --- a/architecture/webpack/intro.html +++ b/architecture/webpack/intro.html @@ -90,7 +90,9 @@ - + diff --git a/architecture/webpack/loader.html b/architecture/webpack/loader.html index f83aab1..70be4a3 100644 --- a/architecture/webpack/loader.html +++ b/architecture/webpack/loader.html @@ -90,7 +90,9 @@ - + diff --git a/building/intro.html b/building/intro.html index 8e61efa..4949a1c 100644 --- a/building/intro.html +++ b/building/intro.html @@ -90,7 +90,9 @@ - + diff --git a/building/prerequisites.html b/building/prerequisites.html index 2d62d2d..3268a0a 100644 --- a/building/prerequisites.html +++ b/building/prerequisites.html @@ -90,7 +90,9 @@ - + diff --git a/building/suggested.html b/building/suggested.html index ba7ddb1..9d80c3b 100644 --- a/building/suggested.html +++ b/building/suggested.html @@ -90,7 +90,9 @@ - + diff --git a/contributing/intro.html b/contributing/intro.html index 448bcdf..2bec16e 100644 --- a/contributing/intro.html +++ b/contributing/intro.html @@ -90,7 +90,9 @@ - + diff --git a/contributing/managing-labels.html b/contributing/managing-labels.html index 05a3cbf..f5f41ac 100644 --- a/contributing/managing-labels.html +++ b/contributing/managing-labels.html @@ -90,7 +90,9 @@ - + diff --git a/contributing/repro.html b/contributing/repro.html index 8fe5306..a31e189 100644 --- a/contributing/repro.html +++ b/contributing/repro.html @@ -90,7 +90,9 @@ - + diff --git a/contributing/team.html b/contributing/team.html index 7f38c92..d323c6e 100644 --- a/contributing/team.html +++ b/contributing/team.html @@ -90,7 +90,9 @@ - + diff --git a/css/chrome.css b/css/chrome.css index 2314f7a..8b78255 100644 --- a/css/chrome.css +++ b/css/chrome.css @@ -269,8 +269,14 @@ pre > .buttons button { /* On mobile, make it easier to tap buttons. */ padding: 0.3rem 1rem; } + + .sidebar-resize-indicator { + /* Hide resize indicator on devices with limited accuracy */ + display: none; + } } pre > code { + display: block; padding: 1rem; } @@ -422,22 +428,35 @@ ul#searchresults span.teaser em { position: absolute; cursor: col-resize; width: 0; - right: 0; + right: calc(var(--sidebar-resize-indicator-width) * -1); top: 0; bottom: 0; + display: flex; + align-items: center; +} + +.sidebar-resize-handle .sidebar-resize-indicator { + width: 100%; + height: 12px; + background-color: var(--icons); + margin-inline-start: var(--sidebar-resize-indicator-space); +} + +[dir=rtl] .sidebar .sidebar-resize-handle { + left: calc(var(--sidebar-resize-indicator-width) * -1); + right: unset; } -[dir=rtl] .sidebar .sidebar-resize-handle { right: unset; left: 0; } .js .sidebar .sidebar-resize-handle { cursor: col-resize; - width: 5px; + width: calc(var(--sidebar-resize-indicator-width) - var(--sidebar-resize-indicator-space)); } /* sidebar-hidden */ #sidebar-toggle-anchor:not(:checked) ~ .sidebar { - transform: translateX(calc(0px - var(--sidebar-width))); + transform: translateX(calc(0px - var(--sidebar-width) - var(--sidebar-resize-indicator-width))); z-index: -1; } [dir=rtl] #sidebar-toggle-anchor:not(:checked) ~ .sidebar { - transform: translateX(var(--sidebar-width)); + transform: translateX(calc(var(--sidebar-width) + var(--sidebar-resize-indicator-width))); } .sidebar::-webkit-scrollbar { background: var(--sidebar-bg); @@ -448,15 +467,15 @@ ul#searchresults span.teaser em { /* sidebar-visible */ #sidebar-toggle-anchor:checked ~ .page-wrapper { - transform: translateX(var(--sidebar-width)); + transform: translateX(calc(var(--sidebar-width) + var(--sidebar-resize-indicator-width))); } [dir=rtl] #sidebar-toggle-anchor:checked ~ .page-wrapper { - transform: translateX(calc(0px - var(--sidebar-width))); + transform: translateX(calc(0px - var(--sidebar-width) - var(--sidebar-resize-indicator-width))); } @media only screen and (min-width: 620px) { #sidebar-toggle-anchor:checked ~ .page-wrapper { transform: none; - margin-inline-start: var(--sidebar-width); + margin-inline-start: calc(var(--sidebar-width) + var(--sidebar-resize-indicator-width)); } [dir=rtl] #sidebar-toggle-anchor:checked ~ .page-wrapper { transform: none; diff --git a/css/print.css b/css/print.css index dcf0ba6..80ec3a5 100644 --- a/css/print.css +++ b/css/print.css @@ -7,7 +7,7 @@ } #page-wrapper.page-wrapper { - transform: none; + transform: none !important; margin-inline-start: 0px; overflow-y: initial; } diff --git a/css/variables.css b/css/variables.css index 10a7590..0da55e8 100644 --- a/css/variables.css +++ b/css/variables.css @@ -3,6 +3,8 @@ :root { --sidebar-width: 300px; + --sidebar-resize-indicator-width: 8px; + --sidebar-resize-indicator-space: 2px; --page-padding: 15px; --content-max-width: 750px; --menu-bar-height: 50px; diff --git a/debugging/intro.html b/debugging/intro.html index e9f2683..517b085 100644 --- a/debugging/intro.html +++ b/debugging/intro.html @@ -90,7 +90,9 @@ - + @@ -188,7 +190,10 @@

Tracing

Use the RSPACK_PROFILE environment variable for displaying trace information

RSPACK_PROFILE=TRACE=layer=logger rspack build
-RSPACK_PROFILE='TRACE=layer=logger&filter=rspack_core::compiler::compilation' rspack build # filter for an event
+# filter for an event
+RSPACK_PROFILE='TRACE=layer=logger&filter=rspack_core::compiler::compilation' rspack build
+# disable ansi color escape codes
+NO_COLOR=1 RSPACK_PROFILE=TRACE=layer=logger rspack build
 

oxc_resolver

oxc_resolver emits some tracing information for debugging purposes.

diff --git a/debugging/mix-debug.html b/debugging/mix-debug.html index 3bd65f1..f87e03c 100644 --- a/debugging/mix-debug.html +++ b/debugging/mix-debug.html @@ -90,7 +90,9 @@ - + diff --git a/getting-started.html b/getting-started.html index 104b733..0bcc7b5 100644 --- a/getting-started.html +++ b/getting-started.html @@ -90,7 +90,9 @@ - + diff --git a/highlight.js b/highlight.js index 180385b..3256c00 100644 --- a/highlight.js +++ b/highlight.js @@ -3,4 +3,51 @@ License: BSD-3-Clause Copyright (c) 2006-2020, Ivan Sagalaev */ -var hljs=function(){"use strict";function e(n){Object.freeze(n);var t="function"==typeof n;return Object.getOwnPropertyNames(n).forEach((function(r){!Object.hasOwnProperty.call(n,r)||null===n[r]||"object"!=typeof n[r]&&"function"!=typeof n[r]||t&&("caller"===r||"callee"===r||"arguments"===r)||Object.isFrozen(n[r])||e(n[r])})),n}class n{constructor(e){void 0===e.data&&(e.data={}),this.data=e.data}ignoreMatch(){this.ignore=!0}}function t(e){return e.replace(/&/g,"&").replace(//g,">").replace(/"/g,""").replace(/'/g,"'")}function r(e,...n){var t={};for(const n in e)t[n]=e[n];return n.forEach((function(e){for(const n in e)t[n]=e[n]})),t}function a(e){return e.nodeName.toLowerCase()}var i=Object.freeze({__proto__:null,escapeHTML:t,inherit:r,nodeStream:function(e){var n=[];return function e(t,r){for(var i=t.firstChild;i;i=i.nextSibling)3===i.nodeType?r+=i.nodeValue.length:1===i.nodeType&&(n.push({event:"start",offset:r,node:i}),r=e(i,r),a(i).match(/br|hr|img|input/)||n.push({event:"stop",offset:r,node:i}));return r}(e,0),n},mergeStreams:function(e,n,r){var i=0,s="",o=[];function l(){return e.length&&n.length?e[0].offset!==n[0].offset?e[0].offset"}function u(e){s+=""}function d(e){("start"===e.event?c:u)(e.node)}for(;e.length||n.length;){var g=l();if(s+=t(r.substring(i,g[0].offset)),i=g[0].offset,g===e){o.reverse().forEach(u);do{d(g.splice(0,1)[0]),g=l()}while(g===e&&g.length&&g[0].offset===i);o.reverse().forEach(c)}else"start"===g[0].event?o.push(g[0].node):o.pop(),d(g.splice(0,1)[0])}return s+t(r.substr(i))}});const s="",o=e=>!!e.kind;class l{constructor(e,n){this.buffer="",this.classPrefix=n.classPrefix,e.walk(this)}addText(e){this.buffer+=t(e)}openNode(e){if(!o(e))return;let n=e.kind;e.sublanguage||(n=`${this.classPrefix}${n}`),this.span(n)}closeNode(e){o(e)&&(this.buffer+=s)}value(){return this.buffer}span(e){this.buffer+=``}}class c{constructor(){this.rootNode={children:[]},this.stack=[this.rootNode]}get top(){return this.stack[this.stack.length-1]}get root(){return this.rootNode}add(e){this.top.children.push(e)}openNode(e){const n={kind:e,children:[]};this.add(n),this.stack.push(n)}closeNode(){if(this.stack.length>1)return this.stack.pop()}closeAllNodes(){for(;this.closeNode(););}toJSON(){return JSON.stringify(this.rootNode,null,4)}walk(e){return this.constructor._walk(e,this.rootNode)}static _walk(e,n){return"string"==typeof n?e.addText(n):n.children&&(e.openNode(n),n.children.forEach(n=>this._walk(e,n)),e.closeNode(n)),e}static _collapse(e){"string"!=typeof e&&e.children&&(e.children.every(e=>"string"==typeof e)?e.children=[e.children.join("")]:e.children.forEach(e=>{c._collapse(e)}))}}class u extends c{constructor(e){super(),this.options=e}addKeyword(e,n){""!==e&&(this.openNode(n),this.addText(e),this.closeNode())}addText(e){""!==e&&this.add(e)}addSublanguage(e,n){const t=e.root;t.kind=n,t.sublanguage=!0,this.add(t)}toHTML(){return new l(this,this.options).value()}finalize(){return!0}}function d(e){return e?"string"==typeof e?e:e.source:null}const g="(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)",h={begin:"\\\\[\\s\\S]",relevance:0},f={className:"string",begin:"'",end:"'",illegal:"\\n",contains:[h]},p={className:"string",begin:'"',end:'"',illegal:"\\n",contains:[h]},b={begin:/\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\b/},m=function(e,n,t={}){var a=r({className:"comment",begin:e,end:n,contains:[]},t);return a.contains.push(b),a.contains.push({className:"doctag",begin:"(?:TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):",relevance:0}),a},v=m("//","$"),x=m("/\\*","\\*/"),E=m("#","$");var _=Object.freeze({__proto__:null,IDENT_RE:"[a-zA-Z]\\w*",UNDERSCORE_IDENT_RE:"[a-zA-Z_]\\w*",NUMBER_RE:"\\b\\d+(\\.\\d+)?",C_NUMBER_RE:g,BINARY_NUMBER_RE:"\\b(0b[01]+)",RE_STARTERS_RE:"!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~",SHEBANG:(e={})=>{const n=/^#![ ]*\//;return e.binary&&(e.begin=function(...e){return e.map(e=>d(e)).join("")}(n,/.*\b/,e.binary,/\b.*/)),r({className:"meta",begin:n,end:/$/,relevance:0,"on:begin":(e,n)=>{0!==e.index&&n.ignoreMatch()}},e)},BACKSLASH_ESCAPE:h,APOS_STRING_MODE:f,QUOTE_STRING_MODE:p,PHRASAL_WORDS_MODE:b,COMMENT:m,C_LINE_COMMENT_MODE:v,C_BLOCK_COMMENT_MODE:x,HASH_COMMENT_MODE:E,NUMBER_MODE:{className:"number",begin:"\\b\\d+(\\.\\d+)?",relevance:0},C_NUMBER_MODE:{className:"number",begin:g,relevance:0},BINARY_NUMBER_MODE:{className:"number",begin:"\\b(0b[01]+)",relevance:0},CSS_NUMBER_MODE:{className:"number",begin:"\\b\\d+(\\.\\d+)?(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?",relevance:0},REGEXP_MODE:{begin:/(?=\/[^/\n]*\/)/,contains:[{className:"regexp",begin:/\//,end:/\/[gimuy]*/,illegal:/\n/,contains:[h,{begin:/\[/,end:/\]/,relevance:0,contains:[h]}]}]},TITLE_MODE:{className:"title",begin:"[a-zA-Z]\\w*",relevance:0},UNDERSCORE_TITLE_MODE:{className:"title",begin:"[a-zA-Z_]\\w*",relevance:0},METHOD_GUARD:{begin:"\\.\\s*[a-zA-Z_]\\w*",relevance:0},END_SAME_AS_BEGIN:function(e){return Object.assign(e,{"on:begin":(e,n)=>{n.data._beginMatch=e[1]},"on:end":(e,n)=>{n.data._beginMatch!==e[1]&&n.ignoreMatch()}})}}),N="of and for in not or if then".split(" ");function w(e,n){return n?+n:function(e){return N.includes(e.toLowerCase())}(e)?0:1}const R=t,y=r,{nodeStream:k,mergeStreams:O}=i,M=Symbol("nomatch");return function(t){var a=[],i={},s={},o=[],l=!0,c=/(^(<[^>]+>|\t|)+|\n)/gm,g="Could not find the language '{}', did you forget to load/include a language module?";const h={disableAutodetect:!0,name:"Plain text",contains:[]};var f={noHighlightRe:/^(no-?highlight)$/i,languageDetectRe:/\blang(?:uage)?-([\w-]+)\b/i,classPrefix:"hljs-",tabReplace:null,useBR:!1,languages:null,__emitter:u};function p(e){return f.noHighlightRe.test(e)}function b(e,n,t,r){var a={code:n,language:e};S("before:highlight",a);var i=a.result?a.result:m(a.language,a.code,t,r);return i.code=a.code,S("after:highlight",i),i}function m(e,t,a,s){var o=t;function c(e,n){var t=E.case_insensitive?n[0].toLowerCase():n[0];return Object.prototype.hasOwnProperty.call(e.keywords,t)&&e.keywords[t]}function u(){null!=y.subLanguage?function(){if(""!==A){var e=null;if("string"==typeof y.subLanguage){if(!i[y.subLanguage])return void O.addText(A);e=m(y.subLanguage,A,!0,k[y.subLanguage]),k[y.subLanguage]=e.top}else e=v(A,y.subLanguage.length?y.subLanguage:null);y.relevance>0&&(I+=e.relevance),O.addSublanguage(e.emitter,e.language)}}():function(){if(!y.keywords)return void O.addText(A);let e=0;y.keywordPatternRe.lastIndex=0;let n=y.keywordPatternRe.exec(A),t="";for(;n;){t+=A.substring(e,n.index);const r=c(y,n);if(r){const[e,a]=r;O.addText(t),t="",I+=a,O.addKeyword(n[0],e)}else t+=n[0];e=y.keywordPatternRe.lastIndex,n=y.keywordPatternRe.exec(A)}t+=A.substr(e),O.addText(t)}(),A=""}function h(e){return e.className&&O.openNode(e.className),y=Object.create(e,{parent:{value:y}})}function p(e){return 0===y.matcher.regexIndex?(A+=e[0],1):(L=!0,0)}var b={};function x(t,r){var i=r&&r[0];if(A+=t,null==i)return u(),0;if("begin"===b.type&&"end"===r.type&&b.index===r.index&&""===i){if(A+=o.slice(r.index,r.index+1),!l){const n=Error("0 width match regex");throw n.languageName=e,n.badRule=b.rule,n}return 1}if(b=r,"begin"===r.type)return function(e){var t=e[0],r=e.rule;const a=new n(r),i=[r.__beforeBegin,r["on:begin"]];for(const n of i)if(n&&(n(e,a),a.ignore))return p(t);return r&&r.endSameAsBegin&&(r.endRe=RegExp(t.replace(/[-/\\^$*+?.()|[\]{}]/g,"\\$&"),"m")),r.skip?A+=t:(r.excludeBegin&&(A+=t),u(),r.returnBegin||r.excludeBegin||(A=t)),h(r),r.returnBegin?0:t.length}(r);if("illegal"===r.type&&!a){const e=Error('Illegal lexeme "'+i+'" for mode "'+(y.className||"")+'"');throw e.mode=y,e}if("end"===r.type){var s=function(e){var t=e[0],r=o.substr(e.index),a=function e(t,r,a){let i=function(e,n){var t=e&&e.exec(n);return t&&0===t.index}(t.endRe,a);if(i){if(t["on:end"]){const e=new n(t);t["on:end"](r,e),e.ignore&&(i=!1)}if(i){for(;t.endsParent&&t.parent;)t=t.parent;return t}}if(t.endsWithParent)return e(t.parent,r,a)}(y,e,r);if(!a)return M;var i=y;i.skip?A+=t:(i.returnEnd||i.excludeEnd||(A+=t),u(),i.excludeEnd&&(A=t));do{y.className&&O.closeNode(),y.skip||y.subLanguage||(I+=y.relevance),y=y.parent}while(y!==a.parent);return a.starts&&(a.endSameAsBegin&&(a.starts.endRe=a.endRe),h(a.starts)),i.returnEnd?0:t.length}(r);if(s!==M)return s}if("illegal"===r.type&&""===i)return 1;if(B>1e5&&B>3*r.index)throw Error("potential infinite loop, way more iterations than matches");return A+=i,i.length}var E=T(e);if(!E)throw console.error(g.replace("{}",e)),Error('Unknown language: "'+e+'"');var _=function(e){function n(n,t){return RegExp(d(n),"m"+(e.case_insensitive?"i":"")+(t?"g":""))}class t{constructor(){this.matchIndexes={},this.regexes=[],this.matchAt=1,this.position=0}addRule(e,n){n.position=this.position++,this.matchIndexes[this.matchAt]=n,this.regexes.push([n,e]),this.matchAt+=function(e){return RegExp(e.toString()+"|").exec("").length-1}(e)+1}compile(){0===this.regexes.length&&(this.exec=()=>null);const e=this.regexes.map(e=>e[1]);this.matcherRe=n(function(e,n="|"){for(var t=/\[(?:[^\\\]]|\\.)*\]|\(\??|\\([1-9][0-9]*)|\\./,r=0,a="",i=0;i0&&(a+=n),a+="(";o.length>0;){var l=t.exec(o);if(null==l){a+=o;break}a+=o.substring(0,l.index),o=o.substring(l.index+l[0].length),"\\"===l[0][0]&&l[1]?a+="\\"+(+l[1]+s):(a+=l[0],"("===l[0]&&r++)}a+=")"}return a}(e),!0),this.lastIndex=0}exec(e){this.matcherRe.lastIndex=this.lastIndex;const n=this.matcherRe.exec(e);if(!n)return null;const t=n.findIndex((e,n)=>n>0&&void 0!==e),r=this.matchIndexes[t];return n.splice(0,t),Object.assign(n,r)}}class a{constructor(){this.rules=[],this.multiRegexes=[],this.count=0,this.lastIndex=0,this.regexIndex=0}getMatcher(e){if(this.multiRegexes[e])return this.multiRegexes[e];const n=new t;return this.rules.slice(e).forEach(([e,t])=>n.addRule(e,t)),n.compile(),this.multiRegexes[e]=n,n}considerAll(){this.regexIndex=0}addRule(e,n){this.rules.push([e,n]),"begin"===n.type&&this.count++}exec(e){const n=this.getMatcher(this.regexIndex);n.lastIndex=this.lastIndex;const t=n.exec(e);return t&&(this.regexIndex+=t.position+1,this.regexIndex===this.count&&(this.regexIndex=0)),t}}function i(e,n){const t=e.input[e.index-1],r=e.input[e.index+e[0].length];"."!==t&&"."!==r||n.ignoreMatch()}if(e.contains&&e.contains.includes("self"))throw Error("ERR: contains `self` is not supported at the top-level of a language. See documentation.");return function t(s,o){const l=s;if(s.compiled)return l;s.compiled=!0,s.__beforeBegin=null,s.keywords=s.keywords||s.beginKeywords;let c=null;if("object"==typeof s.keywords&&(c=s.keywords.$pattern,delete s.keywords.$pattern),s.keywords&&(s.keywords=function(e,n){var t={};return"string"==typeof e?r("keyword",e):Object.keys(e).forEach((function(n){r(n,e[n])})),t;function r(e,r){n&&(r=r.toLowerCase()),r.split(" ").forEach((function(n){var r=n.split("|");t[r[0]]=[e,w(r[0],r[1])]}))}}(s.keywords,e.case_insensitive)),s.lexemes&&c)throw Error("ERR: Prefer `keywords.$pattern` to `mode.lexemes`, BOTH are not allowed. (see mode reference) ");return l.keywordPatternRe=n(s.lexemes||c||/\w+/,!0),o&&(s.beginKeywords&&(s.begin="\\b("+s.beginKeywords.split(" ").join("|")+")(?=\\b|\\s)",s.__beforeBegin=i),s.begin||(s.begin=/\B|\b/),l.beginRe=n(s.begin),s.endSameAsBegin&&(s.end=s.begin),s.end||s.endsWithParent||(s.end=/\B|\b/),s.end&&(l.endRe=n(s.end)),l.terminator_end=d(s.end)||"",s.endsWithParent&&o.terminator_end&&(l.terminator_end+=(s.end?"|":"")+o.terminator_end)),s.illegal&&(l.illegalRe=n(s.illegal)),void 0===s.relevance&&(s.relevance=1),s.contains||(s.contains=[]),s.contains=[].concat(...s.contains.map((function(e){return function(e){return e.variants&&!e.cached_variants&&(e.cached_variants=e.variants.map((function(n){return r(e,{variants:null},n)}))),e.cached_variants?e.cached_variants:function e(n){return!!n&&(n.endsWithParent||e(n.starts))}(e)?r(e,{starts:e.starts?r(e.starts):null}):Object.isFrozen(e)?r(e):e}("self"===e?s:e)}))),s.contains.forEach((function(e){t(e,l)})),s.starts&&t(s.starts,o),l.matcher=function(e){const n=new a;return e.contains.forEach(e=>n.addRule(e.begin,{rule:e,type:"begin"})),e.terminator_end&&n.addRule(e.terminator_end,{type:"end"}),e.illegal&&n.addRule(e.illegal,{type:"illegal"}),n}(l),l}(e)}(E),N="",y=s||_,k={},O=new f.__emitter(f);!function(){for(var e=[],n=y;n!==E;n=n.parent)n.className&&e.unshift(n.className);e.forEach(e=>O.openNode(e))}();var A="",I=0,S=0,B=0,L=!1;try{for(y.matcher.considerAll();;){B++,L?L=!1:(y.matcher.lastIndex=S,y.matcher.considerAll());const e=y.matcher.exec(o);if(!e)break;const n=x(o.substring(S,e.index),e);S=e.index+n}return x(o.substr(S)),O.closeAllNodes(),O.finalize(),N=O.toHTML(),{relevance:I,value:N,language:e,illegal:!1,emitter:O,top:y}}catch(n){if(n.message&&n.message.includes("Illegal"))return{illegal:!0,illegalBy:{msg:n.message,context:o.slice(S-100,S+100),mode:n.mode},sofar:N,relevance:0,value:R(o),emitter:O};if(l)return{illegal:!1,relevance:0,value:R(o),emitter:O,language:e,top:y,errorRaised:n};throw n}}function v(e,n){n=n||f.languages||Object.keys(i);var t=function(e){const n={relevance:0,emitter:new f.__emitter(f),value:R(e),illegal:!1,top:h};return n.emitter.addText(e),n}(e),r=t;return n.filter(T).filter(I).forEach((function(n){var a=m(n,e,!1);a.language=n,a.relevance>r.relevance&&(r=a),a.relevance>t.relevance&&(r=t,t=a)})),r.language&&(t.second_best=r),t}function x(e){return f.tabReplace||f.useBR?e.replace(c,e=>"\n"===e?f.useBR?"
":e:f.tabReplace?e.replace(/\t/g,f.tabReplace):e):e}function E(e){let n=null;const t=function(e){var n=e.className+" ";n+=e.parentNode?e.parentNode.className:"";const t=f.languageDetectRe.exec(n);if(t){var r=T(t[1]);return r||(console.warn(g.replace("{}",t[1])),console.warn("Falling back to no-highlight mode for this block.",e)),r?t[1]:"no-highlight"}return n.split(/\s+/).find(e=>p(e)||T(e))}(e);if(p(t))return;S("before:highlightBlock",{block:e,language:t}),f.useBR?(n=document.createElement("div")).innerHTML=e.innerHTML.replace(/\n/g,"").replace(//g,"\n"):n=e;const r=n.textContent,a=t?b(t,r,!0):v(r),i=k(n);if(i.length){const e=document.createElement("div");e.innerHTML=a.value,a.value=O(i,k(e),r)}a.value=x(a.value),S("after:highlightBlock",{block:e,result:a}),e.innerHTML=a.value,e.className=function(e,n,t){var r=n?s[n]:t,a=[e.trim()];return e.match(/\bhljs\b/)||a.push("hljs"),e.includes(r)||a.push(r),a.join(" ").trim()}(e.className,t,a.language),e.result={language:a.language,re:a.relevance,relavance:a.relevance},a.second_best&&(e.second_best={language:a.second_best.language,re:a.second_best.relevance,relavance:a.second_best.relevance})}const N=()=>{if(!N.called){N.called=!0;var e=document.querySelectorAll("pre code");a.forEach.call(e,E)}};function T(e){return e=(e||"").toLowerCase(),i[e]||i[s[e]]}function A(e,{languageName:n}){"string"==typeof e&&(e=[e]),e.forEach(e=>{s[e]=n})}function I(e){var n=T(e);return n&&!n.disableAutodetect}function S(e,n){var t=e;o.forEach((function(e){e[t]&&e[t](n)}))}Object.assign(t,{highlight:b,highlightAuto:v,fixMarkup:x,highlightBlock:E,configure:function(e){f=y(f,e)},initHighlighting:N,initHighlightingOnLoad:function(){window.addEventListener("DOMContentLoaded",N,!1)},registerLanguage:function(e,n){var r=null;try{r=n(t)}catch(n){if(console.error("Language definition for '{}' could not be registered.".replace("{}",e)),!l)throw n;console.error(n),r=h}r.name||(r.name=e),i[e]=r,r.rawDefinition=n.bind(null,t),r.aliases&&A(r.aliases,{languageName:e})},listLanguages:function(){return Object.keys(i)},getLanguage:T,registerAliases:A,requireLanguage:function(e){var n=T(e);if(n)return n;throw Error("The '{}' language is required, but not loaded.".replace("{}",e))},autoDetection:I,inherit:y,addPlugin:function(e){o.push(e)}}),t.debugMode=function(){l=!1},t.safeMode=function(){l=!0},t.versionString="10.1.1";for(const n in _)"object"==typeof _[n]&&e(_[n]);return Object.assign(t,_),t}({})}();"object"==typeof exports&&"undefined"!=typeof module&&(module.exports=hljs);hljs.registerLanguage("php",function(){"use strict";return function(e){var r={begin:"\\$+[a-zA-Z_-ÿ][a-zA-Z0-9_-ÿ]*"},t={className:"meta",variants:[{begin:/<\?php/,relevance:10},{begin:/<\?[=]?/},{begin:/\?>/}]},a={className:"string",contains:[e.BACKSLASH_ESCAPE,t],variants:[{begin:'b"',end:'"'},{begin:"b'",end:"'"},e.inherit(e.APOS_STRING_MODE,{illegal:null}),e.inherit(e.QUOTE_STRING_MODE,{illegal:null})]},n={variants:[e.BINARY_NUMBER_MODE,e.C_NUMBER_MODE]},i={keyword:"__CLASS__ __DIR__ __FILE__ __FUNCTION__ __LINE__ __METHOD__ __NAMESPACE__ __TRAIT__ die echo exit include include_once print require require_once array abstract and as binary bool boolean break callable case catch class clone const continue declare default do double else elseif empty enddeclare endfor endforeach endif endswitch endwhile eval extends final finally float for foreach from global goto if implements instanceof insteadof int integer interface isset iterable list new object or private protected public real return string switch throw trait try unset use var void while xor yield",literal:"false null true",built_in:"Error|0 AppendIterator ArgumentCountError ArithmeticError ArrayIterator ArrayObject AssertionError BadFunctionCallException BadMethodCallException CachingIterator CallbackFilterIterator CompileError Countable DirectoryIterator DivisionByZeroError DomainException EmptyIterator ErrorException Exception FilesystemIterator FilterIterator GlobIterator InfiniteIterator InvalidArgumentException IteratorIterator LengthException LimitIterator LogicException MultipleIterator NoRewindIterator OutOfBoundsException OutOfRangeException OuterIterator OverflowException ParentIterator ParseError RangeException RecursiveArrayIterator RecursiveCachingIterator RecursiveCallbackFilterIterator RecursiveDirectoryIterator RecursiveFilterIterator RecursiveIterator RecursiveIteratorIterator RecursiveRegexIterator RecursiveTreeIterator RegexIterator RuntimeException SeekableIterator SplDoublyLinkedList SplFileInfo SplFileObject SplFixedArray SplHeap SplMaxHeap SplMinHeap SplObjectStorage SplObserver SplObserver SplPriorityQueue SplQueue SplStack SplSubject SplSubject SplTempFileObject TypeError UnderflowException UnexpectedValueException ArrayAccess Closure Generator Iterator IteratorAggregate Serializable Throwable Traversable WeakReference Directory __PHP_Incomplete_Class parent php_user_filter self static stdClass"};return{aliases:["php","php3","php4","php5","php6","php7"],case_insensitive:!0,keywords:i,contains:[e.HASH_COMMENT_MODE,e.COMMENT("//","$",{contains:[t]}),e.COMMENT("/\\*","\\*/",{contains:[{className:"doctag",begin:"@[A-Za-z]+"}]}),e.COMMENT("__halt_compiler.+?;",!1,{endsWithParent:!0,keywords:"__halt_compiler"}),{className:"string",begin:/<<<['"]?\w+['"]?$/,end:/^\w+;?$/,contains:[e.BACKSLASH_ESCAPE,{className:"subst",variants:[{begin:/\$\w+/},{begin:/\{\$/,end:/\}/}]}]},t,{className:"keyword",begin:/\$this\b/},r,{begin:/(::|->)+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/},{className:"function",beginKeywords:"fn function",end:/[;{]/,excludeEnd:!0,illegal:"[$%\\[]",contains:[e.UNDERSCORE_TITLE_MODE,{className:"params",begin:"\\(",end:"\\)",excludeBegin:!0,excludeEnd:!0,keywords:i,contains:["self",r,e.C_BLOCK_COMMENT_MODE,a,n]}]},{className:"class",beginKeywords:"class interface",end:"{",excludeEnd:!0,illegal:/[:\(\$"]/,contains:[{beginKeywords:"extends implements"},e.UNDERSCORE_TITLE_MODE]},{beginKeywords:"namespace",end:";",illegal:/[\.']/,contains:[e.UNDERSCORE_TITLE_MODE]},{beginKeywords:"use",end:";",contains:[e.UNDERSCORE_TITLE_MODE]},{begin:"=>"},a,n]}}}());hljs.registerLanguage("nginx",function(){"use strict";return function(e){var n={className:"variable",variants:[{begin:/\$\d+/},{begin:/\$\{/,end:/}/},{begin:"[\\$\\@]"+e.UNDERSCORE_IDENT_RE}]},a={endsWithParent:!0,keywords:{$pattern:"[a-z/_]+",literal:"on off yes no true false none blocked debug info notice warn error crit select break last permanent redirect kqueue rtsig epoll poll /dev/poll"},relevance:0,illegal:"=>",contains:[e.HASH_COMMENT_MODE,{className:"string",contains:[e.BACKSLASH_ESCAPE,n],variants:[{begin:/"/,end:/"/},{begin:/'/,end:/'/}]},{begin:"([a-z]+):/",end:"\\s",endsWithParent:!0,excludeEnd:!0,contains:[n]},{className:"regexp",contains:[e.BACKSLASH_ESCAPE,n],variants:[{begin:"\\s\\^",end:"\\s|{|;",returnEnd:!0},{begin:"~\\*?\\s+",end:"\\s|{|;",returnEnd:!0},{begin:"\\*(\\.[a-z\\-]+)+"},{begin:"([a-z\\-]+\\.)+\\*"}]},{className:"number",begin:"\\b\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}(:\\d{1,5})?\\b"},{className:"number",begin:"\\b\\d+[kKmMgGdshdwy]*\\b",relevance:0},n]};return{name:"Nginx config",aliases:["nginxconf"],contains:[e.HASH_COMMENT_MODE,{begin:e.UNDERSCORE_IDENT_RE+"\\s+{",returnBegin:!0,end:"{",contains:[{className:"section",begin:e.UNDERSCORE_IDENT_RE}],relevance:0},{begin:e.UNDERSCORE_IDENT_RE+"\\s",end:";|{",returnBegin:!0,contains:[{className:"attribute",begin:e.UNDERSCORE_IDENT_RE,starts:a}],relevance:0}],illegal:"[^\\s\\}]"}}}());hljs.registerLanguage("csharp",function(){"use strict";return function(e){var n={keyword:"abstract as base bool break byte case catch char checked const continue decimal default delegate do double enum event explicit extern finally fixed float for foreach goto if implicit in int interface internal is lock long object operator out override params private protected public readonly ref sbyte sealed short sizeof stackalloc static string struct switch this try typeof uint ulong unchecked unsafe ushort using virtual void volatile while add alias ascending async await by descending dynamic equals from get global group into join let nameof on orderby partial remove select set value var when where yield",literal:"null false true"},i=e.inherit(e.TITLE_MODE,{begin:"[a-zA-Z](\\.?\\w)*"}),a={className:"number",variants:[{begin:"\\b(0b[01']+)"},{begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)(u|U|l|L|ul|UL|f|F|b|B)"},{begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"}],relevance:0},s={className:"string",begin:'@"',end:'"',contains:[{begin:'""'}]},t=e.inherit(s,{illegal:/\n/}),l={className:"subst",begin:"{",end:"}",keywords:n},r=e.inherit(l,{illegal:/\n/}),c={className:"string",begin:/\$"/,end:'"',illegal:/\n/,contains:[{begin:"{{"},{begin:"}}"},e.BACKSLASH_ESCAPE,r]},o={className:"string",begin:/\$@"/,end:'"',contains:[{begin:"{{"},{begin:"}}"},{begin:'""'},l]},g=e.inherit(o,{illegal:/\n/,contains:[{begin:"{{"},{begin:"}}"},{begin:'""'},r]});l.contains=[o,c,s,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,a,e.C_BLOCK_COMMENT_MODE],r.contains=[g,c,t,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,a,e.inherit(e.C_BLOCK_COMMENT_MODE,{illegal:/\n/})];var d={variants:[o,c,s,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},E={begin:"<",end:">",contains:[{beginKeywords:"in out"},i]},_=e.IDENT_RE+"(<"+e.IDENT_RE+"(\\s*,\\s*"+e.IDENT_RE+")*>)?(\\[\\])?",b={begin:"@"+e.IDENT_RE,relevance:0};return{name:"C#",aliases:["cs","c#"],keywords:n,illegal:/::/,contains:[e.COMMENT("///","$",{returnBegin:!0,contains:[{className:"doctag",variants:[{begin:"///",relevance:0},{begin:"\x3c!--|--\x3e"},{begin:""}]}]}),e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:"meta",begin:"#",end:"$",keywords:{"meta-keyword":"if else elif endif define undef warning error line region endregion pragma checksum"}},d,a,{beginKeywords:"class interface",end:/[{;=]/,illegal:/[^\s:,]/,contains:[{beginKeywords:"where class"},i,E,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{beginKeywords:"namespace",end:/[{;=]/,illegal:/[^\s:]/,contains:[i,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className:"meta",begin:"^\\s*\\[",excludeBegin:!0,end:"\\]",excludeEnd:!0,contains:[{className:"meta-string",begin:/"/,end:/"/}]},{beginKeywords:"new return throw await else",relevance:0},{className:"function",begin:"("+_+"\\s+)+"+e.IDENT_RE+"\\s*(\\<.+\\>)?\\s*\\(",returnBegin:!0,end:/\s*[{;=]/,excludeEnd:!0,keywords:n,contains:[{begin:e.IDENT_RE+"\\s*(\\<.+\\>)?\\s*\\(",returnBegin:!0,contains:[e.TITLE_MODE,E],relevance:0},{className:"params",begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:n,relevance:0,contains:[d,a,e.C_BLOCK_COMMENT_MODE]},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},b]}}}());hljs.registerLanguage("perl",function(){"use strict";return function(e){var n={$pattern:/[\w.]+/,keyword:"getpwent getservent quotemeta msgrcv scalar kill dbmclose undef lc ma syswrite tr send umask sysopen shmwrite vec qx utime local oct semctl localtime readpipe do return format read sprintf dbmopen pop getpgrp not getpwnam rewinddir qq fileno qw endprotoent wait sethostent bless s|0 opendir continue each sleep endgrent shutdown dump chomp connect getsockname die socketpair close flock exists index shmget sub for endpwent redo lstat msgctl setpgrp abs exit select print ref gethostbyaddr unshift fcntl syscall goto getnetbyaddr join gmtime symlink semget splice x|0 getpeername recv log setsockopt cos last reverse gethostbyname getgrnam study formline endhostent times chop length gethostent getnetent pack getprotoent getservbyname rand mkdir pos chmod y|0 substr endnetent printf next open msgsnd readdir use unlink getsockopt getpriority rindex wantarray hex system getservbyport endservent int chr untie rmdir prototype tell listen fork shmread ucfirst setprotoent else sysseek link getgrgid shmctl waitpid unpack getnetbyname reset chdir grep split require caller lcfirst until warn while values shift telldir getpwuid my getprotobynumber delete and sort uc defined srand accept package seekdir getprotobyname semop our rename seek if q|0 chroot sysread setpwent no crypt getc chown sqrt write setnetent setpriority foreach tie sin msgget map stat getlogin unless elsif truncate exec keys glob tied closedir ioctl socket readlink eval xor readline binmode setservent eof ord bind alarm pipe atan2 getgrent exp time push setgrent gt lt or ne m|0 break given say state when"},t={className:"subst",begin:"[$@]\\{",end:"\\}",keywords:n},s={begin:"->{",end:"}"},r={variants:[{begin:/\$\d/},{begin:/[\$%@](\^\w\b|#\w+(::\w+)*|{\w+}|\w+(::\w*)*)/},{begin:/[\$%@][^\s\w{]/,relevance:0}]},i=[e.BACKSLASH_ESCAPE,t,r],a=[r,e.HASH_COMMENT_MODE,e.COMMENT("^\\=\\w","\\=cut",{endsWithParent:!0}),s,{className:"string",contains:i,variants:[{begin:"q[qwxr]?\\s*\\(",end:"\\)",relevance:5},{begin:"q[qwxr]?\\s*\\[",end:"\\]",relevance:5},{begin:"q[qwxr]?\\s*\\{",end:"\\}",relevance:5},{begin:"q[qwxr]?\\s*\\|",end:"\\|",relevance:5},{begin:"q[qwxr]?\\s*\\<",end:"\\>",relevance:5},{begin:"qw\\s+q",end:"q",relevance:5},{begin:"'",end:"'",contains:[e.BACKSLASH_ESCAPE]},{begin:'"',end:'"'},{begin:"`",end:"`",contains:[e.BACKSLASH_ESCAPE]},{begin:"{\\w+}",contains:[],relevance:0},{begin:"-?\\w+\\s*\\=\\>",contains:[],relevance:0}]},{className:"number",begin:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",relevance:0},{begin:"(\\/\\/|"+e.RE_STARTERS_RE+"|\\b(split|return|print|reverse|grep)\\b)\\s*",keywords:"split return print reverse grep",relevance:0,contains:[e.HASH_COMMENT_MODE,{className:"regexp",begin:"(s|tr|y)/(\\\\.|[^/])*/(\\\\.|[^/])*/[a-z]*",relevance:10},{className:"regexp",begin:"(m|qr)?/",end:"/[a-z]*",contains:[e.BACKSLASH_ESCAPE],relevance:0}]},{className:"function",beginKeywords:"sub",end:"(\\s*\\(.*?\\))?[;{]",excludeEnd:!0,relevance:5,contains:[e.TITLE_MODE]},{begin:"-\\w\\b",relevance:0},{begin:"^__DATA__$",end:"^__END__$",subLanguage:"mojolicious",contains:[{begin:"^@@.*",end:"$",className:"comment"}]}];return t.contains=a,s.contains=a,{name:"Perl",aliases:["pl","pm"],keywords:n,contains:a}}}());hljs.registerLanguage("swift",function(){"use strict";return function(e){var i={keyword:"#available #colorLiteral #column #else #elseif #endif #file #fileLiteral #function #if #imageLiteral #line #selector #sourceLocation _ __COLUMN__ __FILE__ __FUNCTION__ __LINE__ Any as as! as? associatedtype associativity break case catch class continue convenience default defer deinit didSet do dynamic dynamicType else enum extension fallthrough false fileprivate final for func get guard if import in indirect infix init inout internal is lazy left let mutating nil none nonmutating open operator optional override postfix precedence prefix private protocol Protocol public repeat required rethrows return right self Self set static struct subscript super switch throw throws true try try! try? Type typealias unowned var weak where while willSet",literal:"true false nil",built_in:"abs advance alignof alignofValue anyGenerator assert assertionFailure bridgeFromObjectiveC bridgeFromObjectiveCUnconditional bridgeToObjectiveC bridgeToObjectiveCUnconditional c compactMap contains count countElements countLeadingZeros debugPrint debugPrintln distance dropFirst dropLast dump encodeBitsAsWords enumerate equal fatalError filter find getBridgedObjectiveCType getVaList indices insertionSort isBridgedToObjectiveC isBridgedVerbatimToObjectiveC isUniquelyReferenced isUniquelyReferencedNonObjC join lazy lexicographicalCompare map max maxElement min minElement numericCast overlaps partition posix precondition preconditionFailure print println quickSort readLine reduce reflect reinterpretCast reverse roundUpToAlignment sizeof sizeofValue sort split startsWith stride strideof strideofValue swap toString transcode underestimateCount unsafeAddressOf unsafeBitCast unsafeDowncast unsafeUnwrap unsafeReflect withExtendedLifetime withObjectAtPlusZero withUnsafePointer withUnsafePointerToObject withUnsafeMutablePointer withUnsafeMutablePointers withUnsafePointer withUnsafePointers withVaList zip"},n=e.COMMENT("/\\*","\\*/",{contains:["self"]}),t={className:"subst",begin:/\\\(/,end:"\\)",keywords:i,contains:[]},a={className:"string",contains:[e.BACKSLASH_ESCAPE,t],variants:[{begin:/"""/,end:/"""/},{begin:/"/,end:/"/}]},r={className:"number",begin:"\\b([\\d_]+(\\.[\\deE_]+)?|0x[a-fA-F0-9_]+(\\.[a-fA-F0-9p_]+)?|0b[01_]+|0o[0-7_]+)\\b",relevance:0};return t.contains=[r],{name:"Swift",keywords:i,contains:[a,e.C_LINE_COMMENT_MODE,n,{className:"type",begin:"\\b[A-Z][\\wÀ-ʸ']*[!?]"},{className:"type",begin:"\\b[A-Z][\\wÀ-ʸ']*",relevance:0},r,{className:"function",beginKeywords:"func",end:"{",excludeEnd:!0,contains:[e.inherit(e.TITLE_MODE,{begin:/[A-Za-z$_][0-9A-Za-z$_]*/}),{begin://},{className:"params",begin:/\(/,end:/\)/,endsParent:!0,keywords:i,contains:["self",r,a,e.C_BLOCK_COMMENT_MODE,{begin:":"}],illegal:/["']/}],illegal:/\[|%/},{className:"class",beginKeywords:"struct protocol class extension enum",keywords:i,end:"\\{",excludeEnd:!0,contains:[e.inherit(e.TITLE_MODE,{begin:/[A-Za-z$_][\u00C0-\u02B80-9A-Za-z$_]*/})]},{className:"meta",begin:"(@discardableResult|@warn_unused_result|@exported|@lazy|@noescape|@NSCopying|@NSManaged|@objc|@objcMembers|@convention|@required|@noreturn|@IBAction|@IBDesignable|@IBInspectable|@IBOutlet|@infix|@prefix|@postfix|@autoclosure|@testable|@available|@nonobjc|@NSApplicationMain|@UIApplicationMain|@dynamicMemberLookup|@propertyWrapper)\\b"},{beginKeywords:"import",end:/$/,contains:[e.C_LINE_COMMENT_MODE,n]}]}}}());hljs.registerLanguage("makefile",function(){"use strict";return function(e){var i={className:"variable",variants:[{begin:"\\$\\("+e.UNDERSCORE_IDENT_RE+"\\)",contains:[e.BACKSLASH_ESCAPE]},{begin:/\$[@%`]+/}]}]}]};return{name:"HTML, XML",aliases:["html","xhtml","rss","atom","xjb","xsd","xsl","plist","wsf","svg"],case_insensitive:!0,contains:[{className:"meta",begin:"",relevance:10,contains:[a,i,t,s,{begin:"\\[",end:"\\]",contains:[{className:"meta",begin:"",contains:[a,s,i,t]}]}]},e.COMMENT("\x3c!--","--\x3e",{relevance:10}),{begin:"<\\!\\[CDATA\\[",end:"\\]\\]>",relevance:10},n,{className:"meta",begin:/<\?xml/,end:/\?>/,relevance:10},{className:"tag",begin:")",end:">",keywords:{name:"style"},contains:[c],starts:{end:"",returnEnd:!0,subLanguage:["css","xml"]}},{className:"tag",begin:")",end:">",keywords:{name:"script"},contains:[c],starts:{end:"<\/script>",returnEnd:!0,subLanguage:["javascript","handlebars","xml"]}},{className:"tag",begin:"",contains:[{className:"name",begin:/[^\/><\s]+/,relevance:0},c]}]}}}());hljs.registerLanguage("bash",function(){"use strict";return function(e){const s={};Object.assign(s,{className:"variable",variants:[{begin:/\$[\w\d#@][\w\d_]*/},{begin:/\$\{/,end:/\}/,contains:[{begin:/:-/,contains:[s]}]}]});const t={className:"subst",begin:/\$\(/,end:/\)/,contains:[e.BACKSLASH_ESCAPE]},n={className:"string",begin:/"/,end:/"/,contains:[e.BACKSLASH_ESCAPE,s,t]};t.contains.push(n);const a={begin:/\$\(\(/,end:/\)\)/,contains:[{begin:/\d+#[0-9a-f]+/,className:"number"},e.NUMBER_MODE,s]},i=e.SHEBANG({binary:"(fish|bash|zsh|sh|csh|ksh|tcsh|dash|scsh)",relevance:10}),c={className:"function",begin:/\w[\w\d_]*\s*\(\s*\)\s*\{/,returnBegin:!0,contains:[e.inherit(e.TITLE_MODE,{begin:/\w[\w\d_]*/})],relevance:0};return{name:"Bash",aliases:["sh","zsh"],keywords:{$pattern:/\b-?[a-z\._]+\b/,keyword:"if then else elif fi for while in do done case esac function",literal:"true false",built_in:"break cd continue eval exec exit export getopts hash pwd readonly return shift test times trap umask unset alias bind builtin caller command declare echo enable help let local logout mapfile printf read readarray source type typeset ulimit unalias set shopt autoload bg bindkey bye cap chdir clone comparguments compcall compctl compdescribe compfiles compgroups compquote comptags comptry compvalues dirs disable disown echotc echoti emulate fc fg float functions getcap getln history integer jobs kill limit log noglob popd print pushd pushln rehash sched setcap setopt stat suspend ttyctl unfunction unhash unlimit unsetopt vared wait whence where which zcompile zformat zftp zle zmodload zparseopts zprof zpty zregexparse zsocket zstyle ztcp",_:"-ne -eq -lt -gt -f -d -e -s -l -a"},contains:[i,e.SHEBANG(),c,a,e.HASH_COMMENT_MODE,n,{className:"",begin:/\\"/},{className:"string",begin:/'/,end:/'/},s]}}}());hljs.registerLanguage("c-like",function(){"use strict";return function(e){function t(e){return"(?:"+e+")?"}var n="(decltype\\(auto\\)|"+t("[a-zA-Z_]\\w*::")+"[a-zA-Z_]\\w*"+t("<.*?>")+")",r={className:"keyword",begin:"\\b[a-z\\d_]*_t\\b"},a={className:"string",variants:[{begin:'(u8?|U|L)?"',end:'"',illegal:"\\n",contains:[e.BACKSLASH_ESCAPE]},{begin:"(u8?|U|L)?'(\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)|.)",end:"'",illegal:"."},e.END_SAME_AS_BEGIN({begin:/(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/,end:/\)([^()\\ ]{0,16})"/})]},i={className:"number",variants:[{begin:"\\b(0b[01']+)"},{begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)(u|U|l|L|ul|UL|f|F|b|B)"},{begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"}],relevance:0},s={className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,keywords:{"meta-keyword":"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include"},contains:[{begin:/\\\n/,relevance:0},e.inherit(a,{className:"meta-string"}),{className:"meta-string",begin:/<.*?>/,end:/$/,illegal:"\\n"},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},o={className:"title",begin:t("[a-zA-Z_]\\w*::")+e.IDENT_RE,relevance:0},c=t("[a-zA-Z_]\\w*::")+e.IDENT_RE+"\\s*\\(",l={keyword:"int float while private char char8_t char16_t char32_t catch import module export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const for static_cast|10 union namespace unsigned long volatile static protected bool template mutable if public friend do goto auto void enum else break extern using asm case typeid wchar_t short reinterpret_cast|10 default double register explicit signed typename try this switch continue inline delete alignas alignof constexpr consteval constinit decltype concept co_await co_return co_yield requires noexcept static_assert thread_local restrict final override atomic_bool atomic_char atomic_schar atomic_uchar atomic_short atomic_ushort atomic_int atomic_uint atomic_long atomic_ulong atomic_llong atomic_ullong new throw return and and_eq bitand bitor compl not not_eq or or_eq xor xor_eq",built_in:"std string wstring cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set pair bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap priority_queue make_pair array shared_ptr abort terminate abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf future isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf endl initializer_list unique_ptr _Bool complex _Complex imaginary _Imaginary",literal:"true false nullptr NULL"},d=[r,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,i,a],_={variants:[{begin:/=/,end:/;/},{begin:/\(/,end:/\)/},{beginKeywords:"new throw return else",end:/;/}],keywords:l,contains:d.concat([{begin:/\(/,end:/\)/,keywords:l,contains:d.concat(["self"]),relevance:0}]),relevance:0},u={className:"function",begin:"("+n+"[\\*&\\s]+)+"+c,returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:l,illegal:/[^\w\s\*&:<>]/,contains:[{begin:"decltype\\(auto\\)",keywords:l,relevance:0},{begin:c,returnBegin:!0,contains:[o],relevance:0},{className:"params",begin:/\(/,end:/\)/,keywords:l,relevance:0,contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,a,i,r,{begin:/\(/,end:/\)/,keywords:l,relevance:0,contains:["self",e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,a,i,r]}]},r,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,s]};return{aliases:["c","cc","h","c++","h++","hpp","hh","hxx","cxx"],keywords:l,disableAutodetect:!0,illegal:"",keywords:l,contains:["self",r]},{begin:e.IDENT_RE+"::",keywords:l},{className:"class",beginKeywords:"class struct",end:/[{;:]/,contains:[{begin://,contains:["self"]},e.TITLE_MODE]}]),exports:{preprocessor:s,strings:a,keywords:l}}}}());hljs.registerLanguage("coffeescript",function(){"use strict";const e=["as","in","of","if","for","while","finally","var","new","function","do","return","void","else","break","catch","instanceof","with","throw","case","default","try","switch","continue","typeof","delete","let","yield","const","class","debugger","async","await","static","import","from","export","extends"],n=["true","false","null","undefined","NaN","Infinity"],a=[].concat(["setInterval","setTimeout","clearInterval","clearTimeout","require","exports","eval","isFinite","isNaN","parseFloat","parseInt","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","escape","unescape"],["arguments","this","super","console","window","document","localStorage","module","global"],["Intl","DataView","Number","Math","Date","String","RegExp","Object","Function","Boolean","Error","Symbol","Set","Map","WeakSet","WeakMap","Proxy","Reflect","JSON","Promise","Float64Array","Int16Array","Int32Array","Int8Array","Uint16Array","Uint32Array","Float32Array","Array","Uint8Array","Uint8ClampedArray","ArrayBuffer"],["EvalError","InternalError","RangeError","ReferenceError","SyntaxError","TypeError","URIError"]);return function(r){var t={keyword:e.concat(["then","unless","until","loop","by","when","and","or","is","isnt","not"]).filter((e=>n=>!e.includes(n))(["var","const","let","function","static"])).join(" "),literal:n.concat(["yes","no","on","off"]).join(" "),built_in:a.concat(["npm","print"]).join(" ")},i="[A-Za-z$_][0-9A-Za-z$_]*",s={className:"subst",begin:/#\{/,end:/}/,keywords:t},o=[r.BINARY_NUMBER_MODE,r.inherit(r.C_NUMBER_MODE,{starts:{end:"(\\s*/)?",relevance:0}}),{className:"string",variants:[{begin:/'''/,end:/'''/,contains:[r.BACKSLASH_ESCAPE]},{begin:/'/,end:/'/,contains:[r.BACKSLASH_ESCAPE]},{begin:/"""/,end:/"""/,contains:[r.BACKSLASH_ESCAPE,s]},{begin:/"/,end:/"/,contains:[r.BACKSLASH_ESCAPE,s]}]},{className:"regexp",variants:[{begin:"///",end:"///",contains:[s,r.HASH_COMMENT_MODE]},{begin:"//[gim]{0,3}(?=\\W)",relevance:0},{begin:/\/(?![ *]).*?(?![\\]).\/[gim]{0,3}(?=\W)/}]},{begin:"@"+i},{subLanguage:"javascript",excludeBegin:!0,excludeEnd:!0,variants:[{begin:"```",end:"```"},{begin:"`",end:"`"}]}];s.contains=o;var c=r.inherit(r.TITLE_MODE,{begin:i}),l={className:"params",begin:"\\([^\\(]",returnBegin:!0,contains:[{begin:/\(/,end:/\)/,keywords:t,contains:["self"].concat(o)}]};return{name:"CoffeeScript",aliases:["coffee","cson","iced"],keywords:t,illegal:/\/\*/,contains:o.concat([r.COMMENT("###","###"),r.HASH_COMMENT_MODE,{className:"function",begin:"^\\s*"+i+"\\s*=\\s*(\\(.*\\))?\\s*\\B[-=]>",end:"[-=]>",returnBegin:!0,contains:[c,l]},{begin:/[:\(,=]\s*/,relevance:0,contains:[{className:"function",begin:"(\\(.*\\))?\\s*\\B[-=]>",end:"[-=]>",returnBegin:!0,contains:[l]}]},{className:"class",beginKeywords:"class",end:"$",illegal:/[:="\[\]]/,contains:[{beginKeywords:"extends",endsWithParent:!0,illegal:/[:="\[\]]/,contains:[c]},c]},{begin:i+":",end:":",returnBegin:!0,returnEnd:!0,relevance:0}])}}}());hljs.registerLanguage("ruby",function(){"use strict";return function(e){var n="[a-zA-Z_]\\w*[!?=]?|[-+~]\\@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?",a={keyword:"and then defined module in return redo if BEGIN retry end for self when next until do begin unless END rescue else break undef not super class case require yield alias while ensure elsif or include attr_reader attr_writer attr_accessor",literal:"true false nil"},s={className:"doctag",begin:"@[A-Za-z]+"},i={begin:"#<",end:">"},r=[e.COMMENT("#","$",{contains:[s]}),e.COMMENT("^\\=begin","^\\=end",{contains:[s],relevance:10}),e.COMMENT("^__END__","\\n$")],c={className:"subst",begin:"#\\{",end:"}",keywords:a},t={className:"string",contains:[e.BACKSLASH_ESCAPE,c],variants:[{begin:/'/,end:/'/},{begin:/"/,end:/"/},{begin:/`/,end:/`/},{begin:"%[qQwWx]?\\(",end:"\\)"},{begin:"%[qQwWx]?\\[",end:"\\]"},{begin:"%[qQwWx]?{",end:"}"},{begin:"%[qQwWx]?<",end:">"},{begin:"%[qQwWx]?/",end:"/"},{begin:"%[qQwWx]?%",end:"%"},{begin:"%[qQwWx]?-",end:"-"},{begin:"%[qQwWx]?\\|",end:"\\|"},{begin:/\B\?(\\\d{1,3}|\\x[A-Fa-f0-9]{1,2}|\\u[A-Fa-f0-9]{4}|\\?\S)\b/},{begin:/<<[-~]?'?(\w+)(?:.|\n)*?\n\s*\1\b/,returnBegin:!0,contains:[{begin:/<<[-~]?'?/},e.END_SAME_AS_BEGIN({begin:/(\w+)/,end:/(\w+)/,contains:[e.BACKSLASH_ESCAPE,c]})]}]},b={className:"params",begin:"\\(",end:"\\)",endsParent:!0,keywords:a},d=[t,i,{className:"class",beginKeywords:"class module",end:"$|;",illegal:/=/,contains:[e.inherit(e.TITLE_MODE,{begin:"[A-Za-z_]\\w*(::\\w+)*(\\?|\\!)?"}),{begin:"<\\s*",contains:[{begin:"("+e.IDENT_RE+"::)?"+e.IDENT_RE}]}].concat(r)},{className:"function",beginKeywords:"def",end:"$|;",contains:[e.inherit(e.TITLE_MODE,{begin:n}),b].concat(r)},{begin:e.IDENT_RE+"::"},{className:"symbol",begin:e.UNDERSCORE_IDENT_RE+"(\\!|\\?)?:",relevance:0},{className:"symbol",begin:":(?!\\s)",contains:[t,{begin:n}],relevance:0},{className:"number",begin:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",relevance:0},{begin:"(\\$\\W)|((\\$|\\@\\@?)(\\w+))"},{className:"params",begin:/\|/,end:/\|/,keywords:a},{begin:"("+e.RE_STARTERS_RE+"|unless)\\s*",keywords:"unless",contains:[i,{className:"regexp",contains:[e.BACKSLASH_ESCAPE,c],illegal:/\n/,variants:[{begin:"/",end:"/[a-z]*"},{begin:"%r{",end:"}[a-z]*"},{begin:"%r\\(",end:"\\)[a-z]*"},{begin:"%r!",end:"![a-z]*"},{begin:"%r\\[",end:"\\][a-z]*"}]}].concat(r),relevance:0}].concat(r);c.contains=d,b.contains=d;var g=[{begin:/^\s*=>/,starts:{end:"$",contains:d}},{className:"meta",begin:"^([>?]>|[\\w#]+\\(\\w+\\):\\d+:\\d+>|(\\w+-)?\\d+\\.\\d+\\.\\d(p\\d+)?[^>]+>)",starts:{end:"$",contains:d}}];return{name:"Ruby",aliases:["rb","gemspec","podspec","thor","irb"],keywords:a,illegal:/\/\*/,contains:r.concat(g).concat(d)}}}());hljs.registerLanguage("yaml",function(){"use strict";return function(e){var n="true false yes no null",a="[\\w#;/?:@&=+$,.~*\\'()[\\]]+",s={className:"string",relevance:0,variants:[{begin:/'/,end:/'/},{begin:/"/,end:/"/},{begin:/\S+/}],contains:[e.BACKSLASH_ESCAPE,{className:"template-variable",variants:[{begin:"{{",end:"}}"},{begin:"%{",end:"}"}]}]},i=e.inherit(s,{variants:[{begin:/'/,end:/'/},{begin:/"/,end:/"/},{begin:/[^\s,{}[\]]+/}]}),l={end:",",endsWithParent:!0,excludeEnd:!0,contains:[],keywords:n,relevance:0},t={begin:"{",end:"}",contains:[l],illegal:"\\n",relevance:0},g={begin:"\\[",end:"\\]",contains:[l],illegal:"\\n",relevance:0},b=[{className:"attr",variants:[{begin:"\\w[\\w :\\/.-]*:(?=[ \t]|$)"},{begin:'"\\w[\\w :\\/.-]*":(?=[ \t]|$)'},{begin:"'\\w[\\w :\\/.-]*':(?=[ \t]|$)"}]},{className:"meta",begin:"^---s*$",relevance:10},{className:"string",begin:"[\\|>]([0-9]?[+-])?[ ]*\\n( *)[\\S ]+\\n(\\2[\\S ]+\\n?)*"},{begin:"<%[%=-]?",end:"[%-]?%>",subLanguage:"ruby",excludeBegin:!0,excludeEnd:!0,relevance:0},{className:"type",begin:"!\\w+!"+a},{className:"type",begin:"!<"+a+">"},{className:"type",begin:"!"+a},{className:"type",begin:"!!"+a},{className:"meta",begin:"&"+e.UNDERSCORE_IDENT_RE+"$"},{className:"meta",begin:"\\*"+e.UNDERSCORE_IDENT_RE+"$"},{className:"bullet",begin:"\\-(?=[ ]|$)",relevance:0},e.HASH_COMMENT_MODE,{beginKeywords:n,keywords:{literal:n}},{className:"number",begin:"\\b[0-9]{4}(-[0-9][0-9]){0,2}([Tt \\t][0-9][0-9]?(:[0-9][0-9]){2})?(\\.[0-9]*)?([ \\t])*(Z|[-+][0-9][0-9]?(:[0-9][0-9])?)?\\b"},{className:"number",begin:e.C_NUMBER_RE+"\\b"},t,g,s],c=[...b];return c.pop(),c.push(i),l.contains=c,{name:"YAML",case_insensitive:!0,aliases:["yml","YAML"],contains:b}}}());hljs.registerLanguage("d",function(){"use strict";return function(e){var a={$pattern:e.UNDERSCORE_IDENT_RE,keyword:"abstract alias align asm assert auto body break byte case cast catch class const continue debug default delete deprecated do else enum export extern final finally for foreach foreach_reverse|10 goto if immutable import in inout int interface invariant is lazy macro mixin module new nothrow out override package pragma private protected public pure ref return scope shared static struct super switch synchronized template this throw try typedef typeid typeof union unittest version void volatile while with __FILE__ __LINE__ __gshared|10 __thread __traits __DATE__ __EOF__ __TIME__ __TIMESTAMP__ __VENDOR__ __VERSION__",built_in:"bool cdouble cent cfloat char creal dchar delegate double dstring float function idouble ifloat ireal long real short string ubyte ucent uint ulong ushort wchar wstring",literal:"false null true"},d="((0|[1-9][\\d_]*)|0[bB][01_]+|0[xX]([\\da-fA-F][\\da-fA-F_]*|_[\\da-fA-F][\\da-fA-F_]*))",n="\\\\(['\"\\?\\\\abfnrtv]|u[\\dA-Fa-f]{4}|[0-7]{1,3}|x[\\dA-Fa-f]{2}|U[\\dA-Fa-f]{8})|&[a-zA-Z\\d]{2,};",t={className:"number",begin:"\\b"+d+"(L|u|U|Lu|LU|uL|UL)?",relevance:0},_={className:"number",begin:"\\b(((0[xX](([\\da-fA-F][\\da-fA-F_]*|_[\\da-fA-F][\\da-fA-F_]*)\\.([\\da-fA-F][\\da-fA-F_]*|_[\\da-fA-F][\\da-fA-F_]*)|\\.?([\\da-fA-F][\\da-fA-F_]*|_[\\da-fA-F][\\da-fA-F_]*))[pP][+-]?(0|[1-9][\\d_]*|\\d[\\d_]*|[\\d_]+?\\d))|((0|[1-9][\\d_]*|\\d[\\d_]*|[\\d_]+?\\d)(\\.\\d*|([eE][+-]?(0|[1-9][\\d_]*|\\d[\\d_]*|[\\d_]+?\\d)))|\\d+\\.(0|[1-9][\\d_]*|\\d[\\d_]*|[\\d_]+?\\d)(0|[1-9][\\d_]*|\\d[\\d_]*|[\\d_]+?\\d)|\\.(0|[1-9][\\d_]*)([eE][+-]?(0|[1-9][\\d_]*|\\d[\\d_]*|[\\d_]+?\\d))?))([fF]|L|i|[fF]i|Li)?|"+d+"(i|[fF]i|Li))",relevance:0},r={className:"string",begin:"'("+n+"|.)",end:"'",illegal:"."},i={className:"string",begin:'"',contains:[{begin:n,relevance:0}],end:'"[cwd]?'},s=e.COMMENT("\\/\\+","\\+\\/",{contains:["self"],relevance:10});return{name:"D",keywords:a,contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,s,{className:"string",begin:'x"[\\da-fA-F\\s\\n\\r]*"[cwd]?',relevance:10},i,{className:"string",begin:'[rq]"',end:'"[cwd]?',relevance:5},{className:"string",begin:"`",end:"`[cwd]?"},{className:"string",begin:'q"\\{',end:'\\}"'},_,t,r,{className:"meta",begin:"^#!",end:"$",relevance:5},{className:"meta",begin:"#(line)",end:"$",relevance:5},{className:"keyword",begin:"@[a-zA-Z_][a-zA-Z_\\d]*"}]}}}());hljs.registerLanguage("properties",function(){"use strict";return function(e){var n="[ \\t\\f]*",t="("+n+"[:=]"+n+"|[ \\t\\f]+)",a="([^\\\\:= \\t\\f\\n]|\\\\.)+",s={end:t,relevance:0,starts:{className:"string",end:/$/,relevance:0,contains:[{begin:"\\\\\\n"}]}};return{name:".properties",case_insensitive:!0,illegal:/\S/,contains:[e.COMMENT("^\\s*[!#]","$"),{begin:"([^\\\\\\W:= \\t\\f\\n]|\\\\.)+"+t,returnBegin:!0,contains:[{className:"attr",begin:"([^\\\\\\W:= \\t\\f\\n]|\\\\.)+",endsParent:!0,relevance:0}],starts:s},{begin:a+t,returnBegin:!0,relevance:0,contains:[{className:"meta",begin:a,endsParent:!0,relevance:0}],starts:s},{className:"attr",relevance:0,begin:a+n+"$"}]}}}());hljs.registerLanguage("http",function(){"use strict";return function(e){var n="HTTP/[0-9\\.]+";return{name:"HTTP",aliases:["https"],illegal:"\\S",contains:[{begin:"^"+n,end:"$",contains:[{className:"number",begin:"\\b\\d{3}\\b"}]},{begin:"^[A-Z]+ (.*?) "+n+"$",returnBegin:!0,end:"$",contains:[{className:"string",begin:" ",end:" ",excludeBegin:!0,excludeEnd:!0},{begin:n},{className:"keyword",begin:"[A-Z]+"}]},{className:"attribute",begin:"^\\w",end:": ",excludeEnd:!0,illegal:"\\n|\\s|=",starts:{end:"$",relevance:0}},{begin:"\\n\\n",starts:{subLanguage:[],endsWithParent:!0}}]}}}());hljs.registerLanguage("haskell",function(){"use strict";return function(e){var n={variants:[e.COMMENT("--","$"),e.COMMENT("{-","-}",{contains:["self"]})]},i={className:"meta",begin:"{-#",end:"#-}"},a={className:"meta",begin:"^#",end:"$"},s={className:"type",begin:"\\b[A-Z][\\w']*",relevance:0},l={begin:"\\(",end:"\\)",illegal:'"',contains:[i,a,{className:"type",begin:"\\b[A-Z][\\w]*(\\((\\.\\.|,|\\w+)\\))?"},e.inherit(e.TITLE_MODE,{begin:"[_a-z][\\w']*"}),n]};return{name:"Haskell",aliases:["hs"],keywords:"let in if then else case of where do module import hiding qualified type data newtype deriving class instance as default infix infixl infixr foreign export ccall stdcall cplusplus jvm dotnet safe unsafe family forall mdo proc rec",contains:[{beginKeywords:"module",end:"where",keywords:"module where",contains:[l,n],illegal:"\\W\\.|;"},{begin:"\\bimport\\b",end:"$",keywords:"import qualified as hiding",contains:[l,n],illegal:"\\W\\.|;"},{className:"class",begin:"^(\\s*)?(class|instance)\\b",end:"where",keywords:"class family instance where",contains:[s,l,n]},{className:"class",begin:"\\b(data|(new)?type)\\b",end:"$",keywords:"data family type newtype deriving",contains:[i,s,l,{begin:"{",end:"}",contains:l.contains},n]},{beginKeywords:"default",end:"$",contains:[s,l,n]},{beginKeywords:"infix infixl infixr",end:"$",contains:[e.C_NUMBER_MODE,n]},{begin:"\\bforeign\\b",end:"$",keywords:"foreign import export ccall stdcall cplusplus jvm dotnet safe unsafe",contains:[s,e.QUOTE_STRING_MODE,n]},{className:"meta",begin:"#!\\/usr\\/bin\\/env runhaskell",end:"$"},i,a,e.QUOTE_STRING_MODE,e.C_NUMBER_MODE,s,e.inherit(e.TITLE_MODE,{begin:"^[_a-z][\\w']*"}),n,{begin:"->|<-"}]}}}());hljs.registerLanguage("handlebars",function(){"use strict";function e(...e){return e.map(e=>(function(e){return e?"string"==typeof e?e:e.source:null})(e)).join("")}return function(n){const a={"builtin-name":"action bindattr collection component concat debugger each each-in get hash if in input link-to loc log lookup mut outlet partial query-params render template textarea unbound unless view with yield"},t=/\[.*?\]/,s=/[^\s!"#%&'()*+,.\/;<=>@\[\\\]^`{|}~]+/,i=e("(",/'.*?'/,"|",/".*?"/,"|",t,"|",s,"|",/\.|\//,")+"),r=e("(",t,"|",s,")(?==)"),l={begin:i,lexemes:/[\w.\/]+/},c=n.inherit(l,{keywords:{literal:"true false undefined null"}}),o={begin:/\(/,end:/\)/},m={className:"attr",begin:r,relevance:0,starts:{begin:/=/,end:/=/,starts:{contains:[n.NUMBER_MODE,n.QUOTE_STRING_MODE,n.APOS_STRING_MODE,c,o]}}},d={contains:[n.NUMBER_MODE,n.QUOTE_STRING_MODE,n.APOS_STRING_MODE,{begin:/as\s+\|/,keywords:{keyword:"as"},end:/\|/,contains:[{begin:/\w+/}]},m,c,o],returnEnd:!0},g=n.inherit(l,{className:"name",keywords:a,starts:n.inherit(d,{end:/\)/})});o.contains=[g];const u=n.inherit(l,{keywords:a,className:"name",starts:n.inherit(d,{end:/}}/})}),b=n.inherit(l,{keywords:a,className:"name"}),h=n.inherit(l,{className:"name",keywords:a,starts:n.inherit(d,{end:/}}/})});return{name:"Handlebars",aliases:["hbs","html.hbs","html.handlebars","htmlbars"],case_insensitive:!0,subLanguage:"xml",contains:[{begin:/\\\{\{/,skip:!0},{begin:/\\\\(?=\{\{)/,skip:!0},n.COMMENT(/\{\{!--/,/--\}\}/),n.COMMENT(/\{\{!/,/\}\}/),{className:"template-tag",begin:/\{\{\{\{(?!\/)/,end:/\}\}\}\}/,contains:[u],starts:{end:/\{\{\{\{\//,returnEnd:!0,subLanguage:"xml"}},{className:"template-tag",begin:/\{\{\{\{\//,end:/\}\}\}\}/,contains:[b]},{className:"template-tag",begin:/\{\{#/,end:/\}\}/,contains:[u]},{className:"template-tag",begin:/\{\{(?=else\}\})/,end:/\}\}/,keywords:"else"},{className:"template-tag",begin:/\{\{\//,end:/\}\}/,contains:[b]},{className:"template-variable",begin:/\{\{\{/,end:/\}\}\}/,contains:[h]},{className:"template-variable",begin:/\{\{/,end:/\}\}/,contains:[h]}]}}}());hljs.registerLanguage("rust",function(){"use strict";return function(e){var n="([ui](8|16|32|64|128|size)|f(32|64))?",t="drop i8 i16 i32 i64 i128 isize u8 u16 u32 u64 u128 usize f32 f64 str char bool Box Option Result String Vec Copy Send Sized Sync Drop Fn FnMut FnOnce ToOwned Clone Debug PartialEq PartialOrd Eq Ord AsRef AsMut Into From Default Iterator Extend IntoIterator DoubleEndedIterator ExactSizeIterator SliceConcatExt ToString assert! assert_eq! bitflags! bytes! cfg! col! concat! concat_idents! debug_assert! debug_assert_eq! env! panic! file! format! format_args! include_bin! include_str! line! local_data_key! module_path! option_env! print! println! select! stringify! try! unimplemented! unreachable! vec! write! writeln! macro_rules! assert_ne! debug_assert_ne!";return{name:"Rust",aliases:["rs"],keywords:{$pattern:e.IDENT_RE+"!?",keyword:"abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self Self static struct super trait true try type typeof unsafe unsized use virtual where while yield",literal:"true false Some None Ok Err",built_in:t},illegal:""}]}}}());hljs.registerLanguage("cpp",function(){"use strict";return function(e){var t=e.getLanguage("c-like").rawDefinition();return t.disableAutodetect=!1,t.name="C++",t.aliases=["cc","c++","h++","hpp","hh","hxx","cxx"],t}}());hljs.registerLanguage("ini",function(){"use strict";function e(e){return e?"string"==typeof e?e:e.source:null}function n(...n){return n.map(n=>e(n)).join("")}return function(a){var s={className:"number",relevance:0,variants:[{begin:/([\+\-]+)?[\d]+_[\d_]+/},{begin:a.NUMBER_RE}]},i=a.COMMENT();i.variants=[{begin:/;/,end:/$/},{begin:/#/,end:/$/}];var t={className:"variable",variants:[{begin:/\$[\w\d"][\w\d_]*/},{begin:/\$\{(.*?)}/}]},r={className:"literal",begin:/\bon|off|true|false|yes|no\b/},l={className:"string",contains:[a.BACKSLASH_ESCAPE],variants:[{begin:"'''",end:"'''",relevance:10},{begin:'"""',end:'"""',relevance:10},{begin:'"',end:'"'},{begin:"'",end:"'"}]},c={begin:/\[/,end:/\]/,contains:[i,r,t,l,s,"self"],relevance:0},g="("+[/[A-Za-z0-9_-]+/,/"(\\"|[^"])*"/,/'[^']*'/].map(n=>e(n)).join("|")+")";return{name:"TOML, also INI",aliases:["toml"],case_insensitive:!0,illegal:/\S/,contains:[i,{className:"section",begin:/\[+/,end:/\]+/},{begin:n(g,"(\\s*\\.\\s*",g,")*",n("(?=",/\s*=\s*[^#\s]/,")")),className:"attr",starts:{end:/$/,contains:[i,c,r,t,l,s]}}]}}}());hljs.registerLanguage("objectivec",function(){"use strict";return function(e){var n=/[a-zA-Z@][a-zA-Z0-9_]*/,_={$pattern:n,keyword:"@interface @class @protocol @implementation"};return{name:"Objective-C",aliases:["mm","objc","obj-c"],keywords:{$pattern:n,keyword:"int float while char export sizeof typedef const struct for union unsigned long volatile static bool mutable if do return goto void enum else break extern asm case short default double register explicit signed typename this switch continue wchar_t inline readonly assign readwrite self @synchronized id typeof nonatomic super unichar IBOutlet IBAction strong weak copy in out inout bycopy byref oneway __strong __weak __block __autoreleasing @private @protected @public @try @property @end @throw @catch @finally @autoreleasepool @synthesize @dynamic @selector @optional @required @encode @package @import @defs @compatibility_alias __bridge __bridge_transfer __bridge_retained __bridge_retain __covariant __contravariant __kindof _Nonnull _Nullable _Null_unspecified __FUNCTION__ __PRETTY_FUNCTION__ __attribute__ getter setter retain unsafe_unretained nonnull nullable null_unspecified null_resettable class instancetype NS_DESIGNATED_INITIALIZER NS_UNAVAILABLE NS_REQUIRES_SUPER NS_RETURNS_INNER_POINTER NS_INLINE NS_AVAILABLE NS_DEPRECATED NS_ENUM NS_OPTIONS NS_SWIFT_UNAVAILABLE NS_ASSUME_NONNULL_BEGIN NS_ASSUME_NONNULL_END NS_REFINED_FOR_SWIFT NS_SWIFT_NAME NS_SWIFT_NOTHROW NS_DURING NS_HANDLER NS_ENDHANDLER NS_VALUERETURN NS_VOIDRETURN",literal:"false true FALSE TRUE nil YES NO NULL",built_in:"BOOL dispatch_once_t dispatch_queue_t dispatch_sync dispatch_async dispatch_once"},illegal:"/,end:/$/,illegal:"\\n"},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className:"class",begin:"("+_.keyword.split(" ").join("|")+")\\b",end:"({|$)",excludeEnd:!0,keywords:_,contains:[e.UNDERSCORE_TITLE_MODE]},{begin:"\\."+e.UNDERSCORE_IDENT_RE,relevance:0}]}}}());hljs.registerLanguage("apache",function(){"use strict";return function(e){var n={className:"number",begin:"\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}(:\\d{1,5})?"};return{name:"Apache config",aliases:["apacheconf"],case_insensitive:!0,contains:[e.HASH_COMMENT_MODE,{className:"section",begin:"",contains:[n,{className:"number",begin:":\\d{1,5}"},e.inherit(e.QUOTE_STRING_MODE,{relevance:0})]},{className:"attribute",begin:/\w+/,relevance:0,keywords:{nomarkup:"order deny allow setenv rewriterule rewriteengine rewritecond documentroot sethandler errordocument loadmodule options header listen serverroot servername"},starts:{end:/$/,relevance:0,keywords:{literal:"on off all deny allow"},contains:[{className:"meta",begin:"\\s\\[",end:"\\]$"},{className:"variable",begin:"[\\$%]\\{",end:"\\}",contains:["self",{className:"number",begin:"[\\$%]\\d+"}]},n,{className:"number",begin:"\\d+"},e.QUOTE_STRING_MODE]}}],illegal:/\S/}}}());hljs.registerLanguage("java",function(){"use strict";function e(e){return e?"string"==typeof e?e:e.source:null}function n(e){return a("(",e,")?")}function a(...n){return n.map(n=>e(n)).join("")}function s(...n){return"("+n.map(n=>e(n)).join("|")+")"}return function(e){var t="false synchronized int abstract float private char boolean var static null if const for true while long strictfp finally protected import native final void enum else break transient catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private module requires exports do",i={className:"meta",begin:"@[À-ʸa-zA-Z_$][À-ʸa-zA-Z_$0-9]*",contains:[{begin:/\(/,end:/\)/,contains:["self"]}]},r=e=>a("[",e,"]+([",e,"_]*[",e,"]+)?"),c={className:"number",variants:[{begin:`\\b(0[bB]${r("01")})[lL]?`},{begin:`\\b(0${r("0-7")})[dDfFlL]?`},{begin:a(/\b0[xX]/,s(a(r("a-fA-F0-9"),/\./,r("a-fA-F0-9")),a(r("a-fA-F0-9"),/\.?/),a(/\./,r("a-fA-F0-9"))),/([pP][+-]?(\d+))?/,/[fFdDlL]?/)},{begin:a(/\b/,s(a(/\d*\./,r("\\d")),r("\\d")),/[eE][+-]?[\d]+[dDfF]?/)},{begin:a(/\b/,r(/\d/),n(/\.?/),n(r(/\d/)),/[dDfFlL]?/)}],relevance:0};return{name:"Java",aliases:["jsp"],keywords:t,illegal:/<\/|#/,contains:[e.COMMENT("/\\*\\*","\\*/",{relevance:0,contains:[{begin:/\w+@/,relevance:0},{className:"doctag",begin:"@[A-Za-z]+"}]}),e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{className:"class",beginKeywords:"class interface",end:/[{;=]/,excludeEnd:!0,keywords:"class interface",illegal:/[:"\[\]]/,contains:[{beginKeywords:"extends implements"},e.UNDERSCORE_TITLE_MODE]},{beginKeywords:"new throw return else",relevance:0},{className:"function",begin:"([À-ʸa-zA-Z_$][À-ʸa-zA-Z_$0-9]*(<[À-ʸa-zA-Z_$][À-ʸa-zA-Z_$0-9]*(\\s*,\\s*[À-ʸa-zA-Z_$][À-ʸa-zA-Z_$0-9]*)*>)?\\s+)+"+e.UNDERSCORE_IDENT_RE+"\\s*\\(",returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:t,contains:[{begin:e.UNDERSCORE_IDENT_RE+"\\s*\\(",returnBegin:!0,relevance:0,contains:[e.UNDERSCORE_TITLE_MODE]},{className:"params",begin:/\(/,end:/\)/,keywords:t,relevance:0,contains:[i,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,e.C_NUMBER_MODE,e.C_BLOCK_COMMENT_MODE]},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},c,i]}}}());hljs.registerLanguage("x86asm",function(){"use strict";return function(s){return{name:"Intel x86 Assembly",case_insensitive:!0,keywords:{$pattern:"[.%]?"+s.IDENT_RE,keyword:"lock rep repe repz repne repnz xaquire xrelease bnd nobnd aaa aad aam aas adc add and arpl bb0_reset bb1_reset bound bsf bsr bswap bt btc btr bts call cbw cdq cdqe clc cld cli clts cmc cmp cmpsb cmpsd cmpsq cmpsw cmpxchg cmpxchg486 cmpxchg8b cmpxchg16b cpuid cpu_read cpu_write cqo cwd cwde daa das dec div dmint emms enter equ f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp femms feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisttp fisub fisubr fld fld1 fldcw fldenv fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnstcw fnstenv fnstsw fpatan fprem fprem1 fptan frndint frstor fsave fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomi fucomip fucomp fucompp fxam fxch fxtract fyl2x fyl2xp1 hlt ibts icebp idiv imul in inc incbin insb insd insw int int01 int1 int03 int3 into invd invpcid invlpg invlpga iret iretd iretq iretw jcxz jecxz jrcxz jmp jmpe lahf lar lds lea leave les lfence lfs lgdt lgs lidt lldt lmsw loadall loadall286 lodsb lodsd lodsq lodsw loop loope loopne loopnz loopz lsl lss ltr mfence monitor mov movd movq movsb movsd movsq movsw movsx movsxd movzx mul mwait neg nop not or out outsb outsd outsw packssdw packsswb packuswb paddb paddd paddsb paddsiw paddsw paddusb paddusw paddw pand pandn pause paveb pavgusb pcmpeqb pcmpeqd pcmpeqw pcmpgtb pcmpgtd pcmpgtw pdistib pf2id pfacc pfadd pfcmpeq pfcmpge pfcmpgt pfmax pfmin pfmul pfrcp pfrcpit1 pfrcpit2 pfrsqit1 pfrsqrt pfsub pfsubr pi2fd pmachriw pmaddwd pmagw pmulhriw pmulhrwa pmulhrwc pmulhw pmullw pmvgezb pmvlzb pmvnzb pmvzb pop popa popad popaw popf popfd popfq popfw por prefetch prefetchw pslld psllq psllw psrad psraw psrld psrlq psrlw psubb psubd psubsb psubsiw psubsw psubusb psubusw psubw punpckhbw punpckhdq punpckhwd punpcklbw punpckldq punpcklwd push pusha pushad pushaw pushf pushfd pushfq pushfw pxor rcl rcr rdshr rdmsr rdpmc rdtsc rdtscp ret retf retn rol ror rdm rsdc rsldt rsm rsts sahf sal salc sar sbb scasb scasd scasq scasw sfence sgdt shl shld shr shrd sidt sldt skinit smi smint smintold smsw stc std sti stosb stosd stosq stosw str sub svdc svldt svts swapgs syscall sysenter sysexit sysret test ud0 ud1 ud2b ud2 ud2a umov verr verw fwait wbinvd wrshr wrmsr xadd xbts xchg xlatb xlat xor cmove cmovz cmovne cmovnz cmova cmovnbe cmovae cmovnb cmovb cmovnae cmovbe cmovna cmovg cmovnle cmovge cmovnl cmovl cmovnge cmovle cmovng cmovc cmovnc cmovo cmovno cmovs cmovns cmovp cmovpe cmovnp cmovpo je jz jne jnz ja jnbe jae jnb jb jnae jbe jna jg jnle jge jnl jl jnge jle jng jc jnc jo jno js jns jpo jnp jpe jp sete setz setne setnz seta setnbe setae setnb setnc setb setnae setcset setbe setna setg setnle setge setnl setl setnge setle setng sets setns seto setno setpe setp setpo setnp addps addss andnps andps cmpeqps cmpeqss cmpleps cmpless cmpltps cmpltss cmpneqps cmpneqss cmpnleps cmpnless cmpnltps cmpnltss cmpordps cmpordss cmpunordps cmpunordss cmpps cmpss comiss cvtpi2ps cvtps2pi cvtsi2ss cvtss2si cvttps2pi cvttss2si divps divss ldmxcsr maxps maxss minps minss movaps movhps movlhps movlps movhlps movmskps movntps movss movups mulps mulss orps rcpps rcpss rsqrtps rsqrtss shufps sqrtps sqrtss stmxcsr subps subss ucomiss unpckhps unpcklps xorps fxrstor fxrstor64 fxsave fxsave64 xgetbv xsetbv xsave xsave64 xsaveopt xsaveopt64 xrstor xrstor64 prefetchnta prefetcht0 prefetcht1 prefetcht2 maskmovq movntq pavgb pavgw pextrw pinsrw pmaxsw pmaxub pminsw pminub pmovmskb pmulhuw psadbw pshufw pf2iw pfnacc pfpnacc pi2fw pswapd maskmovdqu clflush movntdq movnti movntpd movdqa movdqu movdq2q movq2dq paddq pmuludq pshufd pshufhw pshuflw pslldq psrldq psubq punpckhqdq punpcklqdq addpd addsd andnpd andpd cmpeqpd cmpeqsd cmplepd cmplesd cmpltpd cmpltsd cmpneqpd cmpneqsd cmpnlepd cmpnlesd cmpnltpd cmpnltsd cmpordpd cmpordsd cmpunordpd cmpunordsd cmppd comisd cvtdq2pd cvtdq2ps cvtpd2dq cvtpd2pi cvtpd2ps cvtpi2pd cvtps2dq cvtps2pd cvtsd2si cvtsd2ss cvtsi2sd cvtss2sd cvttpd2pi cvttpd2dq cvttps2dq cvttsd2si divpd divsd maxpd maxsd minpd minsd movapd movhpd movlpd movmskpd movupd mulpd mulsd orpd shufpd sqrtpd sqrtsd subpd subsd ucomisd unpckhpd unpcklpd xorpd addsubpd addsubps haddpd haddps hsubpd hsubps lddqu movddup movshdup movsldup clgi stgi vmcall vmclear vmfunc vmlaunch vmload vmmcall vmptrld vmptrst vmread vmresume vmrun vmsave vmwrite vmxoff vmxon invept invvpid pabsb pabsw pabsd palignr phaddw phaddd phaddsw phsubw phsubd phsubsw pmaddubsw pmulhrsw pshufb psignb psignw psignd extrq insertq movntsd movntss lzcnt blendpd blendps blendvpd blendvps dppd dpps extractps insertps movntdqa mpsadbw packusdw pblendvb pblendw pcmpeqq pextrb pextrd pextrq phminposuw pinsrb pinsrd pinsrq pmaxsb pmaxsd pmaxud pmaxuw pminsb pminsd pminud pminuw pmovsxbw pmovsxbd pmovsxbq pmovsxwd pmovsxwq pmovsxdq pmovzxbw pmovzxbd pmovzxbq pmovzxwd pmovzxwq pmovzxdq pmuldq pmulld ptest roundpd roundps roundsd roundss crc32 pcmpestri pcmpestrm pcmpistri pcmpistrm pcmpgtq popcnt getsec pfrcpv pfrsqrtv movbe aesenc aesenclast aesdec aesdeclast aesimc aeskeygenassist vaesenc vaesenclast vaesdec vaesdeclast vaesimc vaeskeygenassist vaddpd vaddps vaddsd vaddss vaddsubpd vaddsubps vandpd vandps vandnpd vandnps vblendpd vblendps vblendvpd vblendvps vbroadcastss vbroadcastsd vbroadcastf128 vcmpeq_ospd vcmpeqpd vcmplt_ospd vcmpltpd vcmple_ospd vcmplepd vcmpunord_qpd vcmpunordpd vcmpneq_uqpd vcmpneqpd vcmpnlt_uspd vcmpnltpd vcmpnle_uspd vcmpnlepd vcmpord_qpd vcmpordpd vcmpeq_uqpd vcmpnge_uspd vcmpngepd vcmpngt_uspd vcmpngtpd vcmpfalse_oqpd vcmpfalsepd vcmpneq_oqpd vcmpge_ospd vcmpgepd vcmpgt_ospd vcmpgtpd vcmptrue_uqpd vcmptruepd vcmplt_oqpd vcmple_oqpd vcmpunord_spd vcmpneq_uspd vcmpnlt_uqpd vcmpnle_uqpd vcmpord_spd vcmpeq_uspd vcmpnge_uqpd vcmpngt_uqpd vcmpfalse_ospd vcmpneq_ospd vcmpge_oqpd vcmpgt_oqpd vcmptrue_uspd vcmppd vcmpeq_osps vcmpeqps vcmplt_osps vcmpltps vcmple_osps vcmpleps vcmpunord_qps vcmpunordps vcmpneq_uqps vcmpneqps vcmpnlt_usps vcmpnltps vcmpnle_usps vcmpnleps vcmpord_qps vcmpordps vcmpeq_uqps vcmpnge_usps vcmpngeps vcmpngt_usps vcmpngtps vcmpfalse_oqps vcmpfalseps vcmpneq_oqps vcmpge_osps vcmpgeps vcmpgt_osps vcmpgtps vcmptrue_uqps vcmptrueps vcmplt_oqps vcmple_oqps vcmpunord_sps vcmpneq_usps vcmpnlt_uqps vcmpnle_uqps vcmpord_sps vcmpeq_usps vcmpnge_uqps vcmpngt_uqps vcmpfalse_osps vcmpneq_osps vcmpge_oqps vcmpgt_oqps vcmptrue_usps vcmpps vcmpeq_ossd vcmpeqsd vcmplt_ossd vcmpltsd vcmple_ossd vcmplesd vcmpunord_qsd vcmpunordsd vcmpneq_uqsd vcmpneqsd vcmpnlt_ussd vcmpnltsd vcmpnle_ussd vcmpnlesd vcmpord_qsd vcmpordsd vcmpeq_uqsd vcmpnge_ussd vcmpngesd vcmpngt_ussd vcmpngtsd vcmpfalse_oqsd vcmpfalsesd vcmpneq_oqsd vcmpge_ossd vcmpgesd vcmpgt_ossd vcmpgtsd vcmptrue_uqsd vcmptruesd vcmplt_oqsd vcmple_oqsd vcmpunord_ssd vcmpneq_ussd vcmpnlt_uqsd vcmpnle_uqsd vcmpord_ssd vcmpeq_ussd vcmpnge_uqsd vcmpngt_uqsd vcmpfalse_ossd vcmpneq_ossd vcmpge_oqsd vcmpgt_oqsd vcmptrue_ussd vcmpsd vcmpeq_osss vcmpeqss vcmplt_osss vcmpltss vcmple_osss vcmpless vcmpunord_qss vcmpunordss vcmpneq_uqss vcmpneqss vcmpnlt_usss vcmpnltss vcmpnle_usss vcmpnless vcmpord_qss vcmpordss vcmpeq_uqss vcmpnge_usss vcmpngess vcmpngt_usss vcmpngtss vcmpfalse_oqss vcmpfalsess vcmpneq_oqss vcmpge_osss vcmpgess vcmpgt_osss vcmpgtss vcmptrue_uqss vcmptruess vcmplt_oqss vcmple_oqss vcmpunord_sss vcmpneq_usss vcmpnlt_uqss vcmpnle_uqss vcmpord_sss vcmpeq_usss vcmpnge_uqss vcmpngt_uqss vcmpfalse_osss vcmpneq_osss vcmpge_oqss vcmpgt_oqss vcmptrue_usss vcmpss vcomisd vcomiss vcvtdq2pd vcvtdq2ps vcvtpd2dq vcvtpd2ps vcvtps2dq vcvtps2pd vcvtsd2si vcvtsd2ss vcvtsi2sd vcvtsi2ss vcvtss2sd vcvtss2si vcvttpd2dq vcvttps2dq vcvttsd2si vcvttss2si vdivpd vdivps vdivsd vdivss vdppd vdpps vextractf128 vextractps vhaddpd vhaddps vhsubpd vhsubps vinsertf128 vinsertps vlddqu vldqqu vldmxcsr vmaskmovdqu vmaskmovps vmaskmovpd vmaxpd vmaxps vmaxsd vmaxss vminpd vminps vminsd vminss vmovapd vmovaps vmovd vmovq vmovddup vmovdqa vmovqqa vmovdqu vmovqqu vmovhlps vmovhpd vmovhps vmovlhps vmovlpd vmovlps vmovmskpd vmovmskps vmovntdq vmovntqq vmovntdqa vmovntpd vmovntps vmovsd vmovshdup vmovsldup vmovss vmovupd vmovups vmpsadbw vmulpd vmulps vmulsd vmulss vorpd vorps vpabsb vpabsw vpabsd vpacksswb vpackssdw vpackuswb vpackusdw vpaddb vpaddw vpaddd vpaddq vpaddsb vpaddsw vpaddusb vpaddusw vpalignr vpand vpandn vpavgb vpavgw vpblendvb vpblendw vpcmpestri vpcmpestrm vpcmpistri vpcmpistrm vpcmpeqb vpcmpeqw vpcmpeqd vpcmpeqq vpcmpgtb vpcmpgtw vpcmpgtd vpcmpgtq vpermilpd vpermilps vperm2f128 vpextrb vpextrw vpextrd vpextrq vphaddw vphaddd vphaddsw vphminposuw vphsubw vphsubd vphsubsw vpinsrb vpinsrw vpinsrd vpinsrq vpmaddwd vpmaddubsw vpmaxsb vpmaxsw vpmaxsd vpmaxub vpmaxuw vpmaxud vpminsb vpminsw vpminsd vpminub vpminuw vpminud vpmovmskb vpmovsxbw vpmovsxbd vpmovsxbq vpmovsxwd vpmovsxwq vpmovsxdq vpmovzxbw vpmovzxbd vpmovzxbq vpmovzxwd vpmovzxwq vpmovzxdq vpmulhuw vpmulhrsw vpmulhw vpmullw vpmulld vpmuludq vpmuldq vpor vpsadbw vpshufb vpshufd vpshufhw vpshuflw vpsignb vpsignw vpsignd vpslldq vpsrldq vpsllw vpslld vpsllq vpsraw vpsrad vpsrlw vpsrld vpsrlq vptest vpsubb vpsubw vpsubd vpsubq vpsubsb vpsubsw vpsubusb vpsubusw vpunpckhbw vpunpckhwd vpunpckhdq vpunpckhqdq vpunpcklbw vpunpcklwd vpunpckldq vpunpcklqdq vpxor vrcpps vrcpss vrsqrtps vrsqrtss vroundpd vroundps vroundsd vroundss vshufpd vshufps vsqrtpd vsqrtps vsqrtsd vsqrtss vstmxcsr vsubpd vsubps vsubsd vsubss vtestps vtestpd vucomisd vucomiss vunpckhpd vunpckhps vunpcklpd vunpcklps vxorpd vxorps vzeroall vzeroupper pclmullqlqdq pclmulhqlqdq pclmullqhqdq pclmulhqhqdq pclmulqdq vpclmullqlqdq vpclmulhqlqdq vpclmullqhqdq vpclmulhqhqdq vpclmulqdq vfmadd132ps vfmadd132pd vfmadd312ps vfmadd312pd vfmadd213ps vfmadd213pd vfmadd123ps vfmadd123pd vfmadd231ps vfmadd231pd vfmadd321ps vfmadd321pd vfmaddsub132ps vfmaddsub132pd vfmaddsub312ps vfmaddsub312pd vfmaddsub213ps vfmaddsub213pd vfmaddsub123ps vfmaddsub123pd vfmaddsub231ps vfmaddsub231pd vfmaddsub321ps vfmaddsub321pd vfmsub132ps vfmsub132pd vfmsub312ps vfmsub312pd vfmsub213ps vfmsub213pd vfmsub123ps vfmsub123pd vfmsub231ps vfmsub231pd vfmsub321ps vfmsub321pd vfmsubadd132ps vfmsubadd132pd vfmsubadd312ps vfmsubadd312pd vfmsubadd213ps vfmsubadd213pd vfmsubadd123ps vfmsubadd123pd vfmsubadd231ps vfmsubadd231pd vfmsubadd321ps vfmsubadd321pd vfnmadd132ps vfnmadd132pd vfnmadd312ps vfnmadd312pd vfnmadd213ps vfnmadd213pd vfnmadd123ps vfnmadd123pd vfnmadd231ps vfnmadd231pd vfnmadd321ps vfnmadd321pd vfnmsub132ps vfnmsub132pd vfnmsub312ps vfnmsub312pd vfnmsub213ps vfnmsub213pd vfnmsub123ps vfnmsub123pd vfnmsub231ps vfnmsub231pd vfnmsub321ps vfnmsub321pd vfmadd132ss vfmadd132sd vfmadd312ss vfmadd312sd vfmadd213ss vfmadd213sd vfmadd123ss vfmadd123sd vfmadd231ss vfmadd231sd vfmadd321ss vfmadd321sd vfmsub132ss vfmsub132sd vfmsub312ss vfmsub312sd vfmsub213ss vfmsub213sd vfmsub123ss vfmsub123sd vfmsub231ss vfmsub231sd vfmsub321ss vfmsub321sd vfnmadd132ss vfnmadd132sd vfnmadd312ss vfnmadd312sd vfnmadd213ss vfnmadd213sd vfnmadd123ss vfnmadd123sd vfnmadd231ss vfnmadd231sd vfnmadd321ss vfnmadd321sd vfnmsub132ss vfnmsub132sd vfnmsub312ss vfnmsub312sd vfnmsub213ss vfnmsub213sd vfnmsub123ss vfnmsub123sd vfnmsub231ss vfnmsub231sd vfnmsub321ss vfnmsub321sd rdfsbase rdgsbase rdrand wrfsbase wrgsbase vcvtph2ps vcvtps2ph adcx adox rdseed clac stac xstore xcryptecb xcryptcbc xcryptctr xcryptcfb xcryptofb montmul xsha1 xsha256 llwpcb slwpcb lwpval lwpins vfmaddpd vfmaddps vfmaddsd vfmaddss vfmaddsubpd vfmaddsubps vfmsubaddpd vfmsubaddps vfmsubpd vfmsubps vfmsubsd vfmsubss vfnmaddpd vfnmaddps vfnmaddsd vfnmaddss vfnmsubpd vfnmsubps vfnmsubsd vfnmsubss vfrczpd vfrczps vfrczsd vfrczss vpcmov vpcomb vpcomd vpcomq vpcomub vpcomud vpcomuq vpcomuw vpcomw vphaddbd vphaddbq vphaddbw vphadddq vphaddubd vphaddubq vphaddubw vphaddudq vphadduwd vphadduwq vphaddwd vphaddwq vphsubbw vphsubdq vphsubwd vpmacsdd vpmacsdqh vpmacsdql vpmacssdd vpmacssdqh vpmacssdql vpmacsswd vpmacssww vpmacswd vpmacsww vpmadcsswd vpmadcswd vpperm vprotb vprotd vprotq vprotw vpshab vpshad vpshaq vpshaw vpshlb vpshld vpshlq vpshlw vbroadcasti128 vpblendd vpbroadcastb vpbroadcastw vpbroadcastd vpbroadcastq vpermd vpermpd vpermps vpermq vperm2i128 vextracti128 vinserti128 vpmaskmovd vpmaskmovq vpsllvd vpsllvq vpsravd vpsrlvd vpsrlvq vgatherdpd vgatherqpd vgatherdps vgatherqps vpgatherdd vpgatherqd vpgatherdq vpgatherqq xabort xbegin xend xtest andn bextr blci blcic blsi blsic blcfill blsfill blcmsk blsmsk blsr blcs bzhi mulx pdep pext rorx sarx shlx shrx tzcnt tzmsk t1mskc valignd valignq vblendmpd vblendmps vbroadcastf32x4 vbroadcastf64x4 vbroadcasti32x4 vbroadcasti64x4 vcompresspd vcompressps vcvtpd2udq vcvtps2udq vcvtsd2usi vcvtss2usi vcvttpd2udq vcvttps2udq vcvttsd2usi vcvttss2usi vcvtudq2pd vcvtudq2ps vcvtusi2sd vcvtusi2ss vexpandpd vexpandps vextractf32x4 vextractf64x4 vextracti32x4 vextracti64x4 vfixupimmpd vfixupimmps vfixupimmsd vfixupimmss vgetexppd vgetexpps vgetexpsd vgetexpss vgetmantpd vgetmantps vgetmantsd vgetmantss vinsertf32x4 vinsertf64x4 vinserti32x4 vinserti64x4 vmovdqa32 vmovdqa64 vmovdqu32 vmovdqu64 vpabsq vpandd vpandnd vpandnq vpandq vpblendmd vpblendmq vpcmpltd vpcmpled vpcmpneqd vpcmpnltd vpcmpnled vpcmpd vpcmpltq vpcmpleq vpcmpneqq vpcmpnltq vpcmpnleq vpcmpq vpcmpequd vpcmpltud vpcmpleud vpcmpnequd vpcmpnltud vpcmpnleud vpcmpud vpcmpequq vpcmpltuq vpcmpleuq vpcmpnequq vpcmpnltuq vpcmpnleuq vpcmpuq vpcompressd vpcompressq vpermi2d vpermi2pd vpermi2ps vpermi2q vpermt2d vpermt2pd vpermt2ps vpermt2q vpexpandd vpexpandq vpmaxsq vpmaxuq vpminsq vpminuq vpmovdb vpmovdw vpmovqb vpmovqd vpmovqw vpmovsdb vpmovsdw vpmovsqb vpmovsqd vpmovsqw vpmovusdb vpmovusdw vpmovusqb vpmovusqd vpmovusqw vpord vporq vprold vprolq vprolvd vprolvq vprord vprorq vprorvd vprorvq vpscatterdd vpscatterdq vpscatterqd vpscatterqq vpsraq vpsravq vpternlogd vpternlogq vptestmd vptestmq vptestnmd vptestnmq vpxord vpxorq vrcp14pd vrcp14ps vrcp14sd vrcp14ss vrndscalepd vrndscaleps vrndscalesd vrndscaless vrsqrt14pd vrsqrt14ps vrsqrt14sd vrsqrt14ss vscalefpd vscalefps vscalefsd vscalefss vscatterdpd vscatterdps vscatterqpd vscatterqps vshuff32x4 vshuff64x2 vshufi32x4 vshufi64x2 kandnw kandw kmovw knotw kortestw korw kshiftlw kshiftrw kunpckbw kxnorw kxorw vpbroadcastmb2q vpbroadcastmw2d vpconflictd vpconflictq vplzcntd vplzcntq vexp2pd vexp2ps vrcp28pd vrcp28ps vrcp28sd vrcp28ss vrsqrt28pd vrsqrt28ps vrsqrt28sd vrsqrt28ss vgatherpf0dpd vgatherpf0dps vgatherpf0qpd vgatherpf0qps vgatherpf1dpd vgatherpf1dps vgatherpf1qpd vgatherpf1qps vscatterpf0dpd vscatterpf0dps vscatterpf0qpd vscatterpf0qps vscatterpf1dpd vscatterpf1dps vscatterpf1qpd vscatterpf1qps prefetchwt1 bndmk bndcl bndcu bndcn bndmov bndldx bndstx sha1rnds4 sha1nexte sha1msg1 sha1msg2 sha256rnds2 sha256msg1 sha256msg2 hint_nop0 hint_nop1 hint_nop2 hint_nop3 hint_nop4 hint_nop5 hint_nop6 hint_nop7 hint_nop8 hint_nop9 hint_nop10 hint_nop11 hint_nop12 hint_nop13 hint_nop14 hint_nop15 hint_nop16 hint_nop17 hint_nop18 hint_nop19 hint_nop20 hint_nop21 hint_nop22 hint_nop23 hint_nop24 hint_nop25 hint_nop26 hint_nop27 hint_nop28 hint_nop29 hint_nop30 hint_nop31 hint_nop32 hint_nop33 hint_nop34 hint_nop35 hint_nop36 hint_nop37 hint_nop38 hint_nop39 hint_nop40 hint_nop41 hint_nop42 hint_nop43 hint_nop44 hint_nop45 hint_nop46 hint_nop47 hint_nop48 hint_nop49 hint_nop50 hint_nop51 hint_nop52 hint_nop53 hint_nop54 hint_nop55 hint_nop56 hint_nop57 hint_nop58 hint_nop59 hint_nop60 hint_nop61 hint_nop62 hint_nop63",built_in:"ip eip rip al ah bl bh cl ch dl dh sil dil bpl spl r8b r9b r10b r11b r12b r13b r14b r15b ax bx cx dx si di bp sp r8w r9w r10w r11w r12w r13w r14w r15w eax ebx ecx edx esi edi ebp esp eip r8d r9d r10d r11d r12d r13d r14d r15d rax rbx rcx rdx rsi rdi rbp rsp r8 r9 r10 r11 r12 r13 r14 r15 cs ds es fs gs ss st st0 st1 st2 st3 st4 st5 st6 st7 mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7 xmm8 xmm9 xmm10 xmm11 xmm12 xmm13 xmm14 xmm15 xmm16 xmm17 xmm18 xmm19 xmm20 xmm21 xmm22 xmm23 xmm24 xmm25 xmm26 xmm27 xmm28 xmm29 xmm30 xmm31 ymm0 ymm1 ymm2 ymm3 ymm4 ymm5 ymm6 ymm7 ymm8 ymm9 ymm10 ymm11 ymm12 ymm13 ymm14 ymm15 ymm16 ymm17 ymm18 ymm19 ymm20 ymm21 ymm22 ymm23 ymm24 ymm25 ymm26 ymm27 ymm28 ymm29 ymm30 ymm31 zmm0 zmm1 zmm2 zmm3 zmm4 zmm5 zmm6 zmm7 zmm8 zmm9 zmm10 zmm11 zmm12 zmm13 zmm14 zmm15 zmm16 zmm17 zmm18 zmm19 zmm20 zmm21 zmm22 zmm23 zmm24 zmm25 zmm26 zmm27 zmm28 zmm29 zmm30 zmm31 k0 k1 k2 k3 k4 k5 k6 k7 bnd0 bnd1 bnd2 bnd3 cr0 cr1 cr2 cr3 cr4 cr8 dr0 dr1 dr2 dr3 dr8 tr3 tr4 tr5 tr6 tr7 r0 r1 r2 r3 r4 r5 r6 r7 r0b r1b r2b r3b r4b r5b r6b r7b r0w r1w r2w r3w r4w r5w r6w r7w r0d r1d r2d r3d r4d r5d r6d r7d r0h r1h r2h r3h r0l r1l r2l r3l r4l r5l r6l r7l r8l r9l r10l r11l r12l r13l r14l r15l db dw dd dq dt ddq do dy dz resb resw resd resq rest resdq reso resy resz incbin equ times byte word dword qword nosplit rel abs seg wrt strict near far a32 ptr",meta:"%define %xdefine %+ %undef %defstr %deftok %assign %strcat %strlen %substr %rotate %elif %else %endif %if %ifmacro %ifctx %ifidn %ifidni %ifid %ifnum %ifstr %iftoken %ifempty %ifenv %error %warning %fatal %rep %endrep %include %push %pop %repl %pathsearch %depend %use %arg %stacksize %local %line %comment %endcomment .nolist __FILE__ __LINE__ __SECT__ __BITS__ __OUTPUT_FORMAT__ __DATE__ __TIME__ __DATE_NUM__ __TIME_NUM__ __UTC_DATE__ __UTC_TIME__ __UTC_DATE_NUM__ __UTC_TIME_NUM__ __PASS__ struc endstruc istruc at iend align alignb sectalign daz nodaz up down zero default option assume public bits use16 use32 use64 default section segment absolute extern global common cpu float __utf16__ __utf16le__ __utf16be__ __utf32__ __utf32le__ __utf32be__ __float8__ __float16__ __float32__ __float64__ __float80m__ __float80e__ __float128l__ __float128h__ __Infinity__ __QNaN__ __SNaN__ Inf NaN QNaN SNaN float8 float16 float32 float64 float80m float80e float128l float128h __FLOAT_DAZ__ __FLOAT_ROUND__ __FLOAT__"},contains:[s.COMMENT(";","$",{relevance:0}),{className:"number",variants:[{begin:"\\b(?:([0-9][0-9_]*)?\\.[0-9_]*(?:[eE][+-]?[0-9_]+)?|(0[Xx])?[0-9][0-9_]*\\.?[0-9_]*(?:[pP](?:[+-]?[0-9_]+)?)?)\\b",relevance:0},{begin:"\\$[0-9][0-9A-Fa-f]*",relevance:0},{begin:"\\b(?:[0-9A-Fa-f][0-9A-Fa-f_]*[Hh]|[0-9][0-9_]*[DdTt]?|[0-7][0-7_]*[QqOo]|[0-1][0-1_]*[BbYy])\\b"},{begin:"\\b(?:0[Xx][0-9A-Fa-f_]+|0[DdTt][0-9_]+|0[QqOo][0-7_]+|0[BbYy][0-1_]+)\\b"}]},s.QUOTE_STRING_MODE,{className:"string",variants:[{begin:"'",end:"[^\\\\]'"},{begin:"`",end:"[^\\\\]`"}],relevance:0},{className:"symbol",variants:[{begin:"^\\s*[A-Za-z._?][A-Za-z0-9_$#@~.?]*(:|\\s+label)"},{begin:"^\\s*%%[A-Za-z0-9_$#@~.?]*:"}],relevance:0},{className:"subst",begin:"%[0-9]+",relevance:0},{className:"subst",begin:"%!S+",relevance:0},{className:"meta",begin:/^\s*\.[\w_-]+/}]}}}());hljs.registerLanguage("kotlin",function(){"use strict";return function(e){var n={keyword:"abstract as val var vararg get set class object open private protected public noinline crossinline dynamic final enum if else do while for when throw try catch finally import package is in fun override companion reified inline lateinit init interface annotation data sealed internal infix operator out by constructor super tailrec where const inner suspend typealias external expect actual trait volatile transient native default",built_in:"Byte Short Char Int Long Boolean Float Double Void Unit Nothing",literal:"true false null"},a={className:"symbol",begin:e.UNDERSCORE_IDENT_RE+"@"},i={className:"subst",begin:"\\${",end:"}",contains:[e.C_NUMBER_MODE]},s={className:"variable",begin:"\\$"+e.UNDERSCORE_IDENT_RE},t={className:"string",variants:[{begin:'"""',end:'"""(?=[^"])',contains:[s,i]},{begin:"'",end:"'",illegal:/\n/,contains:[e.BACKSLASH_ESCAPE]},{begin:'"',end:'"',illegal:/\n/,contains:[e.BACKSLASH_ESCAPE,s,i]}]};i.contains.push(t);var r={className:"meta",begin:"@(?:file|property|field|get|set|receiver|param|setparam|delegate)\\s*:(?:\\s*"+e.UNDERSCORE_IDENT_RE+")?"},l={className:"meta",begin:"@"+e.UNDERSCORE_IDENT_RE,contains:[{begin:/\(/,end:/\)/,contains:[e.inherit(t,{className:"meta-string"})]}]},c=e.COMMENT("/\\*","\\*/",{contains:[e.C_BLOCK_COMMENT_MODE]}),o={variants:[{className:"type",begin:e.UNDERSCORE_IDENT_RE},{begin:/\(/,end:/\)/,contains:[]}]},d=o;return d.variants[1].contains=[o],o.variants[1].contains=[d],{name:"Kotlin",aliases:["kt"],keywords:n,contains:[e.COMMENT("/\\*\\*","\\*/",{relevance:0,contains:[{className:"doctag",begin:"@[A-Za-z]+"}]}),e.C_LINE_COMMENT_MODE,c,{className:"keyword",begin:/\b(break|continue|return|this)\b/,starts:{contains:[{className:"symbol",begin:/@\w+/}]}},a,r,l,{className:"function",beginKeywords:"fun",end:"[(]|$",returnBegin:!0,excludeEnd:!0,keywords:n,illegal:/fun\s+(<.*>)?[^\s\(]+(\s+[^\s\(]+)\s*=/,relevance:5,contains:[{begin:e.UNDERSCORE_IDENT_RE+"\\s*\\(",returnBegin:!0,relevance:0,contains:[e.UNDERSCORE_TITLE_MODE]},{className:"type",begin://,keywords:"reified",relevance:0},{className:"params",begin:/\(/,end:/\)/,endsParent:!0,keywords:n,relevance:0,contains:[{begin:/:/,end:/[=,\/]/,endsWithParent:!0,contains:[o,e.C_LINE_COMMENT_MODE,c],relevance:0},e.C_LINE_COMMENT_MODE,c,r,l,t,e.C_NUMBER_MODE]},c]},{className:"class",beginKeywords:"class interface trait",end:/[:\{(]|$/,excludeEnd:!0,illegal:"extends implements",contains:[{beginKeywords:"public protected internal private constructor"},e.UNDERSCORE_TITLE_MODE,{className:"type",begin://,excludeBegin:!0,excludeEnd:!0,relevance:0},{className:"type",begin:/[,:]\s*/,end:/[<\(,]|$/,excludeBegin:!0,returnEnd:!0},r,l]},t,{className:"meta",begin:"^#!/usr/bin/env",end:"$",illegal:"\n"},{className:"number",begin:"\\b(0[bB]([01]+[01_]+[01]+|[01]+)|0[xX]([a-fA-F0-9]+[a-fA-F0-9_]+[a-fA-F0-9]+|[a-fA-F0-9]+)|(([\\d]+[\\d_]+[\\d]+|[\\d]+)(\\.([\\d]+[\\d_]+[\\d]+|[\\d]+))?|\\.([\\d]+[\\d_]+[\\d]+|[\\d]+))([eE][-+]?\\d+)?)[lLfF]?",relevance:0}]}}}());hljs.registerLanguage("armasm",function(){"use strict";return function(s){const e={variants:[s.COMMENT("^[ \\t]*(?=#)","$",{relevance:0,excludeBegin:!0}),s.COMMENT("[;@]","$",{relevance:0}),s.C_LINE_COMMENT_MODE,s.C_BLOCK_COMMENT_MODE]};return{name:"ARM Assembly",case_insensitive:!0,aliases:["arm"],keywords:{$pattern:"\\.?"+s.IDENT_RE,meta:".2byte .4byte .align .ascii .asciz .balign .byte .code .data .else .end .endif .endm .endr .equ .err .exitm .extern .global .hword .if .ifdef .ifndef .include .irp .long .macro .rept .req .section .set .skip .space .text .word .arm .thumb .code16 .code32 .force_thumb .thumb_func .ltorg ALIAS ALIGN ARM AREA ASSERT ATTR CN CODE CODE16 CODE32 COMMON CP DATA DCB DCD DCDU DCDO DCFD DCFDU DCI DCQ DCQU DCW DCWU DN ELIF ELSE END ENDFUNC ENDIF ENDP ENTRY EQU EXPORT EXPORTAS EXTERN FIELD FILL FUNCTION GBLA GBLL GBLS GET GLOBAL IF IMPORT INCBIN INCLUDE INFO KEEP LCLA LCLL LCLS LTORG MACRO MAP MEND MEXIT NOFP OPT PRESERVE8 PROC QN READONLY RELOC REQUIRE REQUIRE8 RLIST FN ROUT SETA SETL SETS SN SPACE SUBT THUMB THUMBX TTL WHILE WEND ",built_in:"r0 r1 r2 r3 r4 r5 r6 r7 r8 r9 r10 r11 r12 r13 r14 r15 pc lr sp ip sl sb fp a1 a2 a3 a4 v1 v2 v3 v4 v5 v6 v7 v8 f0 f1 f2 f3 f4 f5 f6 f7 p0 p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 c0 c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 q0 q1 q2 q3 q4 q5 q6 q7 q8 q9 q10 q11 q12 q13 q14 q15 cpsr_c cpsr_x cpsr_s cpsr_f cpsr_cx cpsr_cxs cpsr_xs cpsr_xsf cpsr_sf cpsr_cxsf spsr_c spsr_x spsr_s spsr_f spsr_cx spsr_cxs spsr_xs spsr_xsf spsr_sf spsr_cxsf s0 s1 s2 s3 s4 s5 s6 s7 s8 s9 s10 s11 s12 s13 s14 s15 s16 s17 s18 s19 s20 s21 s22 s23 s24 s25 s26 s27 s28 s29 s30 s31 d0 d1 d2 d3 d4 d5 d6 d7 d8 d9 d10 d11 d12 d13 d14 d15 d16 d17 d18 d19 d20 d21 d22 d23 d24 d25 d26 d27 d28 d29 d30 d31 {PC} {VAR} {TRUE} {FALSE} {OPT} {CONFIG} {ENDIAN} {CODESIZE} {CPU} {FPU} {ARCHITECTURE} {PCSTOREOFFSET} {ARMASM_VERSION} {INTER} {ROPI} {RWPI} {SWST} {NOSWST} . @"},contains:[{className:"keyword",begin:"\\b(adc|(qd?|sh?|u[qh]?)?add(8|16)?|usada?8|(q|sh?|u[qh]?)?(as|sa)x|and|adrl?|sbc|rs[bc]|asr|b[lx]?|blx|bxj|cbn?z|tb[bh]|bic|bfc|bfi|[su]bfx|bkpt|cdp2?|clz|clrex|cmp|cmn|cpsi[ed]|cps|setend|dbg|dmb|dsb|eor|isb|it[te]{0,3}|lsl|lsr|ror|rrx|ldm(([id][ab])|f[ds])?|ldr((s|ex)?[bhd])?|movt?|mvn|mra|mar|mul|[us]mull|smul[bwt][bt]|smu[as]d|smmul|smmla|mla|umlaal|smlal?([wbt][bt]|d)|mls|smlsl?[ds]|smc|svc|sev|mia([bt]{2}|ph)?|mrr?c2?|mcrr2?|mrs|msr|orr|orn|pkh(tb|bt)|rbit|rev(16|sh)?|sel|[su]sat(16)?|nop|pop|push|rfe([id][ab])?|stm([id][ab])?|str(ex)?[bhd]?|(qd?)?sub|(sh?|q|u[qh]?)?sub(8|16)|[su]xt(a?h|a?b(16)?)|srs([id][ab])?|swpb?|swi|smi|tst|teq|wfe|wfi|yield)(eq|ne|cs|cc|mi|pl|vs|vc|hi|ls|ge|lt|gt|le|al|hs|lo)?[sptrx]?(?=\\s)"},e,s.QUOTE_STRING_MODE,{className:"string",begin:"'",end:"[^\\\\]'",relevance:0},{className:"title",begin:"\\|",end:"\\|",illegal:"\\n",relevance:0},{className:"number",variants:[{begin:"[#$=]?0x[0-9a-f]+"},{begin:"[#$=]?0b[01]+"},{begin:"[#$=]\\d+"},{begin:"\\b\\d+"}],relevance:0},{className:"symbol",variants:[{begin:"^[ \\t]*[a-z_\\.\\$][a-z0-9_\\.\\$]+:"},{begin:"^[a-z_\\.\\$][a-z0-9_\\.\\$]+"},{begin:"[=#]\\w+"}],relevance:0}]}}}());hljs.registerLanguage("go",function(){"use strict";return function(e){var n={keyword:"break default func interface select case map struct chan else goto package switch const fallthrough if range type continue for import return var go defer bool byte complex64 complex128 float32 float64 int8 int16 int32 int64 string uint8 uint16 uint32 uint64 int uint uintptr rune",literal:"true false iota nil",built_in:"append cap close complex copy imag len make new panic print println real recover delete"};return{name:"Go",aliases:["golang"],keywords:n,illegal:">>|\.\.\.) /},i={className:"subst",begin:/\{/,end:/\}/,keywords:n,illegal:/#/},s={begin:/\{\{/,relevance:0},r={className:"string",contains:[e.BACKSLASH_ESCAPE],variants:[{begin:/(u|b)?r?'''/,end:/'''/,contains:[e.BACKSLASH_ESCAPE,a],relevance:10},{begin:/(u|b)?r?"""/,end:/"""/,contains:[e.BACKSLASH_ESCAPE,a],relevance:10},{begin:/(fr|rf|f)'''/,end:/'''/,contains:[e.BACKSLASH_ESCAPE,a,s,i]},{begin:/(fr|rf|f)"""/,end:/"""/,contains:[e.BACKSLASH_ESCAPE,a,s,i]},{begin:/(u|r|ur)'/,end:/'/,relevance:10},{begin:/(u|r|ur)"/,end:/"/,relevance:10},{begin:/(b|br)'/,end:/'/},{begin:/(b|br)"/,end:/"/},{begin:/(fr|rf|f)'/,end:/'/,contains:[e.BACKSLASH_ESCAPE,s,i]},{begin:/(fr|rf|f)"/,end:/"/,contains:[e.BACKSLASH_ESCAPE,s,i]},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},l={className:"number",relevance:0,variants:[{begin:e.BINARY_NUMBER_RE+"[lLjJ]?"},{begin:"\\b(0o[0-7]+)[lLjJ]?"},{begin:e.C_NUMBER_RE+"[lLjJ]?"}]},t={className:"params",variants:[{begin:/\(\s*\)/,skip:!0,className:null},{begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,contains:["self",a,l,r,e.HASH_COMMENT_MODE]}]};return i.contains=[r,l,a],{name:"Python",aliases:["py","gyp","ipython"],keywords:n,illegal:/(<\/|->|\?)|=>/,contains:[a,l,{beginKeywords:"if",relevance:0},r,e.HASH_COMMENT_MODE,{variants:[{className:"function",beginKeywords:"def"},{className:"class",beginKeywords:"class"}],end:/:/,illegal:/[${=;\n,]/,contains:[e.UNDERSCORE_TITLE_MODE,t,{begin:/->/,endsWithParent:!0,keywords:"None"}]},{className:"meta",begin:/^[\t ]*@/,end:/$/},{begin:/\b(print|exec)\(/}]}}}());hljs.registerLanguage("shell",function(){"use strict";return function(s){return{name:"Shell Session",aliases:["console"],contains:[{className:"meta",begin:"^\\s{0,3}[/\\w\\d\\[\\]()@-]*[>%$#]",starts:{end:"$",subLanguage:"bash"}}]}}}());hljs.registerLanguage("scala",function(){"use strict";return function(e){var n={className:"subst",variants:[{begin:"\\$[A-Za-z0-9_]+"},{begin:"\\${",end:"}"}]},a={className:"string",variants:[{begin:'"',end:'"',illegal:"\\n",contains:[e.BACKSLASH_ESCAPE]},{begin:'"""',end:'"""',relevance:10},{begin:'[a-z]+"',end:'"',illegal:"\\n",contains:[e.BACKSLASH_ESCAPE,n]},{className:"string",begin:'[a-z]+"""',end:'"""',contains:[n],relevance:10}]},s={className:"type",begin:"\\b[A-Z][A-Za-z0-9_]*",relevance:0},t={className:"title",begin:/[^0-9\n\t "'(),.`{}\[\]:;][^\n\t "'(),.`{}\[\]:;]+|[^0-9\n\t "'(),.`{}\[\]:;=]/,relevance:0},i={className:"class",beginKeywords:"class object trait type",end:/[:={\[\n;]/,excludeEnd:!0,contains:[{beginKeywords:"extends with",relevance:10},{begin:/\[/,end:/\]/,excludeBegin:!0,excludeEnd:!0,relevance:0,contains:[s]},{className:"params",begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,relevance:0,contains:[s]},t]},l={className:"function",beginKeywords:"def",end:/[:={\[(\n;]/,excludeEnd:!0,contains:[t]};return{name:"Scala",keywords:{literal:"true false null",keyword:"type yield lazy override def with val var sealed abstract private trait object if forSome for while throw finally protected extends import final return else break new catch super class case package default try this match continue throws implicit"},contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,a,{className:"symbol",begin:"'\\w[\\w\\d_]*(?!')"},s,l,i,e.C_NUMBER_MODE,{className:"meta",begin:"@[A-Za-z]+"}]}}}());hljs.registerLanguage("julia",function(){"use strict";return function(e){var r="[A-Za-z_\\u00A1-\\uFFFF][A-Za-z_0-9\\u00A1-\\uFFFF]*",t={$pattern:r,keyword:"in isa where baremodule begin break catch ccall const continue do else elseif end export false finally for function global if import importall let local macro module quote return true try using while type immutable abstract bitstype typealias ",literal:"true false ARGS C_NULL DevNull ENDIAN_BOM ENV I Inf Inf16 Inf32 Inf64 InsertionSort JULIA_HOME LOAD_PATH MergeSort NaN NaN16 NaN32 NaN64 PROGRAM_FILE QuickSort RoundDown RoundFromZero RoundNearest RoundNearestTiesAway RoundNearestTiesUp RoundToZero RoundUp STDERR STDIN STDOUT VERSION catalan e|0 eu|0 eulergamma golden im nothing pi γ π φ ",built_in:"ANY AbstractArray AbstractChannel AbstractFloat AbstractMatrix AbstractRNG AbstractSerializer AbstractSet AbstractSparseArray AbstractSparseMatrix AbstractSparseVector AbstractString AbstractUnitRange AbstractVecOrMat AbstractVector Any ArgumentError Array AssertionError Associative Base64DecodePipe Base64EncodePipe Bidiagonal BigFloat BigInt BitArray BitMatrix BitVector Bool BoundsError BufferStream CachingPool CapturedException CartesianIndex CartesianRange Cchar Cdouble Cfloat Channel Char Cint Cintmax_t Clong Clonglong ClusterManager Cmd CodeInfo Colon Complex Complex128 Complex32 Complex64 CompositeException Condition ConjArray ConjMatrix ConjVector Cptrdiff_t Cshort Csize_t Cssize_t Cstring Cuchar Cuint Cuintmax_t Culong Culonglong Cushort Cwchar_t Cwstring DataType Date DateFormat DateTime DenseArray DenseMatrix DenseVecOrMat DenseVector Diagonal Dict DimensionMismatch Dims DirectIndexString Display DivideError DomainError EOFError EachLine Enum Enumerate ErrorException Exception ExponentialBackOff Expr Factorization FileMonitor Float16 Float32 Float64 Function Future GlobalRef GotoNode HTML Hermitian IO IOBuffer IOContext IOStream IPAddr IPv4 IPv6 IndexCartesian IndexLinear IndexStyle InexactError InitError Int Int128 Int16 Int32 Int64 Int8 IntSet Integer InterruptException InvalidStateException Irrational KeyError LabelNode LinSpace LineNumberNode LoadError LowerTriangular MIME Matrix MersenneTwister Method MethodError MethodTable Module NTuple NewvarNode NullException Nullable Number ObjectIdDict OrdinalRange OutOfMemoryError OverflowError Pair ParseError PartialQuickSort PermutedDimsArray Pipe PollingFileWatcher ProcessExitedException Ptr QuoteNode RandomDevice Range RangeIndex Rational RawFD ReadOnlyMemoryError Real ReentrantLock Ref Regex RegexMatch RemoteChannel RemoteException RevString RoundingMode RowVector SSAValue SegmentationFault SerializationState Set SharedArray SharedMatrix SharedVector Signed SimpleVector Slot SlotNumber SparseMatrixCSC SparseVector StackFrame StackOverflowError StackTrace StepRange StepRangeLen StridedArray StridedMatrix StridedVecOrMat StridedVector String SubArray SubString SymTridiagonal Symbol Symmetric SystemError TCPSocket Task Text TextDisplay Timer Tridiagonal Tuple Type TypeError TypeMapEntry TypeMapLevel TypeName TypeVar TypedSlot UDPSocket UInt UInt128 UInt16 UInt32 UInt64 UInt8 UndefRefError UndefVarError UnicodeError UniformScaling Union UnionAll UnitRange Unsigned UpperTriangular Val Vararg VecElement VecOrMat Vector VersionNumber Void WeakKeyDict WeakRef WorkerConfig WorkerPool "},a={keywords:t,illegal:/<\//},n={className:"subst",begin:/\$\(/,end:/\)/,keywords:t},o={className:"variable",begin:"\\$"+r},i={className:"string",contains:[e.BACKSLASH_ESCAPE,n,o],variants:[{begin:/\w*"""/,end:/"""\w*/,relevance:10},{begin:/\w*"/,end:/"\w*/}]},l={className:"string",contains:[e.BACKSLASH_ESCAPE,n,o],begin:"`",end:"`"},s={className:"meta",begin:"@"+r};return a.name="Julia",a.contains=[{className:"number",begin:/(\b0x[\d_]*(\.[\d_]*)?|0x\.\d[\d_]*)p[-+]?\d+|\b0[box][a-fA-F0-9][a-fA-F0-9_]*|(\b\d[\d_]*(\.[\d_]*)?|\.\d[\d_]*)([eEfF][-+]?\d+)?/,relevance:0},{className:"string",begin:/'(.|\\[xXuU][a-zA-Z0-9]+)'/},i,l,s,{className:"comment",variants:[{begin:"#=",end:"=#",relevance:10},{begin:"#",end:"$"}]},e.HASH_COMMENT_MODE,{className:"keyword",begin:"\\b(((abstract|primitive)\\s+)type|(mutable\\s+)?struct)\\b"},{begin:/<:/}],n.contains=a.contains,a}}());hljs.registerLanguage("php-template",function(){"use strict";return function(n){return{name:"PHP template",subLanguage:"xml",contains:[{begin:/<\?(php|=)?/,end:/\?>/,subLanguage:"php",contains:[{begin:"/\\*",end:"\\*/",skip:!0},{begin:'b"',end:'"',skip:!0},{begin:"b'",end:"'",skip:!0},n.inherit(n.APOS_STRING_MODE,{illegal:null,className:null,contains:null,skip:!0}),n.inherit(n.QUOTE_STRING_MODE,{illegal:null,className:null,contains:null,skip:!0})]}]}}}());hljs.registerLanguage("scss",function(){"use strict";return function(e){var t={className:"variable",begin:"(\\$[a-zA-Z-][a-zA-Z0-9_-]*)\\b"},i={className:"number",begin:"#[0-9A-Fa-f]+"};return e.CSS_NUMBER_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,e.C_BLOCK_COMMENT_MODE,{name:"SCSS",case_insensitive:!0,illegal:"[=/|']",contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:"selector-id",begin:"\\#[A-Za-z0-9_-]+",relevance:0},{className:"selector-class",begin:"\\.[A-Za-z0-9_-]+",relevance:0},{className:"selector-attr",begin:"\\[",end:"\\]",illegal:"$"},{className:"selector-tag",begin:"\\b(a|abbr|acronym|address|area|article|aside|audio|b|base|big|blockquote|body|br|button|canvas|caption|cite|code|col|colgroup|command|datalist|dd|del|details|dfn|div|dl|dt|em|embed|fieldset|figcaption|figure|footer|form|frame|frameset|(h[1-6])|head|header|hgroup|hr|html|i|iframe|img|input|ins|kbd|keygen|label|legend|li|link|map|mark|meta|meter|nav|noframes|noscript|object|ol|optgroup|option|output|p|param|pre|progress|q|rp|rt|ruby|samp|script|section|select|small|span|strike|strong|style|sub|sup|table|tbody|td|textarea|tfoot|th|thead|time|title|tr|tt|ul|var|video)\\b",relevance:0},{className:"selector-pseudo",begin:":(visited|valid|root|right|required|read-write|read-only|out-range|optional|only-of-type|only-child|nth-of-type|nth-last-of-type|nth-last-child|nth-child|not|link|left|last-of-type|last-child|lang|invalid|indeterminate|in-range|hover|focus|first-of-type|first-line|first-letter|first-child|first|enabled|empty|disabled|default|checked|before|after|active)"},{className:"selector-pseudo",begin:"::(after|before|choices|first-letter|first-line|repeat-index|repeat-item|selection|value)"},t,{className:"attribute",begin:"\\b(src|z-index|word-wrap|word-spacing|word-break|width|widows|white-space|visibility|vertical-align|unicode-bidi|transition-timing-function|transition-property|transition-duration|transition-delay|transition|transform-style|transform-origin|transform|top|text-underline-position|text-transform|text-shadow|text-rendering|text-overflow|text-indent|text-decoration-style|text-decoration-line|text-decoration-color|text-decoration|text-align-last|text-align|tab-size|table-layout|right|resize|quotes|position|pointer-events|perspective-origin|perspective|page-break-inside|page-break-before|page-break-after|padding-top|padding-right|padding-left|padding-bottom|padding|overflow-y|overflow-x|overflow-wrap|overflow|outline-width|outline-style|outline-offset|outline-color|outline|orphans|order|opacity|object-position|object-fit|normal|none|nav-up|nav-right|nav-left|nav-index|nav-down|min-width|min-height|max-width|max-height|mask|marks|margin-top|margin-right|margin-left|margin-bottom|margin|list-style-type|list-style-position|list-style-image|list-style|line-height|letter-spacing|left|justify-content|initial|inherit|ime-mode|image-orientation|image-resolution|image-rendering|icon|hyphens|height|font-weight|font-variant-ligatures|font-variant|font-style|font-stretch|font-size-adjust|font-size|font-language-override|font-kerning|font-feature-settings|font-family|font|float|flex-wrap|flex-shrink|flex-grow|flex-flow|flex-direction|flex-basis|flex|filter|empty-cells|display|direction|cursor|counter-reset|counter-increment|content|column-width|column-span|column-rule-width|column-rule-style|column-rule-color|column-rule|column-gap|column-fill|column-count|columns|color|clip-path|clip|clear|caption-side|break-inside|break-before|break-after|box-sizing|box-shadow|box-decoration-break|bottom|border-width|border-top-width|border-top-style|border-top-right-radius|border-top-left-radius|border-top-color|border-top|border-style|border-spacing|border-right-width|border-right-style|border-right-color|border-right|border-radius|border-left-width|border-left-style|border-left-color|border-left|border-image-width|border-image-source|border-image-slice|border-image-repeat|border-image-outset|border-image|border-color|border-collapse|border-bottom-width|border-bottom-style|border-bottom-right-radius|border-bottom-left-radius|border-bottom-color|border-bottom|border|background-size|background-repeat|background-position|background-origin|background-image|background-color|background-clip|background-attachment|background-blend-mode|background|backface-visibility|auto|animation-timing-function|animation-play-state|animation-name|animation-iteration-count|animation-fill-mode|animation-duration|animation-direction|animation-delay|animation|align-self|align-items|align-content)\\b",illegal:"[^\\s]"},{begin:"\\b(whitespace|wait|w-resize|visible|vertical-text|vertical-ideographic|uppercase|upper-roman|upper-alpha|underline|transparent|top|thin|thick|text|text-top|text-bottom|tb-rl|table-header-group|table-footer-group|sw-resize|super|strict|static|square|solid|small-caps|separate|se-resize|scroll|s-resize|rtl|row-resize|ridge|right|repeat|repeat-y|repeat-x|relative|progress|pointer|overline|outside|outset|oblique|nowrap|not-allowed|normal|none|nw-resize|no-repeat|no-drop|newspaper|ne-resize|n-resize|move|middle|medium|ltr|lr-tb|lowercase|lower-roman|lower-alpha|loose|list-item|line|line-through|line-edge|lighter|left|keep-all|justify|italic|inter-word|inter-ideograph|inside|inset|inline|inline-block|inherit|inactive|ideograph-space|ideograph-parenthesis|ideograph-numeric|ideograph-alpha|horizontal|hidden|help|hand|groove|fixed|ellipsis|e-resize|double|dotted|distribute|distribute-space|distribute-letter|distribute-all-lines|disc|disabled|default|decimal|dashed|crosshair|collapse|col-resize|circle|char|center|capitalize|break-word|break-all|bottom|both|bolder|bold|block|bidi-override|below|baseline|auto|always|all-scroll|absolute|table|table-cell)\\b"},{begin:":",end:";",contains:[t,i,e.CSS_NUMBER_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,{className:"meta",begin:"!important"}]},{begin:"@(page|font-face)",lexemes:"@[a-z-]+",keywords:"@page @font-face"},{begin:"@",end:"[{;]",returnBegin:!0,keywords:"and or not only",contains:[{begin:"@[a-z-]+",className:"keyword"},t,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,i,e.CSS_NUMBER_MODE]}]}}}());hljs.registerLanguage("r",function(){"use strict";return function(e){var n="([a-zA-Z]|\\.[a-zA-Z.])[a-zA-Z0-9._]*";return{name:"R",contains:[e.HASH_COMMENT_MODE,{begin:n,keywords:{$pattern:n,keyword:"function if in break next repeat else for return switch while try tryCatch stop warning require library attach detach source setMethod setGeneric setGroupGeneric setClass ...",literal:"NULL NA TRUE FALSE T F Inf NaN NA_integer_|10 NA_real_|10 NA_character_|10 NA_complex_|10"},relevance:0},{className:"number",begin:"0[xX][0-9a-fA-F]+[Li]?\\b",relevance:0},{className:"number",begin:"\\d+(?:[eE][+\\-]?\\d*)?L\\b",relevance:0},{className:"number",begin:"\\d+\\.(?!\\d)(?:i\\b)?",relevance:0},{className:"number",begin:"\\d+(?:\\.\\d*)?(?:[eE][+\\-]?\\d*)?i?\\b",relevance:0},{className:"number",begin:"\\.\\d+(?:[eE][+\\-]?\\d*)?i?\\b",relevance:0},{begin:"`",end:"`",relevance:0},{className:"string",contains:[e.BACKSLASH_ESCAPE],variants:[{begin:'"',end:'"'},{begin:"'",end:"'"}]}]}}}());hljs.registerLanguage("sql",function(){"use strict";return function(e){var t=e.COMMENT("--","$");return{name:"SQL",case_insensitive:!0,illegal:/[<>{}*]/,contains:[{beginKeywords:"begin end start commit rollback savepoint lock alter create drop rename call delete do handler insert load replace select truncate update set show pragma grant merge describe use explain help declare prepare execute deallocate release unlock purge reset change stop analyze cache flush optimize repair kill install uninstall checksum restore check backup revoke comment values with",end:/;/,endsWithParent:!0,keywords:{$pattern:/[\w\.]+/,keyword:"as abort abs absolute acc acce accep accept access accessed accessible account acos action activate add addtime admin administer advanced advise aes_decrypt aes_encrypt after agent aggregate ali alia alias all allocate allow alter always analyze ancillary and anti any anydata anydataset anyschema anytype apply archive archived archivelog are as asc ascii asin assembly assertion associate asynchronous at atan atn2 attr attri attrib attribu attribut attribute attributes audit authenticated authentication authid authors auto autoallocate autodblink autoextend automatic availability avg backup badfile basicfile before begin beginning benchmark between bfile bfile_base big bigfile bin binary_double binary_float binlog bit_and bit_count bit_length bit_or bit_xor bitmap blob_base block blocksize body both bound bucket buffer_cache buffer_pool build bulk by byte byteordermark bytes cache caching call calling cancel capacity cascade cascaded case cast catalog category ceil ceiling chain change changed char_base char_length character_length characters characterset charindex charset charsetform charsetid check checksum checksum_agg child choose chr chunk class cleanup clear client clob clob_base clone close cluster_id cluster_probability cluster_set clustering coalesce coercibility col collate collation collect colu colum column column_value columns columns_updated comment commit compact compatibility compiled complete composite_limit compound compress compute concat concat_ws concurrent confirm conn connec connect connect_by_iscycle connect_by_isleaf connect_by_root connect_time connection consider consistent constant constraint constraints constructor container content contents context contributors controlfile conv convert convert_tz corr corr_k corr_s corresponding corruption cos cost count count_big counted covar_pop covar_samp cpu_per_call cpu_per_session crc32 create creation critical cross cube cume_dist curdate current current_date current_time current_timestamp current_user cursor curtime customdatum cycle data database databases datafile datafiles datalength date_add date_cache date_format date_sub dateadd datediff datefromparts datename datepart datetime2fromparts day day_to_second dayname dayofmonth dayofweek dayofyear days db_role_change dbtimezone ddl deallocate declare decode decompose decrement decrypt deduplicate def defa defau defaul default defaults deferred defi defin define degrees delayed delegate delete delete_all delimited demand dense_rank depth dequeue des_decrypt des_encrypt des_key_file desc descr descri describ describe descriptor deterministic diagnostics difference dimension direct_load directory disable disable_all disallow disassociate discardfile disconnect diskgroup distinct distinctrow distribute distributed div do document domain dotnet double downgrade drop dumpfile duplicate duration each edition editionable editions element ellipsis else elsif elt empty enable enable_all enclosed encode encoding encrypt end end-exec endian enforced engine engines enqueue enterprise entityescaping eomonth error errors escaped evalname evaluate event eventdata events except exception exceptions exchange exclude excluding execu execut execute exempt exists exit exp expire explain explode export export_set extended extent external external_1 external_2 externally extract failed failed_login_attempts failover failure far fast feature_set feature_value fetch field fields file file_name_convert filesystem_like_logging final finish first first_value fixed flash_cache flashback floor flush following follows for forall force foreign form forma format found found_rows freelist freelists freepools fresh from from_base64 from_days ftp full function general generated get get_format get_lock getdate getutcdate global global_name globally go goto grant grants greatest group group_concat group_id grouping grouping_id groups gtid_subtract guarantee guard handler hash hashkeys having hea head headi headin heading heap help hex hierarchy high high_priority hosts hour hours http id ident_current ident_incr ident_seed identified identity idle_time if ifnull ignore iif ilike ilm immediate import in include including increment index indexes indexing indextype indicator indices inet6_aton inet6_ntoa inet_aton inet_ntoa infile initial initialized initially initrans inmemory inner innodb input insert install instance instantiable instr interface interleaved intersect into invalidate invisible is is_free_lock is_ipv4 is_ipv4_compat is_not is_not_null is_used_lock isdate isnull isolation iterate java join json json_exists keep keep_duplicates key keys kill language large last last_day last_insert_id last_value lateral lax lcase lead leading least leaves left len lenght length less level levels library like like2 like4 likec limit lines link list listagg little ln load load_file lob lobs local localtime localtimestamp locate locator lock locked log log10 log2 logfile logfiles logging logical logical_reads_per_call logoff logon logs long loop low low_priority lower lpad lrtrim ltrim main make_set makedate maketime managed management manual map mapping mask master master_pos_wait match matched materialized max maxextents maximize maxinstances maxlen maxlogfiles maxloghistory maxlogmembers maxsize maxtrans md5 measures median medium member memcompress memory merge microsecond mid migration min minextents minimum mining minus minute minutes minvalue missing mod mode model modification modify module monitoring month months mount move movement multiset mutex name name_const names nan national native natural nav nchar nclob nested never new newline next nextval no no_write_to_binlog noarchivelog noaudit nobadfile nocheck nocompress nocopy nocycle nodelay nodiscardfile noentityescaping noguarantee nokeep nologfile nomapping nomaxvalue nominimize nominvalue nomonitoring none noneditionable nonschema noorder nopr nopro noprom nopromp noprompt norely noresetlogs noreverse normal norowdependencies noschemacheck noswitch not nothing notice notnull notrim novalidate now nowait nth_value nullif nulls num numb numbe nvarchar nvarchar2 object ocicoll ocidate ocidatetime ociduration ociinterval ociloblocator ocinumber ociref ocirefcursor ocirowid ocistring ocitype oct octet_length of off offline offset oid oidindex old on online only opaque open operations operator optimal optimize option optionally or oracle oracle_date oradata ord ordaudio orddicom orddoc order ordimage ordinality ordvideo organization orlany orlvary out outer outfile outline output over overflow overriding package pad parallel parallel_enable parameters parent parse partial partition partitions pascal passing password password_grace_time password_lock_time password_reuse_max password_reuse_time password_verify_function patch path patindex pctincrease pctthreshold pctused pctversion percent percent_rank percentile_cont percentile_disc performance period period_add period_diff permanent physical pi pipe pipelined pivot pluggable plugin policy position post_transaction pow power pragma prebuilt precedes preceding precision prediction prediction_cost prediction_details prediction_probability prediction_set prepare present preserve prior priority private private_sga privileges procedural procedure procedure_analyze processlist profiles project prompt protection public publishingservername purge quarter query quick quiesce quota quotename radians raise rand range rank raw read reads readsize rebuild record records recover recovery recursive recycle redo reduced ref reference referenced references referencing refresh regexp_like register regr_avgx regr_avgy regr_count regr_intercept regr_r2 regr_slope regr_sxx regr_sxy reject rekey relational relative relaylog release release_lock relies_on relocate rely rem remainder rename repair repeat replace replicate replication required reset resetlogs resize resource respect restore restricted result result_cache resumable resume retention return returning returns reuse reverse revoke right rlike role roles rollback rolling rollup round row row_count rowdependencies rowid rownum rows rtrim rules safe salt sample save savepoint sb1 sb2 sb4 scan schema schemacheck scn scope scroll sdo_georaster sdo_topo_geometry search sec_to_time second seconds section securefile security seed segment select self semi sequence sequential serializable server servererror session session_user sessions_per_user set sets settings sha sha1 sha2 share shared shared_pool short show shrink shutdown si_averagecolor si_colorhistogram si_featurelist si_positionalcolor si_stillimage si_texture siblings sid sign sin size size_t sizes skip slave sleep smalldatetimefromparts smallfile snapshot some soname sort soundex source space sparse spfile split sql sql_big_result sql_buffer_result sql_cache sql_calc_found_rows sql_small_result sql_variant_property sqlcode sqldata sqlerror sqlname sqlstate sqrt square standalone standby start starting startup statement static statistics stats_binomial_test stats_crosstab stats_ks_test stats_mode stats_mw_test stats_one_way_anova stats_t_test_ stats_t_test_indep stats_t_test_one stats_t_test_paired stats_wsr_test status std stddev stddev_pop stddev_samp stdev stop storage store stored str str_to_date straight_join strcmp strict string struct stuff style subdate subpartition subpartitions substitutable substr substring subtime subtring_index subtype success sum suspend switch switchoffset switchover sync synchronous synonym sys sys_xmlagg sysasm sysaux sysdate sysdatetimeoffset sysdba sysoper system system_user sysutcdatetime table tables tablespace tablesample tan tdo template temporary terminated tertiary_weights test than then thread through tier ties time time_format time_zone timediff timefromparts timeout timestamp timestampadd timestampdiff timezone_abbr timezone_minute timezone_region to to_base64 to_date to_days to_seconds todatetimeoffset trace tracking transaction transactional translate translation treat trigger trigger_nestlevel triggers trim truncate try_cast try_convert try_parse type ub1 ub2 ub4 ucase unarchived unbounded uncompress under undo unhex unicode uniform uninstall union unique unix_timestamp unknown unlimited unlock unnest unpivot unrecoverable unsafe unsigned until untrusted unusable unused update updated upgrade upped upper upsert url urowid usable usage use use_stored_outlines user user_data user_resources users using utc_date utc_timestamp uuid uuid_short validate validate_password_strength validation valist value values var var_samp varcharc vari varia variab variabl variable variables variance varp varraw varrawc varray verify version versions view virtual visible void wait wallet warning warnings week weekday weekofyear wellformed when whene whenev wheneve whenever where while whitespace window with within without work wrapped xdb xml xmlagg xmlattributes xmlcast xmlcolattval xmlelement xmlexists xmlforest xmlindex xmlnamespaces xmlpi xmlquery xmlroot xmlschema xmlserialize xmltable xmltype xor year year_to_month years yearweek",literal:"true false null unknown",built_in:"array bigint binary bit blob bool boolean char character date dec decimal float int int8 integer interval number numeric real record serial serial8 smallint text time timestamp tinyint varchar varchar2 varying void"},contains:[{className:"string",begin:"'",end:"'",contains:[{begin:"''"}]},{className:"string",begin:'"',end:'"',contains:[{begin:'""'}]},{className:"string",begin:"`",end:"`"},e.C_NUMBER_MODE,e.C_BLOCK_COMMENT_MODE,t,e.HASH_COMMENT_MODE]},e.C_BLOCK_COMMENT_MODE,t,e.HASH_COMMENT_MODE]}}}());hljs.registerLanguage("c",function(){"use strict";return function(e){var n=e.getLanguage("c-like").rawDefinition();return n.name="C",n.aliases=["c","h"],n}}());hljs.registerLanguage("json",function(){"use strict";return function(n){var e={literal:"true false null"},i=[n.C_LINE_COMMENT_MODE,n.C_BLOCK_COMMENT_MODE],t=[n.QUOTE_STRING_MODE,n.C_NUMBER_MODE],a={end:",",endsWithParent:!0,excludeEnd:!0,contains:t,keywords:e},l={begin:"{",end:"}",contains:[{className:"attr",begin:/"/,end:/"/,contains:[n.BACKSLASH_ESCAPE],illegal:"\\n"},n.inherit(a,{begin:/:/})].concat(i),illegal:"\\S"},s={begin:"\\[",end:"\\]",contains:[n.inherit(a)],illegal:"\\S"};return t.push(l,s),i.forEach((function(n){t.push(n)})),{name:"JSON",contains:t,keywords:e,illegal:"\\S"}}}());hljs.registerLanguage("python-repl",function(){"use strict";return function(n){return{aliases:["pycon"],contains:[{className:"meta",starts:{end:/ |$/,starts:{end:"$",subLanguage:"python"}},variants:[{begin:/^>>>(?=[ ]|$)/},{begin:/^\.\.\.(?=[ ]|$)/}]}]}}}());hljs.registerLanguage("markdown",function(){"use strict";return function(n){const e={begin:"<",end:">",subLanguage:"xml",relevance:0},a={begin:"\\[.+?\\][\\(\\[].*?[\\)\\]]",returnBegin:!0,contains:[{className:"string",begin:"\\[",end:"\\]",excludeBegin:!0,returnEnd:!0,relevance:0},{className:"link",begin:"\\]\\(",end:"\\)",excludeBegin:!0,excludeEnd:!0},{className:"symbol",begin:"\\]\\[",end:"\\]",excludeBegin:!0,excludeEnd:!0}],relevance:10},i={className:"strong",contains:[],variants:[{begin:/_{2}/,end:/_{2}/},{begin:/\*{2}/,end:/\*{2}/}]},s={className:"emphasis",contains:[],variants:[{begin:/\*(?!\*)/,end:/\*/},{begin:/_(?!_)/,end:/_/,relevance:0}]};i.contains.push(s),s.contains.push(i);var c=[e,a];return i.contains=i.contains.concat(c),s.contains=s.contains.concat(c),{name:"Markdown",aliases:["md","mkdown","mkd"],contains:[{className:"section",variants:[{begin:"^#{1,6}",end:"$",contains:c=c.concat(i,s)},{begin:"(?=^.+?\\n[=-]{2,}$)",contains:[{begin:"^[=-]*$"},{begin:"^",end:"\\n",contains:c}]}]},e,{className:"bullet",begin:"^[ \t]*([*+-]|(\\d+\\.))(?=\\s+)",end:"\\s+",excludeEnd:!0},i,s,{className:"quote",begin:"^>\\s+",contains:c,end:"$"},{className:"code",variants:[{begin:"(`{3,})(.|\\n)*?\\1`*[ ]*"},{begin:"(~{3,})(.|\\n)*?\\1~*[ ]*"},{begin:"```",end:"```+[ ]*$"},{begin:"~~~",end:"~~~+[ ]*$"},{begin:"`.+?`"},{begin:"(?=^( {4}|\\t))",contains:[{begin:"^( {4}|\\t)",end:"(\\n)$"}],relevance:0}]},{begin:"^[-\\*]{3,}",end:"$"},a,{begin:/^\[[^\n]+\]:/,returnBegin:!0,contains:[{className:"symbol",begin:/\[/,end:/\]/,excludeBegin:!0,excludeEnd:!0},{className:"link",begin:/:\s*/,end:/$/,excludeBegin:!0}]}]}}}());hljs.registerLanguage("javascript",function(){"use strict";const e=["as","in","of","if","for","while","finally","var","new","function","do","return","void","else","break","catch","instanceof","with","throw","case","default","try","switch","continue","typeof","delete","let","yield","const","class","debugger","async","await","static","import","from","export","extends"],n=["true","false","null","undefined","NaN","Infinity"],a=[].concat(["setInterval","setTimeout","clearInterval","clearTimeout","require","exports","eval","isFinite","isNaN","parseFloat","parseInt","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","escape","unescape"],["arguments","this","super","console","window","document","localStorage","module","global"],["Intl","DataView","Number","Math","Date","String","RegExp","Object","Function","Boolean","Error","Symbol","Set","Map","WeakSet","WeakMap","Proxy","Reflect","JSON","Promise","Float64Array","Int16Array","Int32Array","Int8Array","Uint16Array","Uint32Array","Float32Array","Array","Uint8Array","Uint8ClampedArray","ArrayBuffer"],["EvalError","InternalError","RangeError","ReferenceError","SyntaxError","TypeError","URIError"]);function s(e){return r("(?=",e,")")}function r(...e){return e.map(e=>(function(e){return e?"string"==typeof e?e:e.source:null})(e)).join("")}return function(t){var i="[A-Za-z$_][0-9A-Za-z$_]*",c={begin:/<[A-Za-z0-9\\._:-]+/,end:/\/[A-Za-z0-9\\._:-]+>|\/>/},o={$pattern:"[A-Za-z$_][0-9A-Za-z$_]*",keyword:e.join(" "),literal:n.join(" "),built_in:a.join(" ")},l={className:"number",variants:[{begin:"\\b(0[bB][01]+)n?"},{begin:"\\b(0[oO][0-7]+)n?"},{begin:t.C_NUMBER_RE+"n?"}],relevance:0},E={className:"subst",begin:"\\$\\{",end:"\\}",keywords:o,contains:[]},d={begin:"html`",end:"",starts:{end:"`",returnEnd:!1,contains:[t.BACKSLASH_ESCAPE,E],subLanguage:"xml"}},g={begin:"css`",end:"",starts:{end:"`",returnEnd:!1,contains:[t.BACKSLASH_ESCAPE,E],subLanguage:"css"}},u={className:"string",begin:"`",end:"`",contains:[t.BACKSLASH_ESCAPE,E]};E.contains=[t.APOS_STRING_MODE,t.QUOTE_STRING_MODE,d,g,u,l,t.REGEXP_MODE];var b=E.contains.concat([{begin:/\(/,end:/\)/,contains:["self"].concat(E.contains,[t.C_BLOCK_COMMENT_MODE,t.C_LINE_COMMENT_MODE])},t.C_BLOCK_COMMENT_MODE,t.C_LINE_COMMENT_MODE]),_={className:"params",begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,contains:b};return{name:"JavaScript",aliases:["js","jsx","mjs","cjs"],keywords:o,contains:[t.SHEBANG({binary:"node",relevance:5}),{className:"meta",relevance:10,begin:/^\s*['"]use (strict|asm)['"]/},t.APOS_STRING_MODE,t.QUOTE_STRING_MODE,d,g,u,t.C_LINE_COMMENT_MODE,t.COMMENT("/\\*\\*","\\*/",{relevance:0,contains:[{className:"doctag",begin:"@[A-Za-z]+",contains:[{className:"type",begin:"\\{",end:"\\}",relevance:0},{className:"variable",begin:i+"(?=\\s*(-)|$)",endsParent:!0,relevance:0},{begin:/(?=[^\n])\s/,relevance:0}]}]}),t.C_BLOCK_COMMENT_MODE,l,{begin:r(/[{,\n]\s*/,s(r(/(((\/\/.*)|(\/\*(.|\n)*\*\/))\s*)*/,i+"\\s*:"))),relevance:0,contains:[{className:"attr",begin:i+s("\\s*:"),relevance:0}]},{begin:"("+t.RE_STARTERS_RE+"|\\b(case|return|throw)\\b)\\s*",keywords:"return throw case",contains:[t.C_LINE_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE,t.REGEXP_MODE,{className:"function",begin:"(\\([^(]*(\\([^(]*(\\([^(]*\\))?\\))?\\)|"+t.UNDERSCORE_IDENT_RE+")\\s*=>",returnBegin:!0,end:"\\s*=>",contains:[{className:"params",variants:[{begin:t.UNDERSCORE_IDENT_RE},{className:null,begin:/\(\s*\)/,skip:!0},{begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:o,contains:b}]}]},{begin:/,/,relevance:0},{className:"",begin:/\s/,end:/\s*/,skip:!0},{variants:[{begin:"<>",end:""},{begin:c.begin,end:c.end}],subLanguage:"xml",contains:[{begin:c.begin,end:c.end,skip:!0,contains:["self"]}]}],relevance:0},{className:"function",beginKeywords:"function",end:/\{/,excludeEnd:!0,contains:[t.inherit(t.TITLE_MODE,{begin:i}),_],illegal:/\[|%/},{begin:/\$[(.]/},t.METHOD_GUARD,{className:"class",beginKeywords:"class",end:/[{;=]/,excludeEnd:!0,illegal:/[:"\[\]]/,contains:[{beginKeywords:"extends"},t.UNDERSCORE_TITLE_MODE]},{beginKeywords:"constructor",end:/\{/,excludeEnd:!0},{begin:"(get|set)\\s+(?="+i+"\\()",end:/{/,keywords:"get set",contains:[t.inherit(t.TITLE_MODE,{begin:i}),{begin:/\(\)/},_]}],illegal:/#(?!!)/}}}());hljs.registerLanguage("typescript",function(){"use strict";const e=["as","in","of","if","for","while","finally","var","new","function","do","return","void","else","break","catch","instanceof","with","throw","case","default","try","switch","continue","typeof","delete","let","yield","const","class","debugger","async","await","static","import","from","export","extends"],n=["true","false","null","undefined","NaN","Infinity"],a=[].concat(["setInterval","setTimeout","clearInterval","clearTimeout","require","exports","eval","isFinite","isNaN","parseFloat","parseInt","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","escape","unescape"],["arguments","this","super","console","window","document","localStorage","module","global"],["Intl","DataView","Number","Math","Date","String","RegExp","Object","Function","Boolean","Error","Symbol","Set","Map","WeakSet","WeakMap","Proxy","Reflect","JSON","Promise","Float64Array","Int16Array","Int32Array","Int8Array","Uint16Array","Uint32Array","Float32Array","Array","Uint8Array","Uint8ClampedArray","ArrayBuffer"],["EvalError","InternalError","RangeError","ReferenceError","SyntaxError","TypeError","URIError"]);return function(r){var t={$pattern:"[A-Za-z$_][0-9A-Za-z$_]*",keyword:e.concat(["type","namespace","typedef","interface","public","private","protected","implements","declare","abstract","readonly"]).join(" "),literal:n.join(" "),built_in:a.concat(["any","void","number","boolean","string","object","never","enum"]).join(" ")},s={className:"meta",begin:"@[A-Za-z$_][0-9A-Za-z$_]*"},i={className:"number",variants:[{begin:"\\b(0[bB][01]+)n?"},{begin:"\\b(0[oO][0-7]+)n?"},{begin:r.C_NUMBER_RE+"n?"}],relevance:0},o={className:"subst",begin:"\\$\\{",end:"\\}",keywords:t,contains:[]},c={begin:"html`",end:"",starts:{end:"`",returnEnd:!1,contains:[r.BACKSLASH_ESCAPE,o],subLanguage:"xml"}},l={begin:"css`",end:"",starts:{end:"`",returnEnd:!1,contains:[r.BACKSLASH_ESCAPE,o],subLanguage:"css"}},E={className:"string",begin:"`",end:"`",contains:[r.BACKSLASH_ESCAPE,o]};o.contains=[r.APOS_STRING_MODE,r.QUOTE_STRING_MODE,c,l,E,i,r.REGEXP_MODE];var d={begin:"\\(",end:/\)/,keywords:t,contains:["self",r.QUOTE_STRING_MODE,r.APOS_STRING_MODE,r.NUMBER_MODE]},u={className:"params",begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:t,contains:[r.C_LINE_COMMENT_MODE,r.C_BLOCK_COMMENT_MODE,s,d]};return{name:"TypeScript",aliases:["ts"],keywords:t,contains:[r.SHEBANG(),{className:"meta",begin:/^\s*['"]use strict['"]/},r.APOS_STRING_MODE,r.QUOTE_STRING_MODE,c,l,E,r.C_LINE_COMMENT_MODE,r.C_BLOCK_COMMENT_MODE,i,{begin:"("+r.RE_STARTERS_RE+"|\\b(case|return|throw)\\b)\\s*",keywords:"return throw case",contains:[r.C_LINE_COMMENT_MODE,r.C_BLOCK_COMMENT_MODE,r.REGEXP_MODE,{className:"function",begin:"(\\([^(]*(\\([^(]*(\\([^(]*\\))?\\))?\\)|"+r.UNDERSCORE_IDENT_RE+")\\s*=>",returnBegin:!0,end:"\\s*=>",contains:[{className:"params",variants:[{begin:r.UNDERSCORE_IDENT_RE},{className:null,begin:/\(\s*\)/,skip:!0},{begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:t,contains:d.contains}]}]}],relevance:0},{className:"function",beginKeywords:"function",end:/[\{;]/,excludeEnd:!0,keywords:t,contains:["self",r.inherit(r.TITLE_MODE,{begin:"[A-Za-z$_][0-9A-Za-z$_]*"}),u],illegal:/%/,relevance:0},{beginKeywords:"constructor",end:/[\{;]/,excludeEnd:!0,contains:["self",u]},{begin:/module\./,keywords:{built_in:"module"},relevance:0},{beginKeywords:"module",end:/\{/,excludeEnd:!0},{beginKeywords:"interface",end:/\{/,excludeEnd:!0,keywords:"interface extends"},{begin:/\$[(.]/},{begin:"\\."+r.IDENT_RE,relevance:0},s,d]}}}());hljs.registerLanguage("plaintext",function(){"use strict";return function(t){return{name:"Plain text",aliases:["text","txt"],disableAutodetect:!0}}}());hljs.registerLanguage("less",function(){"use strict";return function(e){var n="([\\w-]+|@{[\\w-]+})",a=[],s=[],t=function(e){return{className:"string",begin:"~?"+e+".*?"+e}},r=function(e,n,a){return{className:e,begin:n,relevance:a}},i={begin:"\\(",end:"\\)",contains:s,relevance:0};s.push(e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,t("'"),t('"'),e.CSS_NUMBER_MODE,{begin:"(url|data-uri)\\(",starts:{className:"string",end:"[\\)\\n]",excludeEnd:!0}},r("number","#[0-9A-Fa-f]+\\b"),i,r("variable","@@?[\\w-]+",10),r("variable","@{[\\w-]+}"),r("built_in","~?`[^`]*?`"),{className:"attribute",begin:"[\\w-]+\\s*:",end:":",returnBegin:!0,excludeEnd:!0},{className:"meta",begin:"!important"});var c=s.concat({begin:"{",end:"}",contains:a}),l={beginKeywords:"when",endsWithParent:!0,contains:[{beginKeywords:"and not"}].concat(s)},o={begin:n+"\\s*:",returnBegin:!0,end:"[;}]",relevance:0,contains:[{className:"attribute",begin:n,end:":",excludeEnd:!0,starts:{endsWithParent:!0,illegal:"[<=$]",relevance:0,contains:s}}]},g={className:"keyword",begin:"@(import|media|charset|font-face|(-[a-z]+-)?keyframes|supports|document|namespace|page|viewport|host)\\b",starts:{end:"[;{}]",returnEnd:!0,contains:s,relevance:0}},d={className:"variable",variants:[{begin:"@[\\w-]+\\s*:",relevance:15},{begin:"@[\\w-]+"}],starts:{end:"[;}]",returnEnd:!0,contains:c}},b={variants:[{begin:"[\\.#:&\\[>]",end:"[;{}]"},{begin:n,end:"{"}],returnBegin:!0,returnEnd:!0,illegal:"[<='$\"]",relevance:0,contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,l,r("keyword","all\\b"),r("variable","@{[\\w-]+}"),r("selector-tag",n+"%?",0),r("selector-id","#"+n),r("selector-class","\\."+n,0),r("selector-tag","&",0),{className:"selector-attr",begin:"\\[",end:"\\]"},{className:"selector-pseudo",begin:/:(:)?[a-zA-Z0-9\_\-\+\(\)"'.]+/},{begin:"\\(",end:"\\)",contains:c},{begin:"!important"}]};return a.push(e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,g,d,o,b),{name:"Less",case_insensitive:!0,illegal:"[=>'/<($\"]",contains:a}}}());hljs.registerLanguage("lua",function(){"use strict";return function(e){var t={begin:"\\[=*\\[",end:"\\]=*\\]",contains:["self"]},a=[e.COMMENT("--(?!\\[=*\\[)","$"),e.COMMENT("--\\[=*\\[","\\]=*\\]",{contains:[t],relevance:10})];return{name:"Lua",keywords:{$pattern:e.UNDERSCORE_IDENT_RE,literal:"true false nil",keyword:"and break do else elseif end for goto if in local not or repeat return then until while",built_in:"_G _ENV _VERSION __index __newindex __mode __call __metatable __tostring __len __gc __add __sub __mul __div __mod __pow __concat __unm __eq __lt __le assert collectgarbage dofile error getfenv getmetatable ipairs load loadfile loadstring module next pairs pcall print rawequal rawget rawset require select setfenv setmetatable tonumber tostring type unpack xpcall arg self coroutine resume yield status wrap create running debug getupvalue debug sethook getmetatable gethook setmetatable setlocal traceback setfenv getinfo setupvalue getlocal getregistry getfenv io lines write close flush open output type read stderr stdin input stdout popen tmpfile math log max acos huge ldexp pi cos tanh pow deg tan cosh sinh random randomseed frexp ceil floor rad abs sqrt modf asin min mod fmod log10 atan2 exp sin atan os exit setlocale date getenv difftime remove time clock tmpname rename execute package preload loadlib loaded loaders cpath config path seeall string sub upper len gfind rep find match char dump gmatch reverse byte format gsub lower table setn insert getn foreachi maxn foreach concat sort remove"},contains:a.concat([{className:"function",beginKeywords:"function",end:"\\)",contains:[e.inherit(e.TITLE_MODE,{begin:"([_a-zA-Z]\\w*\\.)*([_a-zA-Z]\\w*:)?[_a-zA-Z]\\w*"}),{className:"params",begin:"\\(",endsWithParent:!0,contains:a}].concat(a)},e.C_NUMBER_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{className:"string",begin:"\\[=*\\[",end:"\\]=*\\]",contains:[t],relevance:5}])}}}()); +var hljs=function(){"use strict";function e(n){Object.freeze(n);var t="function"==typeof n;return Object.getOwnPropertyNames(n).forEach((function(r){!Object.hasOwnProperty.call(n,r)||null===n[r]||"object"!=typeof n[r]&&"function"!=typeof n[r]||t&&("caller"===r||"callee"===r||"arguments"===r)||Object.isFrozen(n[r])||e(n[r])})),n}class n{constructor(e){void 0===e.data&&(e.data={}),this.data=e.data}ignoreMatch(){this.ignore=!0}}function t(e){return e.replace(/&/g,"&").replace(//g,">").replace(/"/g,""").replace(/'/g,"'")}function r(e,...n){var t={};for(const n in e)t[n]=e[n];return n.forEach((function(e){for(const n in e)t[n]=e[n]})),t}function a(e){return e.nodeName.toLowerCase()}var i=Object.freeze({__proto__:null,escapeHTML:t,inherit:r,nodeStream:function(e){var n=[];return function e(t,r){for(var i=t.firstChild;i;i=i.nextSibling)3===i.nodeType?r+=i.nodeValue.length:1===i.nodeType&&(n.push({event:"start",offset:r,node:i}),r=e(i,r),a(i).match(/br|hr|img|input/)||n.push({event:"stop",offset:r,node:i}));return r}(e,0),n},mergeStreams:function(e,n,r){var i=0,s="",o=[];function l(){return e.length&&n.length?e[0].offset!==n[0].offset?e[0].offset"}function u(e){s+=""}function d(e){("start"===e.event?c:u)(e.node)}for(;e.length||n.length;){var g=l();if(s+=t(r.substring(i,g[0].offset)),i=g[0].offset,g===e){o.reverse().forEach(u);do{d(g.splice(0,1)[0]),g=l()}while(g===e&&g.length&&g[0].offset===i);o.reverse().forEach(c)}else"start"===g[0].event?o.push(g[0].node):o.pop(),d(g.splice(0,1)[0])}return s+t(r.substr(i))}});const s="
",o=e=>!!e.kind;class l{constructor(e,n){this.buffer="",this.classPrefix=n.classPrefix,e.walk(this)}addText(e){this.buffer+=t(e)}openNode(e){if(!o(e))return;let n=e.kind;e.sublanguage||(n=`${this.classPrefix}${n}`),this.span(n)}closeNode(e){o(e)&&(this.buffer+=s)}value(){return this.buffer}span(e){this.buffer+=``}}class c{constructor(){this.rootNode={children:[]},this.stack=[this.rootNode]}get top(){return this.stack[this.stack.length-1]}get root(){return this.rootNode}add(e){this.top.children.push(e)}openNode(e){const n={kind:e,children:[]};this.add(n),this.stack.push(n)}closeNode(){if(this.stack.length>1)return this.stack.pop()}closeAllNodes(){for(;this.closeNode(););}toJSON(){return JSON.stringify(this.rootNode,null,4)}walk(e){return this.constructor._walk(e,this.rootNode)}static _walk(e,n){return"string"==typeof n?e.addText(n):n.children&&(e.openNode(n),n.children.forEach(n=>this._walk(e,n)),e.closeNode(n)),e}static _collapse(e){"string"!=typeof e&&e.children&&(e.children.every(e=>"string"==typeof e)?e.children=[e.children.join("")]:e.children.forEach(e=>{c._collapse(e)}))}}class u extends c{constructor(e){super(),this.options=e}addKeyword(e,n){""!==e&&(this.openNode(n),this.addText(e),this.closeNode())}addText(e){""!==e&&this.add(e)}addSublanguage(e,n){const t=e.root;t.kind=n,t.sublanguage=!0,this.add(t)}toHTML(){return new l(this,this.options).value()}finalize(){return!0}}function d(e){return e?"string"==typeof e?e:e.source:null}const g="(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)",h={begin:"\\\\[\\s\\S]",relevance:0},f={className:"string",begin:"'",end:"'",illegal:"\\n",contains:[h]},p={className:"string",begin:'"',end:'"',illegal:"\\n",contains:[h]},b={begin:/\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\b/},m=function(e,n,t={}){var a=r({className:"comment",begin:e,end:n,contains:[]},t);return a.contains.push(b),a.contains.push({className:"doctag",begin:"(?:TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):",relevance:0}),a},v=m("//","$"),x=m("/\\*","\\*/"),E=m("#","$");var _=Object.freeze({__proto__:null,IDENT_RE:"[a-zA-Z]\\w*",UNDERSCORE_IDENT_RE:"[a-zA-Z_]\\w*",NUMBER_RE:"\\b\\d+(\\.\\d+)?",C_NUMBER_RE:g,BINARY_NUMBER_RE:"\\b(0b[01]+)",RE_STARTERS_RE:"!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~",SHEBANG:(e={})=>{const n=/^#![ ]*\//;return e.binary&&(e.begin=function(...e){return e.map(e=>d(e)).join("")}(n,/.*\b/,e.binary,/\b.*/)),r({className:"meta",begin:n,end:/$/,relevance:0,"on:begin":(e,n)=>{0!==e.index&&n.ignoreMatch()}},e)},BACKSLASH_ESCAPE:h,APOS_STRING_MODE:f,QUOTE_STRING_MODE:p,PHRASAL_WORDS_MODE:b,COMMENT:m,C_LINE_COMMENT_MODE:v,C_BLOCK_COMMENT_MODE:x,HASH_COMMENT_MODE:E,NUMBER_MODE:{className:"number",begin:"\\b\\d+(\\.\\d+)?",relevance:0},C_NUMBER_MODE:{className:"number",begin:g,relevance:0},BINARY_NUMBER_MODE:{className:"number",begin:"\\b(0b[01]+)",relevance:0},CSS_NUMBER_MODE:{className:"number",begin:"\\b\\d+(\\.\\d+)?(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?",relevance:0},REGEXP_MODE:{begin:/(?=\/[^/\n]*\/)/,contains:[{className:"regexp",begin:/\//,end:/\/[gimuy]*/,illegal:/\n/,contains:[h,{begin:/\[/,end:/\]/,relevance:0,contains:[h]}]}]},TITLE_MODE:{className:"title",begin:"[a-zA-Z]\\w*",relevance:0},UNDERSCORE_TITLE_MODE:{className:"title",begin:"[a-zA-Z_]\\w*",relevance:0},METHOD_GUARD:{begin:"\\.\\s*[a-zA-Z_]\\w*",relevance:0},END_SAME_AS_BEGIN:function(e){return Object.assign(e,{"on:begin":(e,n)=>{n.data._beginMatch=e[1]},"on:end":(e,n)=>{n.data._beginMatch!==e[1]&&n.ignoreMatch()}})}}),N="of and for in not or if then".split(" ");function w(e,n){return n?+n:function(e){return N.includes(e.toLowerCase())}(e)?0:1}const R=t,y=r,{nodeStream:k,mergeStreams:O}=i,M=Symbol("nomatch");return function(t){var a=[],i={},s={},o=[],l=!0,c=/(^(<[^>]+>|\t|)+|\n)/gm,g="Could not find the language '{}', did you forget to load/include a language module?";const h={disableAutodetect:!0,name:"Plain text",contains:[]};var f={noHighlightRe:/^(no-?highlight)$/i,languageDetectRe:/\blang(?:uage)?-([\w-]+)\b/i,classPrefix:"hljs-",tabReplace:null,useBR:!1,languages:null,__emitter:u};function p(e){return f.noHighlightRe.test(e)}function b(e,n,t,r){var a={code:n,language:e};S("before:highlight",a);var i=a.result?a.result:m(a.language,a.code,t,r);return i.code=a.code,S("after:highlight",i),i}function m(e,t,a,s){var o=t;function c(e,n){var t=E.case_insensitive?n[0].toLowerCase():n[0];return Object.prototype.hasOwnProperty.call(e.keywords,t)&&e.keywords[t]}function u(){null!=y.subLanguage?function(){if(""!==A){var e=null;if("string"==typeof y.subLanguage){if(!i[y.subLanguage])return void O.addText(A);e=m(y.subLanguage,A,!0,k[y.subLanguage]),k[y.subLanguage]=e.top}else e=v(A,y.subLanguage.length?y.subLanguage:null);y.relevance>0&&(I+=e.relevance),O.addSublanguage(e.emitter,e.language)}}():function(){if(!y.keywords)return void O.addText(A);let e=0;y.keywordPatternRe.lastIndex=0;let n=y.keywordPatternRe.exec(A),t="";for(;n;){t+=A.substring(e,n.index);const r=c(y,n);if(r){const[e,a]=r;O.addText(t),t="",I+=a,O.addKeyword(n[0],e)}else t+=n[0];e=y.keywordPatternRe.lastIndex,n=y.keywordPatternRe.exec(A)}t+=A.substr(e),O.addText(t)}(),A=""}function h(e){return e.className&&O.openNode(e.className),y=Object.create(e,{parent:{value:y}})}function p(e){return 0===y.matcher.regexIndex?(A+=e[0],1):(L=!0,0)}var b={};function x(t,r){var i=r&&r[0];if(A+=t,null==i)return u(),0;if("begin"===b.type&&"end"===r.type&&b.index===r.index&&""===i){if(A+=o.slice(r.index,r.index+1),!l){const n=Error("0 width match regex");throw n.languageName=e,n.badRule=b.rule,n}return 1}if(b=r,"begin"===r.type)return function(e){var t=e[0],r=e.rule;const a=new n(r),i=[r.__beforeBegin,r["on:begin"]];for(const n of i)if(n&&(n(e,a),a.ignore))return p(t);return r&&r.endSameAsBegin&&(r.endRe=RegExp(t.replace(/[-/\\^$*+?.()|[\]{}]/g,"\\$&"),"m")),r.skip?A+=t:(r.excludeBegin&&(A+=t),u(),r.returnBegin||r.excludeBegin||(A=t)),h(r),r.returnBegin?0:t.length}(r);if("illegal"===r.type&&!a){const e=Error('Illegal lexeme "'+i+'" for mode "'+(y.className||"")+'"');throw e.mode=y,e}if("end"===r.type){var s=function(e){var t=e[0],r=o.substr(e.index),a=function e(t,r,a){let i=function(e,n){var t=e&&e.exec(n);return t&&0===t.index}(t.endRe,a);if(i){if(t["on:end"]){const e=new n(t);t["on:end"](r,e),e.ignore&&(i=!1)}if(i){for(;t.endsParent&&t.parent;)t=t.parent;return t}}if(t.endsWithParent)return e(t.parent,r,a)}(y,e,r);if(!a)return M;var i=y;i.skip?A+=t:(i.returnEnd||i.excludeEnd||(A+=t),u(),i.excludeEnd&&(A=t));do{y.className&&O.closeNode(),y.skip||y.subLanguage||(I+=y.relevance),y=y.parent}while(y!==a.parent);return a.starts&&(a.endSameAsBegin&&(a.starts.endRe=a.endRe),h(a.starts)),i.returnEnd?0:t.length}(r);if(s!==M)return s}if("illegal"===r.type&&""===i)return 1;if(B>1e5&&B>3*r.index)throw Error("potential infinite loop, way more iterations than matches");return A+=i,i.length}var E=T(e);if(!E)throw console.error(g.replace("{}",e)),Error('Unknown language: "'+e+'"');var _=function(e){function n(n,t){return RegExp(d(n),"m"+(e.case_insensitive?"i":"")+(t?"g":""))}class t{constructor(){this.matchIndexes={},this.regexes=[],this.matchAt=1,this.position=0}addRule(e,n){n.position=this.position++,this.matchIndexes[this.matchAt]=n,this.regexes.push([n,e]),this.matchAt+=function(e){return RegExp(e.toString()+"|").exec("").length-1}(e)+1}compile(){0===this.regexes.length&&(this.exec=()=>null);const e=this.regexes.map(e=>e[1]);this.matcherRe=n(function(e,n="|"){for(var t=/\[(?:[^\\\]]|\\.)*\]|\(\??|\\([1-9][0-9]*)|\\./,r=0,a="",i=0;i0&&(a+=n),a+="(";o.length>0;){var l=t.exec(o);if(null==l){a+=o;break}a+=o.substring(0,l.index),o=o.substring(l.index+l[0].length),"\\"===l[0][0]&&l[1]?a+="\\"+(+l[1]+s):(a+=l[0],"("===l[0]&&r++)}a+=")"}return a}(e),!0),this.lastIndex=0}exec(e){this.matcherRe.lastIndex=this.lastIndex;const n=this.matcherRe.exec(e);if(!n)return null;const t=n.findIndex((e,n)=>n>0&&void 0!==e),r=this.matchIndexes[t];return n.splice(0,t),Object.assign(n,r)}}class a{constructor(){this.rules=[],this.multiRegexes=[],this.count=0,this.lastIndex=0,this.regexIndex=0}getMatcher(e){if(this.multiRegexes[e])return this.multiRegexes[e];const n=new t;return this.rules.slice(e).forEach(([e,t])=>n.addRule(e,t)),n.compile(),this.multiRegexes[e]=n,n}considerAll(){this.regexIndex=0}addRule(e,n){this.rules.push([e,n]),"begin"===n.type&&this.count++}exec(e){const n=this.getMatcher(this.regexIndex);n.lastIndex=this.lastIndex;const t=n.exec(e);return t&&(this.regexIndex+=t.position+1,this.regexIndex===this.count&&(this.regexIndex=0)),t}}function i(e,n){const t=e.input[e.index-1],r=e.input[e.index+e[0].length];"."!==t&&"."!==r||n.ignoreMatch()}if(e.contains&&e.contains.includes("self"))throw Error("ERR: contains `self` is not supported at the top-level of a language. See documentation.");return function t(s,o){const l=s;if(s.compiled)return l;s.compiled=!0,s.__beforeBegin=null,s.keywords=s.keywords||s.beginKeywords;let c=null;if("object"==typeof s.keywords&&(c=s.keywords.$pattern,delete s.keywords.$pattern),s.keywords&&(s.keywords=function(e,n){var t={};return"string"==typeof e?r("keyword",e):Object.keys(e).forEach((function(n){r(n,e[n])})),t;function r(e,r){n&&(r=r.toLowerCase()),r.split(" ").forEach((function(n){var r=n.split("|");t[r[0]]=[e,w(r[0],r[1])]}))}}(s.keywords,e.case_insensitive)),s.lexemes&&c)throw Error("ERR: Prefer `keywords.$pattern` to `mode.lexemes`, BOTH are not allowed. (see mode reference) ");return l.keywordPatternRe=n(s.lexemes||c||/\w+/,!0),o&&(s.beginKeywords&&(s.begin="\\b("+s.beginKeywords.split(" ").join("|")+")(?=\\b|\\s)",s.__beforeBegin=i),s.begin||(s.begin=/\B|\b/),l.beginRe=n(s.begin),s.endSameAsBegin&&(s.end=s.begin),s.end||s.endsWithParent||(s.end=/\B|\b/),s.end&&(l.endRe=n(s.end)),l.terminator_end=d(s.end)||"",s.endsWithParent&&o.terminator_end&&(l.terminator_end+=(s.end?"|":"")+o.terminator_end)),s.illegal&&(l.illegalRe=n(s.illegal)),void 0===s.relevance&&(s.relevance=1),s.contains||(s.contains=[]),s.contains=[].concat(...s.contains.map((function(e){return function(e){return e.variants&&!e.cached_variants&&(e.cached_variants=e.variants.map((function(n){return r(e,{variants:null},n)}))),e.cached_variants?e.cached_variants:function e(n){return!!n&&(n.endsWithParent||e(n.starts))}(e)?r(e,{starts:e.starts?r(e.starts):null}):Object.isFrozen(e)?r(e):e}("self"===e?s:e)}))),s.contains.forEach((function(e){t(e,l)})),s.starts&&t(s.starts,o),l.matcher=function(e){const n=new a;return e.contains.forEach(e=>n.addRule(e.begin,{rule:e,type:"begin"})),e.terminator_end&&n.addRule(e.terminator_end,{type:"end"}),e.illegal&&n.addRule(e.illegal,{type:"illegal"}),n}(l),l}(e)}(E),N="",y=s||_,k={},O=new f.__emitter(f);!function(){for(var e=[],n=y;n!==E;n=n.parent)n.className&&e.unshift(n.className);e.forEach(e=>O.openNode(e))}();var A="",I=0,S=0,B=0,L=!1;try{for(y.matcher.considerAll();;){B++,L?L=!1:(y.matcher.lastIndex=S,y.matcher.considerAll());const e=y.matcher.exec(o);if(!e)break;const n=x(o.substring(S,e.index),e);S=e.index+n}return x(o.substr(S)),O.closeAllNodes(),O.finalize(),N=O.toHTML(),{relevance:I,value:N,language:e,illegal:!1,emitter:O,top:y}}catch(n){if(n.message&&n.message.includes("Illegal"))return{illegal:!0,illegalBy:{msg:n.message,context:o.slice(S-100,S+100),mode:n.mode},sofar:N,relevance:0,value:R(o),emitter:O};if(l)return{illegal:!1,relevance:0,value:R(o),emitter:O,language:e,top:y,errorRaised:n};throw n}}function v(e,n){n=n||f.languages||Object.keys(i);var t=function(e){const n={relevance:0,emitter:new f.__emitter(f),value:R(e),illegal:!1,top:h};return n.emitter.addText(e),n}(e),r=t;return n.filter(T).filter(I).forEach((function(n){var a=m(n,e,!1);a.language=n,a.relevance>r.relevance&&(r=a),a.relevance>t.relevance&&(r=t,t=a)})),r.language&&(t.second_best=r),t}function x(e){return f.tabReplace||f.useBR?e.replace(c,e=>"\n"===e?f.useBR?"
":e:f.tabReplace?e.replace(/\t/g,f.tabReplace):e):e}function E(e){let n=null;const t=function(e){var n=e.className+" ";n+=e.parentNode?e.parentNode.className:"";const t=f.languageDetectRe.exec(n);if(t){var r=T(t[1]);return r||(console.warn(g.replace("{}",t[1])),console.warn("Falling back to no-highlight mode for this block.",e)),r?t[1]:"no-highlight"}return n.split(/\s+/).find(e=>p(e)||T(e))}(e);if(p(t))return;S("before:highlightBlock",{block:e,language:t}),f.useBR?(n=document.createElement("div")).innerHTML=e.innerHTML.replace(/\n/g,"").replace(//g,"\n"):n=e;const r=n.textContent,a=t?b(t,r,!0):v(r),i=k(n);if(i.length){const e=document.createElement("div");e.innerHTML=a.value,a.value=O(i,k(e),r)}a.value=x(a.value),S("after:highlightBlock",{block:e,result:a}),e.innerHTML=a.value,e.className=function(e,n,t){var r=n?s[n]:t,a=[e.trim()];return e.match(/\bhljs\b/)||a.push("hljs"),e.includes(r)||a.push(r),a.join(" ").trim()}(e.className,t,a.language),e.result={language:a.language,re:a.relevance,relavance:a.relevance},a.second_best&&(e.second_best={language:a.second_best.language,re:a.second_best.relevance,relavance:a.second_best.relevance})}const N=()=>{if(!N.called){N.called=!0;var e=document.querySelectorAll("pre code");a.forEach.call(e,E)}};function T(e){return e=(e||"").toLowerCase(),i[e]||i[s[e]]}function A(e,{languageName:n}){"string"==typeof e&&(e=[e]),e.forEach(e=>{s[e]=n})}function I(e){var n=T(e);return n&&!n.disableAutodetect}function S(e,n){var t=e;o.forEach((function(e){e[t]&&e[t](n)}))}Object.assign(t,{highlight:b,highlightAuto:v,fixMarkup:x,highlightBlock:E,configure:function(e){f=y(f,e)},initHighlighting:N,initHighlightingOnLoad:function(){window.addEventListener("DOMContentLoaded",N,!1)},registerLanguage:function(e,n){var r=null;try{r=n(t)}catch(n){if(console.error("Language definition for '{}' could not be registered.".replace("{}",e)),!l)throw n;console.error(n),r=h}r.name||(r.name=e),i[e]=r,r.rawDefinition=n.bind(null,t),r.aliases&&A(r.aliases,{languageName:e})},listLanguages:function(){return Object.keys(i)},getLanguage:T,registerAliases:A,requireLanguage:function(e){var n=T(e);if(n)return n;throw Error("The '{}' language is required, but not loaded.".replace("{}",e))},autoDetection:I,inherit:y,addPlugin:function(e){o.push(e)}}),t.debugMode=function(){l=!1},t.safeMode=function(){l=!0},t.versionString="10.1.1";for(const n in _)"object"==typeof _[n]&&e(_[n]);return Object.assign(t,_),t}({})}();"object"==typeof exports&&"undefined"!=typeof module&&(module.exports=hljs); +hljs.registerLanguage("apache",function(){"use strict";return function(e){var n={className:"number",begin:"\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}(:\\d{1,5})?"};return{name:"Apache config",aliases:["apacheconf"],case_insensitive:!0,contains:[e.HASH_COMMENT_MODE,{className:"section",begin:"",contains:[n,{className:"number",begin:":\\d{1,5}"},e.inherit(e.QUOTE_STRING_MODE,{relevance:0})]},{className:"attribute",begin:/\w+/,relevance:0,keywords:{nomarkup:"order deny allow setenv rewriterule rewriteengine rewritecond documentroot sethandler errordocument loadmodule options header listen serverroot servername"},starts:{end:/$/,relevance:0,keywords:{literal:"on off all deny allow"},contains:[{className:"meta",begin:"\\s\\[",end:"\\]$"},{className:"variable",begin:"[\\$%]\\{",end:"\\}",contains:["self",{className:"number",begin:"[\\$%]\\d+"}]},n,{className:"number",begin:"\\d+"},e.QUOTE_STRING_MODE]}}],illegal:/\S/}}}()); +hljs.registerLanguage("bash",function(){"use strict";return function(e){const s={};Object.assign(s,{className:"variable",variants:[{begin:/\$[\w\d#@][\w\d_]*/},{begin:/\$\{/,end:/\}/,contains:[{begin:/:-/,contains:[s]}]}]});const t={className:"subst",begin:/\$\(/,end:/\)/,contains:[e.BACKSLASH_ESCAPE]},n={className:"string",begin:/"/,end:/"/,contains:[e.BACKSLASH_ESCAPE,s,t]};t.contains.push(n);const a={begin:/\$\(\(/,end:/\)\)/,contains:[{begin:/\d+#[0-9a-f]+/,className:"number"},e.NUMBER_MODE,s]},i=e.SHEBANG({binary:"(fish|bash|zsh|sh|csh|ksh|tcsh|dash|scsh)",relevance:10}),c={className:"function",begin:/\w[\w\d_]*\s*\(\s*\)\s*\{/,returnBegin:!0,contains:[e.inherit(e.TITLE_MODE,{begin:/\w[\w\d_]*/})],relevance:0};return{name:"Bash",aliases:["sh","zsh"],keywords:{$pattern:/\b-?[a-z\._]+\b/,keyword:"if then else elif fi for while in do done case esac function",literal:"true false",built_in:"break cd continue eval exec exit export getopts hash pwd readonly return shift test times trap umask unset alias bind builtin caller command declare echo enable help let local logout mapfile printf read readarray source type typeset ulimit unalias set shopt autoload bg bindkey bye cap chdir clone comparguments compcall compctl compdescribe compfiles compgroups compquote comptags comptry compvalues dirs disable disown echotc echoti emulate fc fg float functions getcap getln history integer jobs kill limit log noglob popd print pushd pushln rehash sched setcap setopt stat suspend ttyctl unfunction unhash unlimit unsetopt vared wait whence where which zcompile zformat zftp zle zmodload zparseopts zprof zpty zregexparse zsocket zstyle ztcp",_:"-ne -eq -lt -gt -f -d -e -s -l -a"},contains:[i,e.SHEBANG(),c,a,e.HASH_COMMENT_MODE,n,{className:"",begin:/\\"/},{className:"string",begin:/'/,end:/'/},s]}}}()); +hljs.registerLanguage("c-like",function(){"use strict";return function(e){function t(e){return"(?:"+e+")?"}var n="(decltype\\(auto\\)|"+t("[a-zA-Z_]\\w*::")+"[a-zA-Z_]\\w*"+t("<.*?>")+")",r={className:"keyword",begin:"\\b[a-z\\d_]*_t\\b"},a={className:"string",variants:[{begin:'(u8?|U|L)?"',end:'"',illegal:"\\n",contains:[e.BACKSLASH_ESCAPE]},{begin:"(u8?|U|L)?'(\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)|.)",end:"'",illegal:"."},e.END_SAME_AS_BEGIN({begin:/(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/,end:/\)([^()\\ ]{0,16})"/})]},i={className:"number",variants:[{begin:"\\b(0b[01']+)"},{begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)(u|U|l|L|ul|UL|f|F|b|B)"},{begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"}],relevance:0},s={className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,keywords:{"meta-keyword":"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include"},contains:[{begin:/\\\n/,relevance:0},e.inherit(a,{className:"meta-string"}),{className:"meta-string",begin:/<.*?>/,end:/$/,illegal:"\\n"},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},o={className:"title",begin:t("[a-zA-Z_]\\w*::")+e.IDENT_RE,relevance:0},c=t("[a-zA-Z_]\\w*::")+e.IDENT_RE+"\\s*\\(",l={keyword:"int float while private char char8_t char16_t char32_t catch import module export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const for static_cast|10 union namespace unsigned long volatile static protected bool template mutable if public friend do goto auto void enum else break extern using asm case typeid wchar_t short reinterpret_cast|10 default double register explicit signed typename try this switch continue inline delete alignas alignof constexpr consteval constinit decltype concept co_await co_return co_yield requires noexcept static_assert thread_local restrict final override atomic_bool atomic_char atomic_schar atomic_uchar atomic_short atomic_ushort atomic_int atomic_uint atomic_long atomic_ulong atomic_llong atomic_ullong new throw return and and_eq bitand bitor compl not not_eq or or_eq xor xor_eq",built_in:"std string wstring cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set pair bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap priority_queue make_pair array shared_ptr abort terminate abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf future isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf endl initializer_list unique_ptr _Bool complex _Complex imaginary _Imaginary",literal:"true false nullptr NULL"},d=[r,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,i,a],_={variants:[{begin:/=/,end:/;/},{begin:/\(/,end:/\)/},{beginKeywords:"new throw return else",end:/;/}],keywords:l,contains:d.concat([{begin:/\(/,end:/\)/,keywords:l,contains:d.concat(["self"]),relevance:0}]),relevance:0},u={className:"function",begin:"("+n+"[\\*&\\s]+)+"+c,returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:l,illegal:/[^\w\s\*&:<>]/,contains:[{begin:"decltype\\(auto\\)",keywords:l,relevance:0},{begin:c,returnBegin:!0,contains:[o],relevance:0},{className:"params",begin:/\(/,end:/\)/,keywords:l,relevance:0,contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,a,i,r,{begin:/\(/,end:/\)/,keywords:l,relevance:0,contains:["self",e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,a,i,r]}]},r,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,s]};return{aliases:["c","cc","h","c++","h++","hpp","hh","hxx","cxx"],keywords:l,disableAutodetect:!0,illegal:"",keywords:l,contains:["self",r]},{begin:e.IDENT_RE+"::",keywords:l},{className:"class",beginKeywords:"class struct",end:/[{;:]/,contains:[{begin://,contains:["self"]},e.TITLE_MODE]}]),exports:{preprocessor:s,strings:a,keywords:l}}}}()); +hljs.registerLanguage("c",function(){"use strict";return function(e){var n=e.getLanguage("c-like").rawDefinition();return n.name="C",n.aliases=["c","h"],n}}()); +hljs.registerLanguage("coffeescript",function(){"use strict";const e=["as","in","of","if","for","while","finally","var","new","function","do","return","void","else","break","catch","instanceof","with","throw","case","default","try","switch","continue","typeof","delete","let","yield","const","class","debugger","async","await","static","import","from","export","extends"],n=["true","false","null","undefined","NaN","Infinity"],a=[].concat(["setInterval","setTimeout","clearInterval","clearTimeout","require","exports","eval","isFinite","isNaN","parseFloat","parseInt","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","escape","unescape"],["arguments","this","super","console","window","document","localStorage","module","global"],["Intl","DataView","Number","Math","Date","String","RegExp","Object","Function","Boolean","Error","Symbol","Set","Map","WeakSet","WeakMap","Proxy","Reflect","JSON","Promise","Float64Array","Int16Array","Int32Array","Int8Array","Uint16Array","Uint32Array","Float32Array","Array","Uint8Array","Uint8ClampedArray","ArrayBuffer"],["EvalError","InternalError","RangeError","ReferenceError","SyntaxError","TypeError","URIError"]);return function(r){var t={keyword:e.concat(["then","unless","until","loop","by","when","and","or","is","isnt","not"]).filter((e=>n=>!e.includes(n))(["var","const","let","function","static"])).join(" "),literal:n.concat(["yes","no","on","off"]).join(" "),built_in:a.concat(["npm","print"]).join(" ")},i="[A-Za-z$_][0-9A-Za-z$_]*",s={className:"subst",begin:/#\{/,end:/}/,keywords:t},o=[r.BINARY_NUMBER_MODE,r.inherit(r.C_NUMBER_MODE,{starts:{end:"(\\s*/)?",relevance:0}}),{className:"string",variants:[{begin:/'''/,end:/'''/,contains:[r.BACKSLASH_ESCAPE]},{begin:/'/,end:/'/,contains:[r.BACKSLASH_ESCAPE]},{begin:/"""/,end:/"""/,contains:[r.BACKSLASH_ESCAPE,s]},{begin:/"/,end:/"/,contains:[r.BACKSLASH_ESCAPE,s]}]},{className:"regexp",variants:[{begin:"///",end:"///",contains:[s,r.HASH_COMMENT_MODE]},{begin:"//[gim]{0,3}(?=\\W)",relevance:0},{begin:/\/(?![ *]).*?(?![\\]).\/[gim]{0,3}(?=\W)/}]},{begin:"@"+i},{subLanguage:"javascript",excludeBegin:!0,excludeEnd:!0,variants:[{begin:"```",end:"```"},{begin:"`",end:"`"}]}];s.contains=o;var c=r.inherit(r.TITLE_MODE,{begin:i}),l={className:"params",begin:"\\([^\\(]",returnBegin:!0,contains:[{begin:/\(/,end:/\)/,keywords:t,contains:["self"].concat(o)}]};return{name:"CoffeeScript",aliases:["coffee","cson","iced"],keywords:t,illegal:/\/\*/,contains:o.concat([r.COMMENT("###","###"),r.HASH_COMMENT_MODE,{className:"function",begin:"^\\s*"+i+"\\s*=\\s*(\\(.*\\))?\\s*\\B[-=]>",end:"[-=]>",returnBegin:!0,contains:[c,l]},{begin:/[:\(,=]\s*/,relevance:0,contains:[{className:"function",begin:"(\\(.*\\))?\\s*\\B[-=]>",end:"[-=]>",returnBegin:!0,contains:[l]}]},{className:"class",beginKeywords:"class",end:"$",illegal:/[:="\[\]]/,contains:[{beginKeywords:"extends",endsWithParent:!0,illegal:/[:="\[\]]/,contains:[c]},c]},{begin:i+":",end:":",returnBegin:!0,returnEnd:!0,relevance:0}])}}}()); +hljs.registerLanguage("cpp",function(){"use strict";return function(e){var t=e.getLanguage("c-like").rawDefinition();return t.disableAutodetect=!1,t.name="C++",t.aliases=["cc","c++","h++","hpp","hh","hxx","cxx"],t}}()); +hljs.registerLanguage("csharp",function(){"use strict";return function(e){var n={keyword:"abstract as base bool break byte case catch char checked const continue decimal default delegate do double enum event explicit extern finally fixed float for foreach goto if implicit in int interface internal is lock long object operator out override params private protected public readonly ref sbyte sealed short sizeof stackalloc static string struct switch this try typeof uint ulong unchecked unsafe ushort using virtual void volatile while add alias ascending async await by descending dynamic equals from get global group into join let nameof on orderby partial remove select set value var when where yield",literal:"null false true"},i=e.inherit(e.TITLE_MODE,{begin:"[a-zA-Z](\\.?\\w)*"}),a={className:"number",variants:[{begin:"\\b(0b[01']+)"},{begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)(u|U|l|L|ul|UL|f|F|b|B)"},{begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"}],relevance:0},s={className:"string",begin:'@"',end:'"',contains:[{begin:'""'}]},t=e.inherit(s,{illegal:/\n/}),l={className:"subst",begin:"{",end:"}",keywords:n},r=e.inherit(l,{illegal:/\n/}),c={className:"string",begin:/\$"/,end:'"',illegal:/\n/,contains:[{begin:"{{"},{begin:"}}"},e.BACKSLASH_ESCAPE,r]},o={className:"string",begin:/\$@"/,end:'"',contains:[{begin:"{{"},{begin:"}}"},{begin:'""'},l]},g=e.inherit(o,{illegal:/\n/,contains:[{begin:"{{"},{begin:"}}"},{begin:'""'},r]});l.contains=[o,c,s,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,a,e.C_BLOCK_COMMENT_MODE],r.contains=[g,c,t,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,a,e.inherit(e.C_BLOCK_COMMENT_MODE,{illegal:/\n/})];var d={variants:[o,c,s,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},E={begin:"<",end:">",contains:[{beginKeywords:"in out"},i]},_=e.IDENT_RE+"(<"+e.IDENT_RE+"(\\s*,\\s*"+e.IDENT_RE+")*>)?(\\[\\])?",b={begin:"@"+e.IDENT_RE,relevance:0};return{name:"C#",aliases:["cs","c#"],keywords:n,illegal:/::/,contains:[e.COMMENT("///","$",{returnBegin:!0,contains:[{className:"doctag",variants:[{begin:"///",relevance:0},{begin:"\x3c!--|--\x3e"},{begin:""}]}]}),e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:"meta",begin:"#",end:"$",keywords:{"meta-keyword":"if else elif endif define undef warning error line region endregion pragma checksum"}},d,a,{beginKeywords:"class interface",end:/[{;=]/,illegal:/[^\s:,]/,contains:[{beginKeywords:"where class"},i,E,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{beginKeywords:"namespace",end:/[{;=]/,illegal:/[^\s:]/,contains:[i,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className:"meta",begin:"^\\s*\\[",excludeBegin:!0,end:"\\]",excludeEnd:!0,contains:[{className:"meta-string",begin:/"/,end:/"/}]},{beginKeywords:"new return throw await else",relevance:0},{className:"function",begin:"("+_+"\\s+)+"+e.IDENT_RE+"\\s*(\\<.+\\>)?\\s*\\(",returnBegin:!0,end:/\s*[{;=]/,excludeEnd:!0,keywords:n,contains:[{begin:e.IDENT_RE+"\\s*(\\<.+\\>)?\\s*\\(",returnBegin:!0,contains:[e.TITLE_MODE,E],relevance:0},{className:"params",begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:n,relevance:0,contains:[d,a,e.C_BLOCK_COMMENT_MODE]},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},b]}}}()); +hljs.registerLanguage("css",function(){"use strict";return function(e){var n={begin:/(?:[A-Z\_\.\-]+|--[a-zA-Z0-9_-]+)\s*:/,returnBegin:!0,end:";",endsWithParent:!0,contains:[{className:"attribute",begin:/\S/,end:":",excludeEnd:!0,starts:{endsWithParent:!0,excludeEnd:!0,contains:[{begin:/[\w-]+\(/,returnBegin:!0,contains:[{className:"built_in",begin:/[\w-]+/},{begin:/\(/,end:/\)/,contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,e.CSS_NUMBER_MODE]}]},e.CSS_NUMBER_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,e.C_BLOCK_COMMENT_MODE,{className:"number",begin:"#[0-9A-Fa-f]+"},{className:"meta",begin:"!important"}]}}]};return{name:"CSS",case_insensitive:!0,illegal:/[=\/|'\$]/,contains:[e.C_BLOCK_COMMENT_MODE,{className:"selector-id",begin:/#[A-Za-z0-9_-]+/},{className:"selector-class",begin:/\.[A-Za-z0-9_-]+/},{className:"selector-attr",begin:/\[/,end:/\]/,illegal:"$",contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},{className:"selector-pseudo",begin:/:(:)?[a-zA-Z0-9\_\-\+\(\)"'.]+/},{begin:"@(page|font-face)",lexemes:"@[a-z-]+",keywords:"@page @font-face"},{begin:"@",end:"[{;]",illegal:/:/,returnBegin:!0,contains:[{className:"keyword",begin:/@\-?\w[\w]*(\-\w+)*/},{begin:/\s/,endsWithParent:!0,excludeEnd:!0,relevance:0,keywords:"and or not only",contains:[{begin:/[a-z-]+:/,className:"attribute"},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,e.CSS_NUMBER_MODE]}]},{className:"selector-tag",begin:"[a-zA-Z-][a-zA-Z0-9_-]*",relevance:0},{begin:"{",end:"}",illegal:/\S/,contains:[e.C_BLOCK_COMMENT_MODE,n]}]}}}()); +hljs.registerLanguage("diff",function(){"use strict";return function(e){return{name:"Diff",aliases:["patch"],contains:[{className:"meta",relevance:10,variants:[{begin:/^@@ +\-\d+,\d+ +\+\d+,\d+ +@@$/},{begin:/^\*\*\* +\d+,\d+ +\*\*\*\*$/},{begin:/^\-\-\- +\d+,\d+ +\-\-\-\-$/}]},{className:"comment",variants:[{begin:/Index: /,end:/$/},{begin:/={3,}/,end:/$/},{begin:/^\-{3}/,end:/$/},{begin:/^\*{3} /,end:/$/},{begin:/^\+{3}/,end:/$/},{begin:/^\*{15}$/}]},{className:"addition",begin:"^\\+",end:"$"},{className:"deletion",begin:"^\\-",end:"$"},{className:"addition",begin:"^\\!",end:"$"}]}}}()); +hljs.registerLanguage("go",function(){"use strict";return function(e){var n={keyword:"break default func interface select case map struct chan else goto package switch const fallthrough if range type continue for import return var go defer bool byte complex64 complex128 float32 float64 int8 int16 int32 int64 string uint8 uint16 uint32 uint64 int uint uintptr rune",literal:"true false iota nil",built_in:"append cap close complex copy imag len make new panic print println real recover delete"};return{name:"Go",aliases:["golang"],keywords:n,illegal:"e(n)).join("")}return function(a){var s={className:"number",relevance:0,variants:[{begin:/([\+\-]+)?[\d]+_[\d_]+/},{begin:a.NUMBER_RE}]},i=a.COMMENT();i.variants=[{begin:/;/,end:/$/},{begin:/#/,end:/$/}];var t={className:"variable",variants:[{begin:/\$[\w\d"][\w\d_]*/},{begin:/\$\{(.*?)}/}]},r={className:"literal",begin:/\bon|off|true|false|yes|no\b/},l={className:"string",contains:[a.BACKSLASH_ESCAPE],variants:[{begin:"'''",end:"'''",relevance:10},{begin:'"""',end:'"""',relevance:10},{begin:'"',end:'"'},{begin:"'",end:"'"}]},c={begin:/\[/,end:/\]/,contains:[i,r,t,l,s,"self"],relevance:0},g="("+[/[A-Za-z0-9_-]+/,/"(\\"|[^"])*"/,/'[^']*'/].map(n=>e(n)).join("|")+")";return{name:"TOML, also INI",aliases:["toml"],case_insensitive:!0,illegal:/\S/,contains:[i,{className:"section",begin:/\[+/,end:/\]+/},{begin:n(g,"(\\s*\\.\\s*",g,")*",n("(?=",/\s*=\s*[^#\s]/,")")),className:"attr",starts:{end:/$/,contains:[i,c,r,t,l,s]}}]}}}()); +hljs.registerLanguage("java",function(){"use strict";function e(e){return e?"string"==typeof e?e:e.source:null}function n(e){return a("(",e,")?")}function a(...n){return n.map(n=>e(n)).join("")}function s(...n){return"("+n.map(n=>e(n)).join("|")+")"}return function(e){var t="false synchronized int abstract float private char boolean var static null if const for true while long strictfp finally protected import native final void enum else break transient catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private module requires exports do",i={className:"meta",begin:"@[À-ʸa-zA-Z_$][À-ʸa-zA-Z_$0-9]*",contains:[{begin:/\(/,end:/\)/,contains:["self"]}]},r=e=>a("[",e,"]+([",e,"_]*[",e,"]+)?"),c={className:"number",variants:[{begin:`\\b(0[bB]${r("01")})[lL]?`},{begin:`\\b(0${r("0-7")})[dDfFlL]?`},{begin:a(/\b0[xX]/,s(a(r("a-fA-F0-9"),/\./,r("a-fA-F0-9")),a(r("a-fA-F0-9"),/\.?/),a(/\./,r("a-fA-F0-9"))),/([pP][+-]?(\d+))?/,/[fFdDlL]?/)},{begin:a(/\b/,s(a(/\d*\./,r("\\d")),r("\\d")),/[eE][+-]?[\d]+[dDfF]?/)},{begin:a(/\b/,r(/\d/),n(/\.?/),n(r(/\d/)),/[dDfFlL]?/)}],relevance:0};return{name:"Java",aliases:["jsp"],keywords:t,illegal:/<\/|#/,contains:[e.COMMENT("/\\*\\*","\\*/",{relevance:0,contains:[{begin:/\w+@/,relevance:0},{className:"doctag",begin:"@[A-Za-z]+"}]}),e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{className:"class",beginKeywords:"class interface",end:/[{;=]/,excludeEnd:!0,keywords:"class interface",illegal:/[:"\[\]]/,contains:[{beginKeywords:"extends implements"},e.UNDERSCORE_TITLE_MODE]},{beginKeywords:"new throw return else",relevance:0},{className:"function",begin:"([À-ʸa-zA-Z_$][À-ʸa-zA-Z_$0-9]*(<[À-ʸa-zA-Z_$][À-ʸa-zA-Z_$0-9]*(\\s*,\\s*[À-ʸa-zA-Z_$][À-ʸa-zA-Z_$0-9]*)*>)?\\s+)+"+e.UNDERSCORE_IDENT_RE+"\\s*\\(",returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:t,contains:[{begin:e.UNDERSCORE_IDENT_RE+"\\s*\\(",returnBegin:!0,relevance:0,contains:[e.UNDERSCORE_TITLE_MODE]},{className:"params",begin:/\(/,end:/\)/,keywords:t,relevance:0,contains:[i,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,e.C_NUMBER_MODE,e.C_BLOCK_COMMENT_MODE]},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},c,i]}}}()); +hljs.registerLanguage("javascript",function(){"use strict";const e=["as","in","of","if","for","while","finally","var","new","function","do","return","void","else","break","catch","instanceof","with","throw","case","default","try","switch","continue","typeof","delete","let","yield","const","class","debugger","async","await","static","import","from","export","extends"],n=["true","false","null","undefined","NaN","Infinity"],a=[].concat(["setInterval","setTimeout","clearInterval","clearTimeout","require","exports","eval","isFinite","isNaN","parseFloat","parseInt","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","escape","unescape"],["arguments","this","super","console","window","document","localStorage","module","global"],["Intl","DataView","Number","Math","Date","String","RegExp","Object","Function","Boolean","Error","Symbol","Set","Map","WeakSet","WeakMap","Proxy","Reflect","JSON","Promise","Float64Array","Int16Array","Int32Array","Int8Array","Uint16Array","Uint32Array","Float32Array","Array","Uint8Array","Uint8ClampedArray","ArrayBuffer"],["EvalError","InternalError","RangeError","ReferenceError","SyntaxError","TypeError","URIError"]);function s(e){return r("(?=",e,")")}function r(...e){return e.map(e=>(function(e){return e?"string"==typeof e?e:e.source:null})(e)).join("")}return function(t){var i="[A-Za-z$_][0-9A-Za-z$_]*",c={begin:/<[A-Za-z0-9\\._:-]+/,end:/\/[A-Za-z0-9\\._:-]+>|\/>/},o={$pattern:"[A-Za-z$_][0-9A-Za-z$_]*",keyword:e.join(" "),literal:n.join(" "),built_in:a.join(" ")},l={className:"number",variants:[{begin:"\\b(0[bB][01]+)n?"},{begin:"\\b(0[oO][0-7]+)n?"},{begin:t.C_NUMBER_RE+"n?"}],relevance:0},E={className:"subst",begin:"\\$\\{",end:"\\}",keywords:o,contains:[]},d={begin:"html`",end:"",starts:{end:"`",returnEnd:!1,contains:[t.BACKSLASH_ESCAPE,E],subLanguage:"xml"}},g={begin:"css`",end:"",starts:{end:"`",returnEnd:!1,contains:[t.BACKSLASH_ESCAPE,E],subLanguage:"css"}},u={className:"string",begin:"`",end:"`",contains:[t.BACKSLASH_ESCAPE,E]};E.contains=[t.APOS_STRING_MODE,t.QUOTE_STRING_MODE,d,g,u,l,t.REGEXP_MODE];var b=E.contains.concat([{begin:/\(/,end:/\)/,contains:["self"].concat(E.contains,[t.C_BLOCK_COMMENT_MODE,t.C_LINE_COMMENT_MODE])},t.C_BLOCK_COMMENT_MODE,t.C_LINE_COMMENT_MODE]),_={className:"params",begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,contains:b};return{name:"JavaScript",aliases:["js","jsx","mjs","cjs"],keywords:o,contains:[t.SHEBANG({binary:"node",relevance:5}),{className:"meta",relevance:10,begin:/^\s*['"]use (strict|asm)['"]/},t.APOS_STRING_MODE,t.QUOTE_STRING_MODE,d,g,u,t.C_LINE_COMMENT_MODE,t.COMMENT("/\\*\\*","\\*/",{relevance:0,contains:[{className:"doctag",begin:"@[A-Za-z]+",contains:[{className:"type",begin:"\\{",end:"\\}",relevance:0},{className:"variable",begin:i+"(?=\\s*(-)|$)",endsParent:!0,relevance:0},{begin:/(?=[^\n])\s/,relevance:0}]}]}),t.C_BLOCK_COMMENT_MODE,l,{begin:r(/[{,\n]\s*/,s(r(/(((\/\/.*)|(\/\*(.|\n)*\*\/))\s*)*/,i+"\\s*:"))),relevance:0,contains:[{className:"attr",begin:i+s("\\s*:"),relevance:0}]},{begin:"("+t.RE_STARTERS_RE+"|\\b(case|return|throw)\\b)\\s*",keywords:"return throw case",contains:[t.C_LINE_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE,t.REGEXP_MODE,{className:"function",begin:"(\\([^(]*(\\([^(]*(\\([^(]*\\))?\\))?\\)|"+t.UNDERSCORE_IDENT_RE+")\\s*=>",returnBegin:!0,end:"\\s*=>",contains:[{className:"params",variants:[{begin:t.UNDERSCORE_IDENT_RE},{className:null,begin:/\(\s*\)/,skip:!0},{begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:o,contains:b}]}]},{begin:/,/,relevance:0},{className:"",begin:/\s/,end:/\s*/,skip:!0},{variants:[{begin:"<>",end:""},{begin:c.begin,end:c.end}],subLanguage:"xml",contains:[{begin:c.begin,end:c.end,skip:!0,contains:["self"]}]}],relevance:0},{className:"function",beginKeywords:"function",end:/\{/,excludeEnd:!0,contains:[t.inherit(t.TITLE_MODE,{begin:i}),_],illegal:/\[|%/},{begin:/\$[(.]/},t.METHOD_GUARD,{className:"class",beginKeywords:"class",end:/[{;=]/,excludeEnd:!0,illegal:/[:"\[\]]/,contains:[{beginKeywords:"extends"},t.UNDERSCORE_TITLE_MODE]},{beginKeywords:"constructor",end:/\{/,excludeEnd:!0},{begin:"(get|set)\\s+(?="+i+"\\()",end:/{/,keywords:"get set",contains:[t.inherit(t.TITLE_MODE,{begin:i}),{begin:/\(\)/},_]}],illegal:/#(?!!)/}}}()); +hljs.registerLanguage("json",function(){"use strict";return function(n){var e={literal:"true false null"},i=[n.C_LINE_COMMENT_MODE,n.C_BLOCK_COMMENT_MODE],t=[n.QUOTE_STRING_MODE,n.C_NUMBER_MODE],a={end:",",endsWithParent:!0,excludeEnd:!0,contains:t,keywords:e},l={begin:"{",end:"}",contains:[{className:"attr",begin:/"/,end:/"/,contains:[n.BACKSLASH_ESCAPE],illegal:"\\n"},n.inherit(a,{begin:/:/})].concat(i),illegal:"\\S"},s={begin:"\\[",end:"\\]",contains:[n.inherit(a)],illegal:"\\S"};return t.push(l,s),i.forEach((function(n){t.push(n)})),{name:"JSON",contains:t,keywords:e,illegal:"\\S"}}}()); +hljs.registerLanguage("kotlin",function(){"use strict";return function(e){var n={keyword:"abstract as val var vararg get set class object open private protected public noinline crossinline dynamic final enum if else do while for when throw try catch finally import package is in fun override companion reified inline lateinit init interface annotation data sealed internal infix operator out by constructor super tailrec where const inner suspend typealias external expect actual trait volatile transient native default",built_in:"Byte Short Char Int Long Boolean Float Double Void Unit Nothing",literal:"true false null"},a={className:"symbol",begin:e.UNDERSCORE_IDENT_RE+"@"},i={className:"subst",begin:"\\${",end:"}",contains:[e.C_NUMBER_MODE]},s={className:"variable",begin:"\\$"+e.UNDERSCORE_IDENT_RE},t={className:"string",variants:[{begin:'"""',end:'"""(?=[^"])',contains:[s,i]},{begin:"'",end:"'",illegal:/\n/,contains:[e.BACKSLASH_ESCAPE]},{begin:'"',end:'"',illegal:/\n/,contains:[e.BACKSLASH_ESCAPE,s,i]}]};i.contains.push(t);var r={className:"meta",begin:"@(?:file|property|field|get|set|receiver|param|setparam|delegate)\\s*:(?:\\s*"+e.UNDERSCORE_IDENT_RE+")?"},l={className:"meta",begin:"@"+e.UNDERSCORE_IDENT_RE,contains:[{begin:/\(/,end:/\)/,contains:[e.inherit(t,{className:"meta-string"})]}]},c=e.COMMENT("/\\*","\\*/",{contains:[e.C_BLOCK_COMMENT_MODE]}),o={variants:[{className:"type",begin:e.UNDERSCORE_IDENT_RE},{begin:/\(/,end:/\)/,contains:[]}]},d=o;return d.variants[1].contains=[o],o.variants[1].contains=[d],{name:"Kotlin",aliases:["kt"],keywords:n,contains:[e.COMMENT("/\\*\\*","\\*/",{relevance:0,contains:[{className:"doctag",begin:"@[A-Za-z]+"}]}),e.C_LINE_COMMENT_MODE,c,{className:"keyword",begin:/\b(break|continue|return|this)\b/,starts:{contains:[{className:"symbol",begin:/@\w+/}]}},a,r,l,{className:"function",beginKeywords:"fun",end:"[(]|$",returnBegin:!0,excludeEnd:!0,keywords:n,illegal:/fun\s+(<.*>)?[^\s\(]+(\s+[^\s\(]+)\s*=/,relevance:5,contains:[{begin:e.UNDERSCORE_IDENT_RE+"\\s*\\(",returnBegin:!0,relevance:0,contains:[e.UNDERSCORE_TITLE_MODE]},{className:"type",begin://,keywords:"reified",relevance:0},{className:"params",begin:/\(/,end:/\)/,endsParent:!0,keywords:n,relevance:0,contains:[{begin:/:/,end:/[=,\/]/,endsWithParent:!0,contains:[o,e.C_LINE_COMMENT_MODE,c],relevance:0},e.C_LINE_COMMENT_MODE,c,r,l,t,e.C_NUMBER_MODE]},c]},{className:"class",beginKeywords:"class interface trait",end:/[:\{(]|$/,excludeEnd:!0,illegal:"extends implements",contains:[{beginKeywords:"public protected internal private constructor"},e.UNDERSCORE_TITLE_MODE,{className:"type",begin://,excludeBegin:!0,excludeEnd:!0,relevance:0},{className:"type",begin:/[,:]\s*/,end:/[<\(,]|$/,excludeBegin:!0,returnEnd:!0},r,l]},t,{className:"meta",begin:"^#!/usr/bin/env",end:"$",illegal:"\n"},{className:"number",begin:"\\b(0[bB]([01]+[01_]+[01]+|[01]+)|0[xX]([a-fA-F0-9]+[a-fA-F0-9_]+[a-fA-F0-9]+|[a-fA-F0-9]+)|(([\\d]+[\\d_]+[\\d]+|[\\d]+)(\\.([\\d]+[\\d_]+[\\d]+|[\\d]+))?|\\.([\\d]+[\\d_]+[\\d]+|[\\d]+))([eE][-+]?\\d+)?)[lLfF]?",relevance:0}]}}}()); +hljs.registerLanguage("less",function(){"use strict";return function(e){var n="([\\w-]+|@{[\\w-]+})",a=[],s=[],t=function(e){return{className:"string",begin:"~?"+e+".*?"+e}},r=function(e,n,a){return{className:e,begin:n,relevance:a}},i={begin:"\\(",end:"\\)",contains:s,relevance:0};s.push(e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,t("'"),t('"'),e.CSS_NUMBER_MODE,{begin:"(url|data-uri)\\(",starts:{className:"string",end:"[\\)\\n]",excludeEnd:!0}},r("number","#[0-9A-Fa-f]+\\b"),i,r("variable","@@?[\\w-]+",10),r("variable","@{[\\w-]+}"),r("built_in","~?`[^`]*?`"),{className:"attribute",begin:"[\\w-]+\\s*:",end:":",returnBegin:!0,excludeEnd:!0},{className:"meta",begin:"!important"});var c=s.concat({begin:"{",end:"}",contains:a}),l={beginKeywords:"when",endsWithParent:!0,contains:[{beginKeywords:"and not"}].concat(s)},o={begin:n+"\\s*:",returnBegin:!0,end:"[;}]",relevance:0,contains:[{className:"attribute",begin:n,end:":",excludeEnd:!0,starts:{endsWithParent:!0,illegal:"[<=$]",relevance:0,contains:s}}]},g={className:"keyword",begin:"@(import|media|charset|font-face|(-[a-z]+-)?keyframes|supports|document|namespace|page|viewport|host)\\b",starts:{end:"[;{}]",returnEnd:!0,contains:s,relevance:0}},d={className:"variable",variants:[{begin:"@[\\w-]+\\s*:",relevance:15},{begin:"@[\\w-]+"}],starts:{end:"[;}]",returnEnd:!0,contains:c}},b={variants:[{begin:"[\\.#:&\\[>]",end:"[;{}]"},{begin:n,end:"{"}],returnBegin:!0,returnEnd:!0,illegal:"[<='$\"]",relevance:0,contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,l,r("keyword","all\\b"),r("variable","@{[\\w-]+}"),r("selector-tag",n+"%?",0),r("selector-id","#"+n),r("selector-class","\\."+n,0),r("selector-tag","&",0),{className:"selector-attr",begin:"\\[",end:"\\]"},{className:"selector-pseudo",begin:/:(:)?[a-zA-Z0-9\_\-\+\(\)"'.]+/},{begin:"\\(",end:"\\)",contains:c},{begin:"!important"}]};return a.push(e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,g,d,o,b),{name:"Less",case_insensitive:!0,illegal:"[=>'/<($\"]",contains:a}}}()); +hljs.registerLanguage("lua",function(){"use strict";return function(e){var t={begin:"\\[=*\\[",end:"\\]=*\\]",contains:["self"]},a=[e.COMMENT("--(?!\\[=*\\[)","$"),e.COMMENT("--\\[=*\\[","\\]=*\\]",{contains:[t],relevance:10})];return{name:"Lua",keywords:{$pattern:e.UNDERSCORE_IDENT_RE,literal:"true false nil",keyword:"and break do else elseif end for goto if in local not or repeat return then until while",built_in:"_G _ENV _VERSION __index __newindex __mode __call __metatable __tostring __len __gc __add __sub __mul __div __mod __pow __concat __unm __eq __lt __le assert collectgarbage dofile error getfenv getmetatable ipairs load loadfile loadstring module next pairs pcall print rawequal rawget rawset require select setfenv setmetatable tonumber tostring type unpack xpcall arg self coroutine resume yield status wrap create running debug getupvalue debug sethook getmetatable gethook setmetatable setlocal traceback setfenv getinfo setupvalue getlocal getregistry getfenv io lines write close flush open output type read stderr stdin input stdout popen tmpfile math log max acos huge ldexp pi cos tanh pow deg tan cosh sinh random randomseed frexp ceil floor rad abs sqrt modf asin min mod fmod log10 atan2 exp sin atan os exit setlocale date getenv difftime remove time clock tmpname rename execute package preload loadlib loaded loaders cpath config path seeall string sub upper len gfind rep find match char dump gmatch reverse byte format gsub lower table setn insert getn foreachi maxn foreach concat sort remove"},contains:a.concat([{className:"function",beginKeywords:"function",end:"\\)",contains:[e.inherit(e.TITLE_MODE,{begin:"([_a-zA-Z]\\w*\\.)*([_a-zA-Z]\\w*:)?[_a-zA-Z]\\w*"}),{className:"params",begin:"\\(",endsWithParent:!0,contains:a}].concat(a)},e.C_NUMBER_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{className:"string",begin:"\\[=*\\[",end:"\\]=*\\]",contains:[t],relevance:5}])}}}()); +hljs.registerLanguage("makefile",function(){"use strict";return function(e){var i={className:"variable",variants:[{begin:"\\$\\("+e.UNDERSCORE_IDENT_RE+"\\)",contains:[e.BACKSLASH_ESCAPE]},{begin:/\$[@%`]+/}]}]}]};return{name:"HTML, XML",aliases:["html","xhtml","rss","atom","xjb","xsd","xsl","plist","wsf","svg"],case_insensitive:!0,contains:[{className:"meta",begin:"",relevance:10,contains:[a,i,t,s,{begin:"\\[",end:"\\]",contains:[{className:"meta",begin:"",contains:[a,s,i,t]}]}]},e.COMMENT("\x3c!--","--\x3e",{relevance:10}),{begin:"<\\!\\[CDATA\\[",end:"\\]\\]>",relevance:10},n,{className:"meta",begin:/<\?xml/,end:/\?>/,relevance:10},{className:"tag",begin:")",end:">",keywords:{name:"style"},contains:[c],starts:{end:"",returnEnd:!0,subLanguage:["css","xml"]}},{className:"tag",begin:")",end:">",keywords:{name:"script"},contains:[c],starts:{end:"<\/script>",returnEnd:!0,subLanguage:["javascript","handlebars","xml"]}},{className:"tag",begin:"",contains:[{className:"name",begin:/[^\/><\s]+/,relevance:0},c]}]}}}()); +hljs.registerLanguage("markdown",function(){"use strict";return function(n){const e={begin:"<",end:">",subLanguage:"xml",relevance:0},a={begin:"\\[.+?\\][\\(\\[].*?[\\)\\]]",returnBegin:!0,contains:[{className:"string",begin:"\\[",end:"\\]",excludeBegin:!0,returnEnd:!0,relevance:0},{className:"link",begin:"\\]\\(",end:"\\)",excludeBegin:!0,excludeEnd:!0},{className:"symbol",begin:"\\]\\[",end:"\\]",excludeBegin:!0,excludeEnd:!0}],relevance:10},i={className:"strong",contains:[],variants:[{begin:/_{2}/,end:/_{2}/},{begin:/\*{2}/,end:/\*{2}/}]},s={className:"emphasis",contains:[],variants:[{begin:/\*(?!\*)/,end:/\*/},{begin:/_(?!_)/,end:/_/,relevance:0}]};i.contains.push(s),s.contains.push(i);var c=[e,a];return i.contains=i.contains.concat(c),s.contains=s.contains.concat(c),{name:"Markdown",aliases:["md","mkdown","mkd"],contains:[{className:"section",variants:[{begin:"^#{1,6}",end:"$",contains:c=c.concat(i,s)},{begin:"(?=^.+?\\n[=-]{2,}$)",contains:[{begin:"^[=-]*$"},{begin:"^",end:"\\n",contains:c}]}]},e,{className:"bullet",begin:"^[ \t]*([*+-]|(\\d+\\.))(?=\\s+)",end:"\\s+",excludeEnd:!0},i,s,{className:"quote",begin:"^>\\s+",contains:c,end:"$"},{className:"code",variants:[{begin:"(`{3,})(.|\\n)*?\\1`*[ ]*"},{begin:"(~{3,})(.|\\n)*?\\1~*[ ]*"},{begin:"```",end:"```+[ ]*$"},{begin:"~~~",end:"~~~+[ ]*$"},{begin:"`.+?`"},{begin:"(?=^( {4}|\\t))",contains:[{begin:"^( {4}|\\t)",end:"(\\n)$"}],relevance:0}]},{begin:"^[-\\*]{3,}",end:"$"},a,{begin:/^\[[^\n]+\]:/,returnBegin:!0,contains:[{className:"symbol",begin:/\[/,end:/\]/,excludeBegin:!0,excludeEnd:!0},{className:"link",begin:/:\s*/,end:/$/,excludeBegin:!0}]}]}}}()); +hljs.registerLanguage("nginx",function(){"use strict";return function(e){var n={className:"variable",variants:[{begin:/\$\d+/},{begin:/\$\{/,end:/}/},{begin:"[\\$\\@]"+e.UNDERSCORE_IDENT_RE}]},a={endsWithParent:!0,keywords:{$pattern:"[a-z/_]+",literal:"on off yes no true false none blocked debug info notice warn error crit select break last permanent redirect kqueue rtsig epoll poll /dev/poll"},relevance:0,illegal:"=>",contains:[e.HASH_COMMENT_MODE,{className:"string",contains:[e.BACKSLASH_ESCAPE,n],variants:[{begin:/"/,end:/"/},{begin:/'/,end:/'/}]},{begin:"([a-z]+):/",end:"\\s",endsWithParent:!0,excludeEnd:!0,contains:[n]},{className:"regexp",contains:[e.BACKSLASH_ESCAPE,n],variants:[{begin:"\\s\\^",end:"\\s|{|;",returnEnd:!0},{begin:"~\\*?\\s+",end:"\\s|{|;",returnEnd:!0},{begin:"\\*(\\.[a-z\\-]+)+"},{begin:"([a-z\\-]+\\.)+\\*"}]},{className:"number",begin:"\\b\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}(:\\d{1,5})?\\b"},{className:"number",begin:"\\b\\d+[kKmMgGdshdwy]*\\b",relevance:0},n]};return{name:"Nginx config",aliases:["nginxconf"],contains:[e.HASH_COMMENT_MODE,{begin:e.UNDERSCORE_IDENT_RE+"\\s+{",returnBegin:!0,end:"{",contains:[{className:"section",begin:e.UNDERSCORE_IDENT_RE}],relevance:0},{begin:e.UNDERSCORE_IDENT_RE+"\\s",end:";|{",returnBegin:!0,contains:[{className:"attribute",begin:e.UNDERSCORE_IDENT_RE,starts:a}],relevance:0}],illegal:"[^\\s\\}]"}}}()); +hljs.registerLanguage("objectivec",function(){"use strict";return function(e){var n=/[a-zA-Z@][a-zA-Z0-9_]*/,_={$pattern:n,keyword:"@interface @class @protocol @implementation"};return{name:"Objective-C",aliases:["mm","objc","obj-c"],keywords:{$pattern:n,keyword:"int float while char export sizeof typedef const struct for union unsigned long volatile static bool mutable if do return goto void enum else break extern asm case short default double register explicit signed typename this switch continue wchar_t inline readonly assign readwrite self @synchronized id typeof nonatomic super unichar IBOutlet IBAction strong weak copy in out inout bycopy byref oneway __strong __weak __block __autoreleasing @private @protected @public @try @property @end @throw @catch @finally @autoreleasepool @synthesize @dynamic @selector @optional @required @encode @package @import @defs @compatibility_alias __bridge __bridge_transfer __bridge_retained __bridge_retain __covariant __contravariant __kindof _Nonnull _Nullable _Null_unspecified __FUNCTION__ __PRETTY_FUNCTION__ __attribute__ getter setter retain unsafe_unretained nonnull nullable null_unspecified null_resettable class instancetype NS_DESIGNATED_INITIALIZER NS_UNAVAILABLE NS_REQUIRES_SUPER NS_RETURNS_INNER_POINTER NS_INLINE NS_AVAILABLE NS_DEPRECATED NS_ENUM NS_OPTIONS NS_SWIFT_UNAVAILABLE NS_ASSUME_NONNULL_BEGIN NS_ASSUME_NONNULL_END NS_REFINED_FOR_SWIFT NS_SWIFT_NAME NS_SWIFT_NOTHROW NS_DURING NS_HANDLER NS_ENDHANDLER NS_VALUERETURN NS_VOIDRETURN",literal:"false true FALSE TRUE nil YES NO NULL",built_in:"BOOL dispatch_once_t dispatch_queue_t dispatch_sync dispatch_async dispatch_once"},illegal:"/,end:/$/,illegal:"\\n"},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className:"class",begin:"("+_.keyword.split(" ").join("|")+")\\b",end:"({|$)",excludeEnd:!0,keywords:_,contains:[e.UNDERSCORE_TITLE_MODE]},{begin:"\\."+e.UNDERSCORE_IDENT_RE,relevance:0}]}}}()); +hljs.registerLanguage("perl",function(){"use strict";return function(e){var n={$pattern:/[\w.]+/,keyword:"getpwent getservent quotemeta msgrcv scalar kill dbmclose undef lc ma syswrite tr send umask sysopen shmwrite vec qx utime local oct semctl localtime readpipe do return format read sprintf dbmopen pop getpgrp not getpwnam rewinddir qq fileno qw endprotoent wait sethostent bless s|0 opendir continue each sleep endgrent shutdown dump chomp connect getsockname die socketpair close flock exists index shmget sub for endpwent redo lstat msgctl setpgrp abs exit select print ref gethostbyaddr unshift fcntl syscall goto getnetbyaddr join gmtime symlink semget splice x|0 getpeername recv log setsockopt cos last reverse gethostbyname getgrnam study formline endhostent times chop length gethostent getnetent pack getprotoent getservbyname rand mkdir pos chmod y|0 substr endnetent printf next open msgsnd readdir use unlink getsockopt getpriority rindex wantarray hex system getservbyport endservent int chr untie rmdir prototype tell listen fork shmread ucfirst setprotoent else sysseek link getgrgid shmctl waitpid unpack getnetbyname reset chdir grep split require caller lcfirst until warn while values shift telldir getpwuid my getprotobynumber delete and sort uc defined srand accept package seekdir getprotobyname semop our rename seek if q|0 chroot sysread setpwent no crypt getc chown sqrt write setnetent setpriority foreach tie sin msgget map stat getlogin unless elsif truncate exec keys glob tied closedir ioctl socket readlink eval xor readline binmode setservent eof ord bind alarm pipe atan2 getgrent exp time push setgrent gt lt or ne m|0 break given say state when"},t={className:"subst",begin:"[$@]\\{",end:"\\}",keywords:n},s={begin:"->{",end:"}"},r={variants:[{begin:/\$\d/},{begin:/[\$%@](\^\w\b|#\w+(::\w+)*|{\w+}|\w+(::\w*)*)/},{begin:/[\$%@][^\s\w{]/,relevance:0}]},i=[e.BACKSLASH_ESCAPE,t,r],a=[r,e.HASH_COMMENT_MODE,e.COMMENT("^\\=\\w","\\=cut",{endsWithParent:!0}),s,{className:"string",contains:i,variants:[{begin:"q[qwxr]?\\s*\\(",end:"\\)",relevance:5},{begin:"q[qwxr]?\\s*\\[",end:"\\]",relevance:5},{begin:"q[qwxr]?\\s*\\{",end:"\\}",relevance:5},{begin:"q[qwxr]?\\s*\\|",end:"\\|",relevance:5},{begin:"q[qwxr]?\\s*\\<",end:"\\>",relevance:5},{begin:"qw\\s+q",end:"q",relevance:5},{begin:"'",end:"'",contains:[e.BACKSLASH_ESCAPE]},{begin:'"',end:'"'},{begin:"`",end:"`",contains:[e.BACKSLASH_ESCAPE]},{begin:"{\\w+}",contains:[],relevance:0},{begin:"-?\\w+\\s*\\=\\>",contains:[],relevance:0}]},{className:"number",begin:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",relevance:0},{begin:"(\\/\\/|"+e.RE_STARTERS_RE+"|\\b(split|return|print|reverse|grep)\\b)\\s*",keywords:"split return print reverse grep",relevance:0,contains:[e.HASH_COMMENT_MODE,{className:"regexp",begin:"(s|tr|y)/(\\\\.|[^/])*/(\\\\.|[^/])*/[a-z]*",relevance:10},{className:"regexp",begin:"(m|qr)?/",end:"/[a-z]*",contains:[e.BACKSLASH_ESCAPE],relevance:0}]},{className:"function",beginKeywords:"sub",end:"(\\s*\\(.*?\\))?[;{]",excludeEnd:!0,relevance:5,contains:[e.TITLE_MODE]},{begin:"-\\w\\b",relevance:0},{begin:"^__DATA__$",end:"^__END__$",subLanguage:"mojolicious",contains:[{begin:"^@@.*",end:"$",className:"comment"}]}];return t.contains=a,s.contains=a,{name:"Perl",aliases:["pl","pm"],keywords:n,contains:a}}}()); +hljs.registerLanguage("php",function(){"use strict";return function(e){var r={begin:"\\$+[a-zA-Z_-ÿ][a-zA-Z0-9_-ÿ]*"},t={className:"meta",variants:[{begin:/<\?php/,relevance:10},{begin:/<\?[=]?/},{begin:/\?>/}]},a={className:"string",contains:[e.BACKSLASH_ESCAPE,t],variants:[{begin:'b"',end:'"'},{begin:"b'",end:"'"},e.inherit(e.APOS_STRING_MODE,{illegal:null}),e.inherit(e.QUOTE_STRING_MODE,{illegal:null})]},n={variants:[e.BINARY_NUMBER_MODE,e.C_NUMBER_MODE]},i={keyword:"__CLASS__ __DIR__ __FILE__ __FUNCTION__ __LINE__ __METHOD__ __NAMESPACE__ __TRAIT__ die echo exit include include_once print require require_once array abstract and as binary bool boolean break callable case catch class clone const continue declare default do double else elseif empty enddeclare endfor endforeach endif endswitch endwhile eval extends final finally float for foreach from global goto if implements instanceof insteadof int integer interface isset iterable list new object or private protected public real return string switch throw trait try unset use var void while xor yield",literal:"false null true",built_in:"Error|0 AppendIterator ArgumentCountError ArithmeticError ArrayIterator ArrayObject AssertionError BadFunctionCallException BadMethodCallException CachingIterator CallbackFilterIterator CompileError Countable DirectoryIterator DivisionByZeroError DomainException EmptyIterator ErrorException Exception FilesystemIterator FilterIterator GlobIterator InfiniteIterator InvalidArgumentException IteratorIterator LengthException LimitIterator LogicException MultipleIterator NoRewindIterator OutOfBoundsException OutOfRangeException OuterIterator OverflowException ParentIterator ParseError RangeException RecursiveArrayIterator RecursiveCachingIterator RecursiveCallbackFilterIterator RecursiveDirectoryIterator RecursiveFilterIterator RecursiveIterator RecursiveIteratorIterator RecursiveRegexIterator RecursiveTreeIterator RegexIterator RuntimeException SeekableIterator SplDoublyLinkedList SplFileInfo SplFileObject SplFixedArray SplHeap SplMaxHeap SplMinHeap SplObjectStorage SplObserver SplObserver SplPriorityQueue SplQueue SplStack SplSubject SplSubject SplTempFileObject TypeError UnderflowException UnexpectedValueException ArrayAccess Closure Generator Iterator IteratorAggregate Serializable Throwable Traversable WeakReference Directory __PHP_Incomplete_Class parent php_user_filter self static stdClass"};return{aliases:["php","php3","php4","php5","php6","php7"],case_insensitive:!0,keywords:i,contains:[e.HASH_COMMENT_MODE,e.COMMENT("//","$",{contains:[t]}),e.COMMENT("/\\*","\\*/",{contains:[{className:"doctag",begin:"@[A-Za-z]+"}]}),e.COMMENT("__halt_compiler.+?;",!1,{endsWithParent:!0,keywords:"__halt_compiler"}),{className:"string",begin:/<<<['"]?\w+['"]?$/,end:/^\w+;?$/,contains:[e.BACKSLASH_ESCAPE,{className:"subst",variants:[{begin:/\$\w+/},{begin:/\{\$/,end:/\}/}]}]},t,{className:"keyword",begin:/\$this\b/},r,{begin:/(::|->)+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/},{className:"function",beginKeywords:"fn function",end:/[;{]/,excludeEnd:!0,illegal:"[$%\\[]",contains:[e.UNDERSCORE_TITLE_MODE,{className:"params",begin:"\\(",end:"\\)",excludeBegin:!0,excludeEnd:!0,keywords:i,contains:["self",r,e.C_BLOCK_COMMENT_MODE,a,n]}]},{className:"class",beginKeywords:"class interface",end:"{",excludeEnd:!0,illegal:/[:\(\$"]/,contains:[{beginKeywords:"extends implements"},e.UNDERSCORE_TITLE_MODE]},{beginKeywords:"namespace",end:";",illegal:/[\.']/,contains:[e.UNDERSCORE_TITLE_MODE]},{beginKeywords:"use",end:";",contains:[e.UNDERSCORE_TITLE_MODE]},{begin:"=>"},a,n]}}}()); +hljs.registerLanguage("php-template",function(){"use strict";return function(n){return{name:"PHP template",subLanguage:"xml",contains:[{begin:/<\?(php|=)?/,end:/\?>/,subLanguage:"php",contains:[{begin:"/\\*",end:"\\*/",skip:!0},{begin:'b"',end:'"',skip:!0},{begin:"b'",end:"'",skip:!0},n.inherit(n.APOS_STRING_MODE,{illegal:null,className:null,contains:null,skip:!0}),n.inherit(n.QUOTE_STRING_MODE,{illegal:null,className:null,contains:null,skip:!0})]}]}}}()); +hljs.registerLanguage("plaintext",function(){"use strict";return function(t){return{name:"Plain text",aliases:["text","txt"],disableAutodetect:!0}}}()); +hljs.registerLanguage("properties",function(){"use strict";return function(e){var n="[ \\t\\f]*",t="("+n+"[:=]"+n+"|[ \\t\\f]+)",a="([^\\\\:= \\t\\f\\n]|\\\\.)+",s={end:t,relevance:0,starts:{className:"string",end:/$/,relevance:0,contains:[{begin:"\\\\\\n"}]}};return{name:".properties",case_insensitive:!0,illegal:/\S/,contains:[e.COMMENT("^\\s*[!#]","$"),{begin:"([^\\\\\\W:= \\t\\f\\n]|\\\\.)+"+t,returnBegin:!0,contains:[{className:"attr",begin:"([^\\\\\\W:= \\t\\f\\n]|\\\\.)+",endsParent:!0,relevance:0}],starts:s},{begin:a+t,returnBegin:!0,relevance:0,contains:[{className:"meta",begin:a,endsParent:!0,relevance:0}],starts:s},{className:"attr",relevance:0,begin:a+n+"$"}]}}}()); +hljs.registerLanguage("python",function(){"use strict";return function(e){var n={keyword:"and elif is global as in if from raise for except finally print import pass return exec else break not with class assert yield try while continue del or def lambda async await nonlocal|10",built_in:"Ellipsis NotImplemented",literal:"False None True"},a={className:"meta",begin:/^(>>>|\.\.\.) /},i={className:"subst",begin:/\{/,end:/\}/,keywords:n,illegal:/#/},s={begin:/\{\{/,relevance:0},r={className:"string",contains:[e.BACKSLASH_ESCAPE],variants:[{begin:/(u|b)?r?'''/,end:/'''/,contains:[e.BACKSLASH_ESCAPE,a],relevance:10},{begin:/(u|b)?r?"""/,end:/"""/,contains:[e.BACKSLASH_ESCAPE,a],relevance:10},{begin:/(fr|rf|f)'''/,end:/'''/,contains:[e.BACKSLASH_ESCAPE,a,s,i]},{begin:/(fr|rf|f)"""/,end:/"""/,contains:[e.BACKSLASH_ESCAPE,a,s,i]},{begin:/(u|r|ur)'/,end:/'/,relevance:10},{begin:/(u|r|ur)"/,end:/"/,relevance:10},{begin:/(b|br)'/,end:/'/},{begin:/(b|br)"/,end:/"/},{begin:/(fr|rf|f)'/,end:/'/,contains:[e.BACKSLASH_ESCAPE,s,i]},{begin:/(fr|rf|f)"/,end:/"/,contains:[e.BACKSLASH_ESCAPE,s,i]},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},l={className:"number",relevance:0,variants:[{begin:e.BINARY_NUMBER_RE+"[lLjJ]?"},{begin:"\\b(0o[0-7]+)[lLjJ]?"},{begin:e.C_NUMBER_RE+"[lLjJ]?"}]},t={className:"params",variants:[{begin:/\(\s*\)/,skip:!0,className:null},{begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,contains:["self",a,l,r,e.HASH_COMMENT_MODE]}]};return i.contains=[r,l,a],{name:"Python",aliases:["py","gyp","ipython"],keywords:n,illegal:/(<\/|->|\?)|=>/,contains:[a,l,{beginKeywords:"if",relevance:0},r,e.HASH_COMMENT_MODE,{variants:[{className:"function",beginKeywords:"def"},{className:"class",beginKeywords:"class"}],end:/:/,illegal:/[${=;\n,]/,contains:[e.UNDERSCORE_TITLE_MODE,t,{begin:/->/,endsWithParent:!0,keywords:"None"}]},{className:"meta",begin:/^[\t ]*@/,end:/$/},{begin:/\b(print|exec)\(/}]}}}()); +hljs.registerLanguage("python-repl",function(){"use strict";return function(n){return{aliases:["pycon"],contains:[{className:"meta",starts:{end:/ |$/,starts:{end:"$",subLanguage:"python"}},variants:[{begin:/^>>>(?=[ ]|$)/},{begin:/^\.\.\.(?=[ ]|$)/}]}]}}}()); +hljs.registerLanguage("ruby",function(){"use strict";return function(e){var n="[a-zA-Z_]\\w*[!?=]?|[-+~]\\@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?",a={keyword:"and then defined module in return redo if BEGIN retry end for self when next until do begin unless END rescue else break undef not super class case require yield alias while ensure elsif or include attr_reader attr_writer attr_accessor",literal:"true false nil"},s={className:"doctag",begin:"@[A-Za-z]+"},i={begin:"#<",end:">"},r=[e.COMMENT("#","$",{contains:[s]}),e.COMMENT("^\\=begin","^\\=end",{contains:[s],relevance:10}),e.COMMENT("^__END__","\\n$")],c={className:"subst",begin:"#\\{",end:"}",keywords:a},t={className:"string",contains:[e.BACKSLASH_ESCAPE,c],variants:[{begin:/'/,end:/'/},{begin:/"/,end:/"/},{begin:/`/,end:/`/},{begin:"%[qQwWx]?\\(",end:"\\)"},{begin:"%[qQwWx]?\\[",end:"\\]"},{begin:"%[qQwWx]?{",end:"}"},{begin:"%[qQwWx]?<",end:">"},{begin:"%[qQwWx]?/",end:"/"},{begin:"%[qQwWx]?%",end:"%"},{begin:"%[qQwWx]?-",end:"-"},{begin:"%[qQwWx]?\\|",end:"\\|"},{begin:/\B\?(\\\d{1,3}|\\x[A-Fa-f0-9]{1,2}|\\u[A-Fa-f0-9]{4}|\\?\S)\b/},{begin:/<<[-~]?'?(\w+)(?:.|\n)*?\n\s*\1\b/,returnBegin:!0,contains:[{begin:/<<[-~]?'?/},e.END_SAME_AS_BEGIN({begin:/(\w+)/,end:/(\w+)/,contains:[e.BACKSLASH_ESCAPE,c]})]}]},b={className:"params",begin:"\\(",end:"\\)",endsParent:!0,keywords:a},d=[t,i,{className:"class",beginKeywords:"class module",end:"$|;",illegal:/=/,contains:[e.inherit(e.TITLE_MODE,{begin:"[A-Za-z_]\\w*(::\\w+)*(\\?|\\!)?"}),{begin:"<\\s*",contains:[{begin:"("+e.IDENT_RE+"::)?"+e.IDENT_RE}]}].concat(r)},{className:"function",beginKeywords:"def",end:"$|;",contains:[e.inherit(e.TITLE_MODE,{begin:n}),b].concat(r)},{begin:e.IDENT_RE+"::"},{className:"symbol",begin:e.UNDERSCORE_IDENT_RE+"(\\!|\\?)?:",relevance:0},{className:"symbol",begin:":(?!\\s)",contains:[t,{begin:n}],relevance:0},{className:"number",begin:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",relevance:0},{begin:"(\\$\\W)|((\\$|\\@\\@?)(\\w+))"},{className:"params",begin:/\|/,end:/\|/,keywords:a},{begin:"("+e.RE_STARTERS_RE+"|unless)\\s*",keywords:"unless",contains:[i,{className:"regexp",contains:[e.BACKSLASH_ESCAPE,c],illegal:/\n/,variants:[{begin:"/",end:"/[a-z]*"},{begin:"%r{",end:"}[a-z]*"},{begin:"%r\\(",end:"\\)[a-z]*"},{begin:"%r!",end:"![a-z]*"},{begin:"%r\\[",end:"\\][a-z]*"}]}].concat(r),relevance:0}].concat(r);c.contains=d,b.contains=d;var g=[{begin:/^\s*=>/,starts:{end:"$",contains:d}},{className:"meta",begin:"^([>?]>|[\\w#]+\\(\\w+\\):\\d+:\\d+>|(\\w+-)?\\d+\\.\\d+\\.\\d(p\\d+)?[^>]+>)",starts:{end:"$",contains:d}}];return{name:"Ruby",aliases:["rb","gemspec","podspec","thor","irb"],keywords:a,illegal:/\/\*/,contains:r.concat(g).concat(d)}}}()); +hljs.registerLanguage("rust",function(){"use strict";return function(e){var n="([ui](8|16|32|64|128|size)|f(32|64))?",t="drop i8 i16 i32 i64 i128 isize u8 u16 u32 u64 u128 usize f32 f64 str char bool Box Option Result String Vec Copy Send Sized Sync Drop Fn FnMut FnOnce ToOwned Clone Debug PartialEq PartialOrd Eq Ord AsRef AsMut Into From Default Iterator Extend IntoIterator DoubleEndedIterator ExactSizeIterator SliceConcatExt ToString assert! assert_eq! bitflags! bytes! cfg! col! concat! concat_idents! debug_assert! debug_assert_eq! env! panic! file! format! format_args! include_bin! include_str! line! local_data_key! module_path! option_env! print! println! select! stringify! try! unimplemented! unreachable! vec! write! writeln! macro_rules! assert_ne! debug_assert_ne!";return{name:"Rust",aliases:["rs"],keywords:{$pattern:e.IDENT_RE+"!?",keyword:"abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self Self static struct super trait true try type typeof unsafe unsized use virtual where while yield",literal:"true false Some None Ok Err",built_in:t},illegal:""}]}}}()); +hljs.registerLanguage("scss",function(){"use strict";return function(e){var t={className:"variable",begin:"(\\$[a-zA-Z-][a-zA-Z0-9_-]*)\\b"},i={className:"number",begin:"#[0-9A-Fa-f]+"};return e.CSS_NUMBER_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,e.C_BLOCK_COMMENT_MODE,{name:"SCSS",case_insensitive:!0,illegal:"[=/|']",contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:"selector-id",begin:"\\#[A-Za-z0-9_-]+",relevance:0},{className:"selector-class",begin:"\\.[A-Za-z0-9_-]+",relevance:0},{className:"selector-attr",begin:"\\[",end:"\\]",illegal:"$"},{className:"selector-tag",begin:"\\b(a|abbr|acronym|address|area|article|aside|audio|b|base|big|blockquote|body|br|button|canvas|caption|cite|code|col|colgroup|command|datalist|dd|del|details|dfn|div|dl|dt|em|embed|fieldset|figcaption|figure|footer|form|frame|frameset|(h[1-6])|head|header|hgroup|hr|html|i|iframe|img|input|ins|kbd|keygen|label|legend|li|link|map|mark|meta|meter|nav|noframes|noscript|object|ol|optgroup|option|output|p|param|pre|progress|q|rp|rt|ruby|samp|script|section|select|small|span|strike|strong|style|sub|sup|table|tbody|td|textarea|tfoot|th|thead|time|title|tr|tt|ul|var|video)\\b",relevance:0},{className:"selector-pseudo",begin:":(visited|valid|root|right|required|read-write|read-only|out-range|optional|only-of-type|only-child|nth-of-type|nth-last-of-type|nth-last-child|nth-child|not|link|left|last-of-type|last-child|lang|invalid|indeterminate|in-range|hover|focus|first-of-type|first-line|first-letter|first-child|first|enabled|empty|disabled|default|checked|before|after|active)"},{className:"selector-pseudo",begin:"::(after|before|choices|first-letter|first-line|repeat-index|repeat-item|selection|value)"},t,{className:"attribute",begin:"\\b(src|z-index|word-wrap|word-spacing|word-break|width|widows|white-space|visibility|vertical-align|unicode-bidi|transition-timing-function|transition-property|transition-duration|transition-delay|transition|transform-style|transform-origin|transform|top|text-underline-position|text-transform|text-shadow|text-rendering|text-overflow|text-indent|text-decoration-style|text-decoration-line|text-decoration-color|text-decoration|text-align-last|text-align|tab-size|table-layout|right|resize|quotes|position|pointer-events|perspective-origin|perspective|page-break-inside|page-break-before|page-break-after|padding-top|padding-right|padding-left|padding-bottom|padding|overflow-y|overflow-x|overflow-wrap|overflow|outline-width|outline-style|outline-offset|outline-color|outline|orphans|order|opacity|object-position|object-fit|normal|none|nav-up|nav-right|nav-left|nav-index|nav-down|min-width|min-height|max-width|max-height|mask|marks|margin-top|margin-right|margin-left|margin-bottom|margin|list-style-type|list-style-position|list-style-image|list-style|line-height|letter-spacing|left|justify-content|initial|inherit|ime-mode|image-orientation|image-resolution|image-rendering|icon|hyphens|height|font-weight|font-variant-ligatures|font-variant|font-style|font-stretch|font-size-adjust|font-size|font-language-override|font-kerning|font-feature-settings|font-family|font|float|flex-wrap|flex-shrink|flex-grow|flex-flow|flex-direction|flex-basis|flex|filter|empty-cells|display|direction|cursor|counter-reset|counter-increment|content|column-width|column-span|column-rule-width|column-rule-style|column-rule-color|column-rule|column-gap|column-fill|column-count|columns|color|clip-path|clip|clear|caption-side|break-inside|break-before|break-after|box-sizing|box-shadow|box-decoration-break|bottom|border-width|border-top-width|border-top-style|border-top-right-radius|border-top-left-radius|border-top-color|border-top|border-style|border-spacing|border-right-width|border-right-style|border-right-color|border-right|border-radius|border-left-width|border-left-style|border-left-color|border-left|border-image-width|border-image-source|border-image-slice|border-image-repeat|border-image-outset|border-image|border-color|border-collapse|border-bottom-width|border-bottom-style|border-bottom-right-radius|border-bottom-left-radius|border-bottom-color|border-bottom|border|background-size|background-repeat|background-position|background-origin|background-image|background-color|background-clip|background-attachment|background-blend-mode|background|backface-visibility|auto|animation-timing-function|animation-play-state|animation-name|animation-iteration-count|animation-fill-mode|animation-duration|animation-direction|animation-delay|animation|align-self|align-items|align-content)\\b",illegal:"[^\\s]"},{begin:"\\b(whitespace|wait|w-resize|visible|vertical-text|vertical-ideographic|uppercase|upper-roman|upper-alpha|underline|transparent|top|thin|thick|text|text-top|text-bottom|tb-rl|table-header-group|table-footer-group|sw-resize|super|strict|static|square|solid|small-caps|separate|se-resize|scroll|s-resize|rtl|row-resize|ridge|right|repeat|repeat-y|repeat-x|relative|progress|pointer|overline|outside|outset|oblique|nowrap|not-allowed|normal|none|nw-resize|no-repeat|no-drop|newspaper|ne-resize|n-resize|move|middle|medium|ltr|lr-tb|lowercase|lower-roman|lower-alpha|loose|list-item|line|line-through|line-edge|lighter|left|keep-all|justify|italic|inter-word|inter-ideograph|inside|inset|inline|inline-block|inherit|inactive|ideograph-space|ideograph-parenthesis|ideograph-numeric|ideograph-alpha|horizontal|hidden|help|hand|groove|fixed|ellipsis|e-resize|double|dotted|distribute|distribute-space|distribute-letter|distribute-all-lines|disc|disabled|default|decimal|dashed|crosshair|collapse|col-resize|circle|char|center|capitalize|break-word|break-all|bottom|both|bolder|bold|block|bidi-override|below|baseline|auto|always|all-scroll|absolute|table|table-cell)\\b"},{begin:":",end:";",contains:[t,i,e.CSS_NUMBER_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,{className:"meta",begin:"!important"}]},{begin:"@(page|font-face)",lexemes:"@[a-z-]+",keywords:"@page @font-face"},{begin:"@",end:"[{;]",returnBegin:!0,keywords:"and or not only",contains:[{begin:"@[a-z-]+",className:"keyword"},t,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,i,e.CSS_NUMBER_MODE]}]}}}()); +hljs.registerLanguage("shell",function(){"use strict";return function(s){return{name:"Shell Session",aliases:["console"],contains:[{className:"meta",begin:"^\\s{0,3}[/\\w\\d\\[\\]()@-]*[>%$#]",starts:{end:"$",subLanguage:"bash"}}]}}}()); +hljs.registerLanguage("sql",function(){"use strict";return function(e){var t=e.COMMENT("--","$");return{name:"SQL",case_insensitive:!0,illegal:/[<>{}*]/,contains:[{beginKeywords:"begin end start commit rollback savepoint lock alter create drop rename call delete do handler insert load replace select truncate update set show pragma grant merge describe use explain help declare prepare execute deallocate release unlock purge reset change stop analyze cache flush optimize repair kill install uninstall checksum restore check backup revoke comment values with",end:/;/,endsWithParent:!0,keywords:{$pattern:/[\w\.]+/,keyword:"as abort abs absolute acc acce accep accept access accessed accessible account acos action activate add addtime admin administer advanced advise aes_decrypt aes_encrypt after agent aggregate ali alia alias all allocate allow alter always analyze ancillary and anti any anydata anydataset anyschema anytype apply archive archived archivelog are as asc ascii asin assembly assertion associate asynchronous at atan atn2 attr attri attrib attribu attribut attribute attributes audit authenticated authentication authid authors auto autoallocate autodblink autoextend automatic availability avg backup badfile basicfile before begin beginning benchmark between bfile bfile_base big bigfile bin binary_double binary_float binlog bit_and bit_count bit_length bit_or bit_xor bitmap blob_base block blocksize body both bound bucket buffer_cache buffer_pool build bulk by byte byteordermark bytes cache caching call calling cancel capacity cascade cascaded case cast catalog category ceil ceiling chain change changed char_base char_length character_length characters characterset charindex charset charsetform charsetid check checksum checksum_agg child choose chr chunk class cleanup clear client clob clob_base clone close cluster_id cluster_probability cluster_set clustering coalesce coercibility col collate collation collect colu colum column column_value columns columns_updated comment commit compact compatibility compiled complete composite_limit compound compress compute concat concat_ws concurrent confirm conn connec connect connect_by_iscycle connect_by_isleaf connect_by_root connect_time connection consider consistent constant constraint constraints constructor container content contents context contributors controlfile conv convert convert_tz corr corr_k corr_s corresponding corruption cos cost count count_big counted covar_pop covar_samp cpu_per_call cpu_per_session crc32 create creation critical cross cube cume_dist curdate current current_date current_time current_timestamp current_user cursor curtime customdatum cycle data database databases datafile datafiles datalength date_add date_cache date_format date_sub dateadd datediff datefromparts datename datepart datetime2fromparts day day_to_second dayname dayofmonth dayofweek dayofyear days db_role_change dbtimezone ddl deallocate declare decode decompose decrement decrypt deduplicate def defa defau defaul default defaults deferred defi defin define degrees delayed delegate delete delete_all delimited demand dense_rank depth dequeue des_decrypt des_encrypt des_key_file desc descr descri describ describe descriptor deterministic diagnostics difference dimension direct_load directory disable disable_all disallow disassociate discardfile disconnect diskgroup distinct distinctrow distribute distributed div do document domain dotnet double downgrade drop dumpfile duplicate duration each edition editionable editions element ellipsis else elsif elt empty enable enable_all enclosed encode encoding encrypt end end-exec endian enforced engine engines enqueue enterprise entityescaping eomonth error errors escaped evalname evaluate event eventdata events except exception exceptions exchange exclude excluding execu execut execute exempt exists exit exp expire explain explode export export_set extended extent external external_1 external_2 externally extract failed failed_login_attempts failover failure far fast feature_set feature_value fetch field fields file file_name_convert filesystem_like_logging final finish first first_value fixed flash_cache flashback floor flush following follows for forall force foreign form forma format found found_rows freelist freelists freepools fresh from from_base64 from_days ftp full function general generated get get_format get_lock getdate getutcdate global global_name globally go goto grant grants greatest group group_concat group_id grouping grouping_id groups gtid_subtract guarantee guard handler hash hashkeys having hea head headi headin heading heap help hex hierarchy high high_priority hosts hour hours http id ident_current ident_incr ident_seed identified identity idle_time if ifnull ignore iif ilike ilm immediate import in include including increment index indexes indexing indextype indicator indices inet6_aton inet6_ntoa inet_aton inet_ntoa infile initial initialized initially initrans inmemory inner innodb input insert install instance instantiable instr interface interleaved intersect into invalidate invisible is is_free_lock is_ipv4 is_ipv4_compat is_not is_not_null is_used_lock isdate isnull isolation iterate java join json json_exists keep keep_duplicates key keys kill language large last last_day last_insert_id last_value lateral lax lcase lead leading least leaves left len lenght length less level levels library like like2 like4 likec limit lines link list listagg little ln load load_file lob lobs local localtime localtimestamp locate locator lock locked log log10 log2 logfile logfiles logging logical logical_reads_per_call logoff logon logs long loop low low_priority lower lpad lrtrim ltrim main make_set makedate maketime managed management manual map mapping mask master master_pos_wait match matched materialized max maxextents maximize maxinstances maxlen maxlogfiles maxloghistory maxlogmembers maxsize maxtrans md5 measures median medium member memcompress memory merge microsecond mid migration min minextents minimum mining minus minute minutes minvalue missing mod mode model modification modify module monitoring month months mount move movement multiset mutex name name_const names nan national native natural nav nchar nclob nested never new newline next nextval no no_write_to_binlog noarchivelog noaudit nobadfile nocheck nocompress nocopy nocycle nodelay nodiscardfile noentityescaping noguarantee nokeep nologfile nomapping nomaxvalue nominimize nominvalue nomonitoring none noneditionable nonschema noorder nopr nopro noprom nopromp noprompt norely noresetlogs noreverse normal norowdependencies noschemacheck noswitch not nothing notice notnull notrim novalidate now nowait nth_value nullif nulls num numb numbe nvarchar nvarchar2 object ocicoll ocidate ocidatetime ociduration ociinterval ociloblocator ocinumber ociref ocirefcursor ocirowid ocistring ocitype oct octet_length of off offline offset oid oidindex old on online only opaque open operations operator optimal optimize option optionally or oracle oracle_date oradata ord ordaudio orddicom orddoc order ordimage ordinality ordvideo organization orlany orlvary out outer outfile outline output over overflow overriding package pad parallel parallel_enable parameters parent parse partial partition partitions pascal passing password password_grace_time password_lock_time password_reuse_max password_reuse_time password_verify_function patch path patindex pctincrease pctthreshold pctused pctversion percent percent_rank percentile_cont percentile_disc performance period period_add period_diff permanent physical pi pipe pipelined pivot pluggable plugin policy position post_transaction pow power pragma prebuilt precedes preceding precision prediction prediction_cost prediction_details prediction_probability prediction_set prepare present preserve prior priority private private_sga privileges procedural procedure procedure_analyze processlist profiles project prompt protection public publishingservername purge quarter query quick quiesce quota quotename radians raise rand range rank raw read reads readsize rebuild record records recover recovery recursive recycle redo reduced ref reference referenced references referencing refresh regexp_like register regr_avgx regr_avgy regr_count regr_intercept regr_r2 regr_slope regr_sxx regr_sxy reject rekey relational relative relaylog release release_lock relies_on relocate rely rem remainder rename repair repeat replace replicate replication required reset resetlogs resize resource respect restore restricted result result_cache resumable resume retention return returning returns reuse reverse revoke right rlike role roles rollback rolling rollup round row row_count rowdependencies rowid rownum rows rtrim rules safe salt sample save savepoint sb1 sb2 sb4 scan schema schemacheck scn scope scroll sdo_georaster sdo_topo_geometry search sec_to_time second seconds section securefile security seed segment select self semi sequence sequential serializable server servererror session session_user sessions_per_user set sets settings sha sha1 sha2 share shared shared_pool short show shrink shutdown si_averagecolor si_colorhistogram si_featurelist si_positionalcolor si_stillimage si_texture siblings sid sign sin size size_t sizes skip slave sleep smalldatetimefromparts smallfile snapshot some soname sort soundex source space sparse spfile split sql sql_big_result sql_buffer_result sql_cache sql_calc_found_rows sql_small_result sql_variant_property sqlcode sqldata sqlerror sqlname sqlstate sqrt square standalone standby start starting startup statement static statistics stats_binomial_test stats_crosstab stats_ks_test stats_mode stats_mw_test stats_one_way_anova stats_t_test_ stats_t_test_indep stats_t_test_one stats_t_test_paired stats_wsr_test status std stddev stddev_pop stddev_samp stdev stop storage store stored str str_to_date straight_join strcmp strict string struct stuff style subdate subpartition subpartitions substitutable substr substring subtime subtring_index subtype success sum suspend switch switchoffset switchover sync synchronous synonym sys sys_xmlagg sysasm sysaux sysdate sysdatetimeoffset sysdba sysoper system system_user sysutcdatetime table tables tablespace tablesample tan tdo template temporary terminated tertiary_weights test than then thread through tier ties time time_format time_zone timediff timefromparts timeout timestamp timestampadd timestampdiff timezone_abbr timezone_minute timezone_region to to_base64 to_date to_days to_seconds todatetimeoffset trace tracking transaction transactional translate translation treat trigger trigger_nestlevel triggers trim truncate try_cast try_convert try_parse type ub1 ub2 ub4 ucase unarchived unbounded uncompress under undo unhex unicode uniform uninstall union unique unix_timestamp unknown unlimited unlock unnest unpivot unrecoverable unsafe unsigned until untrusted unusable unused update updated upgrade upped upper upsert url urowid usable usage use use_stored_outlines user user_data user_resources users using utc_date utc_timestamp uuid uuid_short validate validate_password_strength validation valist value values var var_samp varcharc vari varia variab variabl variable variables variance varp varraw varrawc varray verify version versions view virtual visible void wait wallet warning warnings week weekday weekofyear wellformed when whene whenev wheneve whenever where while whitespace window with within without work wrapped xdb xml xmlagg xmlattributes xmlcast xmlcolattval xmlelement xmlexists xmlforest xmlindex xmlnamespaces xmlpi xmlquery xmlroot xmlschema xmlserialize xmltable xmltype xor year year_to_month years yearweek",literal:"true false null unknown",built_in:"array bigint binary bit blob bool boolean char character date dec decimal float int int8 integer interval number numeric real record serial serial8 smallint text time timestamp tinyint varchar varchar2 varying void"},contains:[{className:"string",begin:"'",end:"'",contains:[{begin:"''"}]},{className:"string",begin:'"',end:'"',contains:[{begin:'""'}]},{className:"string",begin:"`",end:"`"},e.C_NUMBER_MODE,e.C_BLOCK_COMMENT_MODE,t,e.HASH_COMMENT_MODE]},e.C_BLOCK_COMMENT_MODE,t,e.HASH_COMMENT_MODE]}}}()); +hljs.registerLanguage("swift",function(){"use strict";return function(e){var i={keyword:"#available #colorLiteral #column #else #elseif #endif #file #fileLiteral #function #if #imageLiteral #line #selector #sourceLocation _ __COLUMN__ __FILE__ __FUNCTION__ __LINE__ Any as as! as? associatedtype associativity break case catch class continue convenience default defer deinit didSet do dynamic dynamicType else enum extension fallthrough false fileprivate final for func get guard if import in indirect infix init inout internal is lazy left let mutating nil none nonmutating open operator optional override postfix precedence prefix private protocol Protocol public repeat required rethrows return right self Self set static struct subscript super switch throw throws true try try! try? Type typealias unowned var weak where while willSet",literal:"true false nil",built_in:"abs advance alignof alignofValue anyGenerator assert assertionFailure bridgeFromObjectiveC bridgeFromObjectiveCUnconditional bridgeToObjectiveC bridgeToObjectiveCUnconditional c compactMap contains count countElements countLeadingZeros debugPrint debugPrintln distance dropFirst dropLast dump encodeBitsAsWords enumerate equal fatalError filter find getBridgedObjectiveCType getVaList indices insertionSort isBridgedToObjectiveC isBridgedVerbatimToObjectiveC isUniquelyReferenced isUniquelyReferencedNonObjC join lazy lexicographicalCompare map max maxElement min minElement numericCast overlaps partition posix precondition preconditionFailure print println quickSort readLine reduce reflect reinterpretCast reverse roundUpToAlignment sizeof sizeofValue sort split startsWith stride strideof strideofValue swap toString transcode underestimateCount unsafeAddressOf unsafeBitCast unsafeDowncast unsafeUnwrap unsafeReflect withExtendedLifetime withObjectAtPlusZero withUnsafePointer withUnsafePointerToObject withUnsafeMutablePointer withUnsafeMutablePointers withUnsafePointer withUnsafePointers withVaList zip"},n=e.COMMENT("/\\*","\\*/",{contains:["self"]}),t={className:"subst",begin:/\\\(/,end:"\\)",keywords:i,contains:[]},a={className:"string",contains:[e.BACKSLASH_ESCAPE,t],variants:[{begin:/"""/,end:/"""/},{begin:/"/,end:/"/}]},r={className:"number",begin:"\\b([\\d_]+(\\.[\\deE_]+)?|0x[a-fA-F0-9_]+(\\.[a-fA-F0-9p_]+)?|0b[01_]+|0o[0-7_]+)\\b",relevance:0};return t.contains=[r],{name:"Swift",keywords:i,contains:[a,e.C_LINE_COMMENT_MODE,n,{className:"type",begin:"\\b[A-Z][\\wÀ-ʸ']*[!?]"},{className:"type",begin:"\\b[A-Z][\\wÀ-ʸ']*",relevance:0},r,{className:"function",beginKeywords:"func",end:"{",excludeEnd:!0,contains:[e.inherit(e.TITLE_MODE,{begin:/[A-Za-z$_][0-9A-Za-z$_]*/}),{begin://},{className:"params",begin:/\(/,end:/\)/,endsParent:!0,keywords:i,contains:["self",r,a,e.C_BLOCK_COMMENT_MODE,{begin:":"}],illegal:/["']/}],illegal:/\[|%/},{className:"class",beginKeywords:"struct protocol class extension enum",keywords:i,end:"\\{",excludeEnd:!0,contains:[e.inherit(e.TITLE_MODE,{begin:/[A-Za-z$_][\u00C0-\u02B80-9A-Za-z$_]*/})]},{className:"meta",begin:"(@discardableResult|@warn_unused_result|@exported|@lazy|@noescape|@NSCopying|@NSManaged|@objc|@objcMembers|@convention|@required|@noreturn|@IBAction|@IBDesignable|@IBInspectable|@IBOutlet|@infix|@prefix|@postfix|@autoclosure|@testable|@available|@nonobjc|@NSApplicationMain|@UIApplicationMain|@dynamicMemberLookup|@propertyWrapper)\\b"},{beginKeywords:"import",end:/$/,contains:[e.C_LINE_COMMENT_MODE,n]}]}}}()); +hljs.registerLanguage("typescript",function(){"use strict";const e=["as","in","of","if","for","while","finally","var","new","function","do","return","void","else","break","catch","instanceof","with","throw","case","default","try","switch","continue","typeof","delete","let","yield","const","class","debugger","async","await","static","import","from","export","extends"],n=["true","false","null","undefined","NaN","Infinity"],a=[].concat(["setInterval","setTimeout","clearInterval","clearTimeout","require","exports","eval","isFinite","isNaN","parseFloat","parseInt","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","escape","unescape"],["arguments","this","super","console","window","document","localStorage","module","global"],["Intl","DataView","Number","Math","Date","String","RegExp","Object","Function","Boolean","Error","Symbol","Set","Map","WeakSet","WeakMap","Proxy","Reflect","JSON","Promise","Float64Array","Int16Array","Int32Array","Int8Array","Uint16Array","Uint32Array","Float32Array","Array","Uint8Array","Uint8ClampedArray","ArrayBuffer"],["EvalError","InternalError","RangeError","ReferenceError","SyntaxError","TypeError","URIError"]);return function(r){var t={$pattern:"[A-Za-z$_][0-9A-Za-z$_]*",keyword:e.concat(["type","namespace","typedef","interface","public","private","protected","implements","declare","abstract","readonly"]).join(" "),literal:n.join(" "),built_in:a.concat(["any","void","number","boolean","string","object","never","enum"]).join(" ")},s={className:"meta",begin:"@[A-Za-z$_][0-9A-Za-z$_]*"},i={className:"number",variants:[{begin:"\\b(0[bB][01]+)n?"},{begin:"\\b(0[oO][0-7]+)n?"},{begin:r.C_NUMBER_RE+"n?"}],relevance:0},o={className:"subst",begin:"\\$\\{",end:"\\}",keywords:t,contains:[]},c={begin:"html`",end:"",starts:{end:"`",returnEnd:!1,contains:[r.BACKSLASH_ESCAPE,o],subLanguage:"xml"}},l={begin:"css`",end:"",starts:{end:"`",returnEnd:!1,contains:[r.BACKSLASH_ESCAPE,o],subLanguage:"css"}},E={className:"string",begin:"`",end:"`",contains:[r.BACKSLASH_ESCAPE,o]};o.contains=[r.APOS_STRING_MODE,r.QUOTE_STRING_MODE,c,l,E,i,r.REGEXP_MODE];var d={begin:"\\(",end:/\)/,keywords:t,contains:["self",r.QUOTE_STRING_MODE,r.APOS_STRING_MODE,r.NUMBER_MODE]},u={className:"params",begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:t,contains:[r.C_LINE_COMMENT_MODE,r.C_BLOCK_COMMENT_MODE,s,d]};return{name:"TypeScript",aliases:["ts"],keywords:t,contains:[r.SHEBANG(),{className:"meta",begin:/^\s*['"]use strict['"]/},r.APOS_STRING_MODE,r.QUOTE_STRING_MODE,c,l,E,r.C_LINE_COMMENT_MODE,r.C_BLOCK_COMMENT_MODE,i,{begin:"("+r.RE_STARTERS_RE+"|\\b(case|return|throw)\\b)\\s*",keywords:"return throw case",contains:[r.C_LINE_COMMENT_MODE,r.C_BLOCK_COMMENT_MODE,r.REGEXP_MODE,{className:"function",begin:"(\\([^(]*(\\([^(]*(\\([^(]*\\))?\\))?\\)|"+r.UNDERSCORE_IDENT_RE+")\\s*=>",returnBegin:!0,end:"\\s*=>",contains:[{className:"params",variants:[{begin:r.UNDERSCORE_IDENT_RE},{className:null,begin:/\(\s*\)/,skip:!0},{begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:t,contains:d.contains}]}]}],relevance:0},{className:"function",beginKeywords:"function",end:/[\{;]/,excludeEnd:!0,keywords:t,contains:["self",r.inherit(r.TITLE_MODE,{begin:"[A-Za-z$_][0-9A-Za-z$_]*"}),u],illegal:/%/,relevance:0},{beginKeywords:"constructor",end:/[\{;]/,excludeEnd:!0,contains:["self",u]},{begin:/module\./,keywords:{built_in:"module"},relevance:0},{beginKeywords:"module",end:/\{/,excludeEnd:!0},{beginKeywords:"interface",end:/\{/,excludeEnd:!0,keywords:"interface extends"},{begin:/\$[(.]/},{begin:"\\."+r.IDENT_RE,relevance:0},s,d]}}}()); +hljs.registerLanguage("yaml",function(){"use strict";return function(e){var n="true false yes no null",a="[\\w#;/?:@&=+$,.~*\\'()[\\]]+",s={className:"string",relevance:0,variants:[{begin:/'/,end:/'/},{begin:/"/,end:/"/},{begin:/\S+/}],contains:[e.BACKSLASH_ESCAPE,{className:"template-variable",variants:[{begin:"{{",end:"}}"},{begin:"%{",end:"}"}]}]},i=e.inherit(s,{variants:[{begin:/'/,end:/'/},{begin:/"/,end:/"/},{begin:/[^\s,{}[\]]+/}]}),l={end:",",endsWithParent:!0,excludeEnd:!0,contains:[],keywords:n,relevance:0},t={begin:"{",end:"}",contains:[l],illegal:"\\n",relevance:0},g={begin:"\\[",end:"\\]",contains:[l],illegal:"\\n",relevance:0},b=[{className:"attr",variants:[{begin:"\\w[\\w :\\/.-]*:(?=[ \t]|$)"},{begin:'"\\w[\\w :\\/.-]*":(?=[ \t]|$)'},{begin:"'\\w[\\w :\\/.-]*':(?=[ \t]|$)"}]},{className:"meta",begin:"^---s*$",relevance:10},{className:"string",begin:"[\\|>]([0-9]?[+-])?[ ]*\\n( *)[\\S ]+\\n(\\2[\\S ]+\\n?)*"},{begin:"<%[%=-]?",end:"[%-]?%>",subLanguage:"ruby",excludeBegin:!0,excludeEnd:!0,relevance:0},{className:"type",begin:"!\\w+!"+a},{className:"type",begin:"!<"+a+">"},{className:"type",begin:"!"+a},{className:"type",begin:"!!"+a},{className:"meta",begin:"&"+e.UNDERSCORE_IDENT_RE+"$"},{className:"meta",begin:"\\*"+e.UNDERSCORE_IDENT_RE+"$"},{className:"bullet",begin:"\\-(?=[ ]|$)",relevance:0},e.HASH_COMMENT_MODE,{beginKeywords:n,keywords:{literal:n}},{className:"number",begin:"\\b[0-9]{4}(-[0-9][0-9]){0,2}([Tt \\t][0-9][0-9]?(:[0-9][0-9]){2})?(\\.[0-9]*)?([ \\t])*(Z|[-+][0-9][0-9]?(:[0-9][0-9])?)?\\b"},{className:"number",begin:e.C_NUMBER_RE+"\\b"},t,g,s],c=[...b];return c.pop(),c.push(i),l.contains=c,{name:"YAML",case_insensitive:!0,aliases:["yml","YAML"],contains:b}}}()); +hljs.registerLanguage("armasm",function(){"use strict";return function(s){const e={variants:[s.COMMENT("^[ \\t]*(?=#)","$",{relevance:0,excludeBegin:!0}),s.COMMENT("[;@]","$",{relevance:0}),s.C_LINE_COMMENT_MODE,s.C_BLOCK_COMMENT_MODE]};return{name:"ARM Assembly",case_insensitive:!0,aliases:["arm"],keywords:{$pattern:"\\.?"+s.IDENT_RE,meta:".2byte .4byte .align .ascii .asciz .balign .byte .code .data .else .end .endif .endm .endr .equ .err .exitm .extern .global .hword .if .ifdef .ifndef .include .irp .long .macro .rept .req .section .set .skip .space .text .word .arm .thumb .code16 .code32 .force_thumb .thumb_func .ltorg ALIAS ALIGN ARM AREA ASSERT ATTR CN CODE CODE16 CODE32 COMMON CP DATA DCB DCD DCDU DCDO DCFD DCFDU DCI DCQ DCQU DCW DCWU DN ELIF ELSE END ENDFUNC ENDIF ENDP ENTRY EQU EXPORT EXPORTAS EXTERN FIELD FILL FUNCTION GBLA GBLL GBLS GET GLOBAL IF IMPORT INCBIN INCLUDE INFO KEEP LCLA LCLL LCLS LTORG MACRO MAP MEND MEXIT NOFP OPT PRESERVE8 PROC QN READONLY RELOC REQUIRE REQUIRE8 RLIST FN ROUT SETA SETL SETS SN SPACE SUBT THUMB THUMBX TTL WHILE WEND ",built_in:"r0 r1 r2 r3 r4 r5 r6 r7 r8 r9 r10 r11 r12 r13 r14 r15 pc lr sp ip sl sb fp a1 a2 a3 a4 v1 v2 v3 v4 v5 v6 v7 v8 f0 f1 f2 f3 f4 f5 f6 f7 p0 p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 c0 c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 q0 q1 q2 q3 q4 q5 q6 q7 q8 q9 q10 q11 q12 q13 q14 q15 cpsr_c cpsr_x cpsr_s cpsr_f cpsr_cx cpsr_cxs cpsr_xs cpsr_xsf cpsr_sf cpsr_cxsf spsr_c spsr_x spsr_s spsr_f spsr_cx spsr_cxs spsr_xs spsr_xsf spsr_sf spsr_cxsf s0 s1 s2 s3 s4 s5 s6 s7 s8 s9 s10 s11 s12 s13 s14 s15 s16 s17 s18 s19 s20 s21 s22 s23 s24 s25 s26 s27 s28 s29 s30 s31 d0 d1 d2 d3 d4 d5 d6 d7 d8 d9 d10 d11 d12 d13 d14 d15 d16 d17 d18 d19 d20 d21 d22 d23 d24 d25 d26 d27 d28 d29 d30 d31 {PC} {VAR} {TRUE} {FALSE} {OPT} {CONFIG} {ENDIAN} {CODESIZE} {CPU} {FPU} {ARCHITECTURE} {PCSTOREOFFSET} {ARMASM_VERSION} {INTER} {ROPI} {RWPI} {SWST} {NOSWST} . @"},contains:[{className:"keyword",begin:"\\b(adc|(qd?|sh?|u[qh]?)?add(8|16)?|usada?8|(q|sh?|u[qh]?)?(as|sa)x|and|adrl?|sbc|rs[bc]|asr|b[lx]?|blx|bxj|cbn?z|tb[bh]|bic|bfc|bfi|[su]bfx|bkpt|cdp2?|clz|clrex|cmp|cmn|cpsi[ed]|cps|setend|dbg|dmb|dsb|eor|isb|it[te]{0,3}|lsl|lsr|ror|rrx|ldm(([id][ab])|f[ds])?|ldr((s|ex)?[bhd])?|movt?|mvn|mra|mar|mul|[us]mull|smul[bwt][bt]|smu[as]d|smmul|smmla|mla|umlaal|smlal?([wbt][bt]|d)|mls|smlsl?[ds]|smc|svc|sev|mia([bt]{2}|ph)?|mrr?c2?|mcrr2?|mrs|msr|orr|orn|pkh(tb|bt)|rbit|rev(16|sh)?|sel|[su]sat(16)?|nop|pop|push|rfe([id][ab])?|stm([id][ab])?|str(ex)?[bhd]?|(qd?)?sub|(sh?|q|u[qh]?)?sub(8|16)|[su]xt(a?h|a?b(16)?)|srs([id][ab])?|swpb?|swi|smi|tst|teq|wfe|wfi|yield)(eq|ne|cs|cc|mi|pl|vs|vc|hi|ls|ge|lt|gt|le|al|hs|lo)?[sptrx]?(?=\\s)"},e,s.QUOTE_STRING_MODE,{className:"string",begin:"'",end:"[^\\\\]'",relevance:0},{className:"title",begin:"\\|",end:"\\|",illegal:"\\n",relevance:0},{className:"number",variants:[{begin:"[#$=]?0x[0-9a-f]+"},{begin:"[#$=]?0b[01]+"},{begin:"[#$=]\\d+"},{begin:"\\b\\d+"}],relevance:0},{className:"symbol",variants:[{begin:"^[ \\t]*[a-z_\\.\\$][a-z0-9_\\.\\$]+:"},{begin:"^[a-z_\\.\\$][a-z0-9_\\.\\$]+"},{begin:"[=#]\\w+"}],relevance:0}]}}}()); +hljs.registerLanguage("d",function(){"use strict";return function(e){var a={$pattern:e.UNDERSCORE_IDENT_RE,keyword:"abstract alias align asm assert auto body break byte case cast catch class const continue debug default delete deprecated do else enum export extern final finally for foreach foreach_reverse|10 goto if immutable import in inout int interface invariant is lazy macro mixin module new nothrow out override package pragma private protected public pure ref return scope shared static struct super switch synchronized template this throw try typedef typeid typeof union unittest version void volatile while with __FILE__ __LINE__ __gshared|10 __thread __traits __DATE__ __EOF__ __TIME__ __TIMESTAMP__ __VENDOR__ __VERSION__",built_in:"bool cdouble cent cfloat char creal dchar delegate double dstring float function idouble ifloat ireal long real short string ubyte ucent uint ulong ushort wchar wstring",literal:"false null true"},d="((0|[1-9][\\d_]*)|0[bB][01_]+|0[xX]([\\da-fA-F][\\da-fA-F_]*|_[\\da-fA-F][\\da-fA-F_]*))",n="\\\\(['\"\\?\\\\abfnrtv]|u[\\dA-Fa-f]{4}|[0-7]{1,3}|x[\\dA-Fa-f]{2}|U[\\dA-Fa-f]{8})|&[a-zA-Z\\d]{2,};",t={className:"number",begin:"\\b"+d+"(L|u|U|Lu|LU|uL|UL)?",relevance:0},_={className:"number",begin:"\\b(((0[xX](([\\da-fA-F][\\da-fA-F_]*|_[\\da-fA-F][\\da-fA-F_]*)\\.([\\da-fA-F][\\da-fA-F_]*|_[\\da-fA-F][\\da-fA-F_]*)|\\.?([\\da-fA-F][\\da-fA-F_]*|_[\\da-fA-F][\\da-fA-F_]*))[pP][+-]?(0|[1-9][\\d_]*|\\d[\\d_]*|[\\d_]+?\\d))|((0|[1-9][\\d_]*|\\d[\\d_]*|[\\d_]+?\\d)(\\.\\d*|([eE][+-]?(0|[1-9][\\d_]*|\\d[\\d_]*|[\\d_]+?\\d)))|\\d+\\.(0|[1-9][\\d_]*|\\d[\\d_]*|[\\d_]+?\\d)(0|[1-9][\\d_]*|\\d[\\d_]*|[\\d_]+?\\d)|\\.(0|[1-9][\\d_]*)([eE][+-]?(0|[1-9][\\d_]*|\\d[\\d_]*|[\\d_]+?\\d))?))([fF]|L|i|[fF]i|Li)?|"+d+"(i|[fF]i|Li))",relevance:0},r={className:"string",begin:"'("+n+"|.)",end:"'",illegal:"."},i={className:"string",begin:'"',contains:[{begin:n,relevance:0}],end:'"[cwd]?'},s=e.COMMENT("\\/\\+","\\+\\/",{contains:["self"],relevance:10});return{name:"D",keywords:a,contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,s,{className:"string",begin:'x"[\\da-fA-F\\s\\n\\r]*"[cwd]?',relevance:10},i,{className:"string",begin:'[rq]"',end:'"[cwd]?',relevance:5},{className:"string",begin:"`",end:"`[cwd]?"},{className:"string",begin:'q"\\{',end:'\\}"'},_,t,r,{className:"meta",begin:"^#!",end:"$",relevance:5},{className:"meta",begin:"#(line)",end:"$",relevance:5},{className:"keyword",begin:"@[a-zA-Z_][a-zA-Z_\\d]*"}]}}}()); +hljs.registerLanguage("handlebars",function(){"use strict";function e(...e){return e.map(e=>(function(e){return e?"string"==typeof e?e:e.source:null})(e)).join("")}return function(n){const a={"builtin-name":"action bindattr collection component concat debugger each each-in get hash if in input link-to loc log lookup mut outlet partial query-params render template textarea unbound unless view with yield"},t=/\[.*?\]/,s=/[^\s!"#%&'()*+,.\/;<=>@\[\\\]^`{|}~]+/,i=e("(",/'.*?'/,"|",/".*?"/,"|",t,"|",s,"|",/\.|\//,")+"),r=e("(",t,"|",s,")(?==)"),l={begin:i,lexemes:/[\w.\/]+/},c=n.inherit(l,{keywords:{literal:"true false undefined null"}}),o={begin:/\(/,end:/\)/},m={className:"attr",begin:r,relevance:0,starts:{begin:/=/,end:/=/,starts:{contains:[n.NUMBER_MODE,n.QUOTE_STRING_MODE,n.APOS_STRING_MODE,c,o]}}},d={contains:[n.NUMBER_MODE,n.QUOTE_STRING_MODE,n.APOS_STRING_MODE,{begin:/as\s+\|/,keywords:{keyword:"as"},end:/\|/,contains:[{begin:/\w+/}]},m,c,o],returnEnd:!0},g=n.inherit(l,{className:"name",keywords:a,starts:n.inherit(d,{end:/\)/})});o.contains=[g];const u=n.inherit(l,{keywords:a,className:"name",starts:n.inherit(d,{end:/}}/})}),b=n.inherit(l,{keywords:a,className:"name"}),h=n.inherit(l,{className:"name",keywords:a,starts:n.inherit(d,{end:/}}/})});return{name:"Handlebars",aliases:["hbs","html.hbs","html.handlebars","htmlbars"],case_insensitive:!0,subLanguage:"xml",contains:[{begin:/\\\{\{/,skip:!0},{begin:/\\\\(?=\{\{)/,skip:!0},n.COMMENT(/\{\{!--/,/--\}\}/),n.COMMENT(/\{\{!/,/\}\}/),{className:"template-tag",begin:/\{\{\{\{(?!\/)/,end:/\}\}\}\}/,contains:[u],starts:{end:/\{\{\{\{\//,returnEnd:!0,subLanguage:"xml"}},{className:"template-tag",begin:/\{\{\{\{\//,end:/\}\}\}\}/,contains:[b]},{className:"template-tag",begin:/\{\{#/,end:/\}\}/,contains:[u]},{className:"template-tag",begin:/\{\{(?=else\}\})/,end:/\}\}/,keywords:"else"},{className:"template-tag",begin:/\{\{\//,end:/\}\}/,contains:[b]},{className:"template-variable",begin:/\{\{\{/,end:/\}\}\}/,contains:[h]},{className:"template-variable",begin:/\{\{/,end:/\}\}/,contains:[h]}]}}}()); +hljs.registerLanguage("haskell",function(){"use strict";return function(e){var n={variants:[e.COMMENT("--","$"),e.COMMENT("{-","-}",{contains:["self"]})]},i={className:"meta",begin:"{-#",end:"#-}"},a={className:"meta",begin:"^#",end:"$"},s={className:"type",begin:"\\b[A-Z][\\w']*",relevance:0},l={begin:"\\(",end:"\\)",illegal:'"',contains:[i,a,{className:"type",begin:"\\b[A-Z][\\w]*(\\((\\.\\.|,|\\w+)\\))?"},e.inherit(e.TITLE_MODE,{begin:"[_a-z][\\w']*"}),n]};return{name:"Haskell",aliases:["hs"],keywords:"let in if then else case of where do module import hiding qualified type data newtype deriving class instance as default infix infixl infixr foreign export ccall stdcall cplusplus jvm dotnet safe unsafe family forall mdo proc rec",contains:[{beginKeywords:"module",end:"where",keywords:"module where",contains:[l,n],illegal:"\\W\\.|;"},{begin:"\\bimport\\b",end:"$",keywords:"import qualified as hiding",contains:[l,n],illegal:"\\W\\.|;"},{className:"class",begin:"^(\\s*)?(class|instance)\\b",end:"where",keywords:"class family instance where",contains:[s,l,n]},{className:"class",begin:"\\b(data|(new)?type)\\b",end:"$",keywords:"data family type newtype deriving",contains:[i,s,l,{begin:"{",end:"}",contains:l.contains},n]},{beginKeywords:"default",end:"$",contains:[s,l,n]},{beginKeywords:"infix infixl infixr",end:"$",contains:[e.C_NUMBER_MODE,n]},{begin:"\\bforeign\\b",end:"$",keywords:"foreign import export ccall stdcall cplusplus jvm dotnet safe unsafe",contains:[s,e.QUOTE_STRING_MODE,n]},{className:"meta",begin:"#!\\/usr\\/bin\\/env runhaskell",end:"$"},i,a,e.QUOTE_STRING_MODE,e.C_NUMBER_MODE,s,e.inherit(e.TITLE_MODE,{begin:"^[_a-z][\\w']*"}),n,{begin:"->|<-"}]}}}()); +hljs.registerLanguage("julia",function(){"use strict";return function(e){var r="[A-Za-z_\\u00A1-\\uFFFF][A-Za-z_0-9\\u00A1-\\uFFFF]*",t={$pattern:r,keyword:"in isa where baremodule begin break catch ccall const continue do else elseif end export false finally for function global if import importall let local macro module quote return true try using while type immutable abstract bitstype typealias ",literal:"true false ARGS C_NULL DevNull ENDIAN_BOM ENV I Inf Inf16 Inf32 Inf64 InsertionSort JULIA_HOME LOAD_PATH MergeSort NaN NaN16 NaN32 NaN64 PROGRAM_FILE QuickSort RoundDown RoundFromZero RoundNearest RoundNearestTiesAway RoundNearestTiesUp RoundToZero RoundUp STDERR STDIN STDOUT VERSION catalan e|0 eu|0 eulergamma golden im nothing pi γ π φ ",built_in:"ANY AbstractArray AbstractChannel AbstractFloat AbstractMatrix AbstractRNG AbstractSerializer AbstractSet AbstractSparseArray AbstractSparseMatrix AbstractSparseVector AbstractString AbstractUnitRange AbstractVecOrMat AbstractVector Any ArgumentError Array AssertionError Associative Base64DecodePipe Base64EncodePipe Bidiagonal BigFloat BigInt BitArray BitMatrix BitVector Bool BoundsError BufferStream CachingPool CapturedException CartesianIndex CartesianRange Cchar Cdouble Cfloat Channel Char Cint Cintmax_t Clong Clonglong ClusterManager Cmd CodeInfo Colon Complex Complex128 Complex32 Complex64 CompositeException Condition ConjArray ConjMatrix ConjVector Cptrdiff_t Cshort Csize_t Cssize_t Cstring Cuchar Cuint Cuintmax_t Culong Culonglong Cushort Cwchar_t Cwstring DataType Date DateFormat DateTime DenseArray DenseMatrix DenseVecOrMat DenseVector Diagonal Dict DimensionMismatch Dims DirectIndexString Display DivideError DomainError EOFError EachLine Enum Enumerate ErrorException Exception ExponentialBackOff Expr Factorization FileMonitor Float16 Float32 Float64 Function Future GlobalRef GotoNode HTML Hermitian IO IOBuffer IOContext IOStream IPAddr IPv4 IPv6 IndexCartesian IndexLinear IndexStyle InexactError InitError Int Int128 Int16 Int32 Int64 Int8 IntSet Integer InterruptException InvalidStateException Irrational KeyError LabelNode LinSpace LineNumberNode LoadError LowerTriangular MIME Matrix MersenneTwister Method MethodError MethodTable Module NTuple NewvarNode NullException Nullable Number ObjectIdDict OrdinalRange OutOfMemoryError OverflowError Pair ParseError PartialQuickSort PermutedDimsArray Pipe PollingFileWatcher ProcessExitedException Ptr QuoteNode RandomDevice Range RangeIndex Rational RawFD ReadOnlyMemoryError Real ReentrantLock Ref Regex RegexMatch RemoteChannel RemoteException RevString RoundingMode RowVector SSAValue SegmentationFault SerializationState Set SharedArray SharedMatrix SharedVector Signed SimpleVector Slot SlotNumber SparseMatrixCSC SparseVector StackFrame StackOverflowError StackTrace StepRange StepRangeLen StridedArray StridedMatrix StridedVecOrMat StridedVector String SubArray SubString SymTridiagonal Symbol Symmetric SystemError TCPSocket Task Text TextDisplay Timer Tridiagonal Tuple Type TypeError TypeMapEntry TypeMapLevel TypeName TypeVar TypedSlot UDPSocket UInt UInt128 UInt16 UInt32 UInt64 UInt8 UndefRefError UndefVarError UnicodeError UniformScaling Union UnionAll UnitRange Unsigned UpperTriangular Val Vararg VecElement VecOrMat Vector VersionNumber Void WeakKeyDict WeakRef WorkerConfig WorkerPool "},a={keywords:t,illegal:/<\//},n={className:"subst",begin:/\$\(/,end:/\)/,keywords:t},o={className:"variable",begin:"\\$"+r},i={className:"string",contains:[e.BACKSLASH_ESCAPE,n,o],variants:[{begin:/\w*"""/,end:/"""\w*/,relevance:10},{begin:/\w*"/,end:/"\w*/}]},l={className:"string",contains:[e.BACKSLASH_ESCAPE,n,o],begin:"`",end:"`"},s={className:"meta",begin:"@"+r};return a.name="Julia",a.contains=[{className:"number",begin:/(\b0x[\d_]*(\.[\d_]*)?|0x\.\d[\d_]*)p[-+]?\d+|\b0[box][a-fA-F0-9][a-fA-F0-9_]*|(\b\d[\d_]*(\.[\d_]*)?|\.\d[\d_]*)([eEfF][-+]?\d+)?/,relevance:0},{className:"string",begin:/'(.|\\[xXuU][a-zA-Z0-9]+)'/},i,l,s,{className:"comment",variants:[{begin:"#=",end:"=#",relevance:10},{begin:"#",end:"$"}]},e.HASH_COMMENT_MODE,{className:"keyword",begin:"\\b(((abstract|primitive)\\s+)type|(mutable\\s+)?struct)\\b"},{begin:/<:/}],n.contains=a.contains,a}}()); +hljs.registerLanguage("nim",function(){"use strict";return function(e){return{name:"Nim",aliases:["nim"],keywords:{keyword:"addr and as asm bind block break case cast const continue converter discard distinct div do elif else end enum except export finally for from func generic if import in include interface is isnot iterator let macro method mixin mod nil not notin object of or out proc ptr raise ref return shl shr static template try tuple type using var when while with without xor yield",literal:"shared guarded stdin stdout stderr result true false",built_in:"int int8 int16 int32 int64 uint uint8 uint16 uint32 uint64 float float32 float64 bool char string cstring pointer expr stmt void auto any range array openarray varargs seq set clong culong cchar cschar cshort cint csize clonglong cfloat cdouble clongdouble cuchar cushort cuint culonglong cstringarray semistatic"},contains:[{className:"meta",begin:/{\./,end:/\.}/,relevance:10},{className:"string",begin:/[a-zA-Z]\w*"/,end:/"/,contains:[{begin:/""/}]},{className:"string",begin:/([a-zA-Z]\w*)?"""/,end:/"""/},e.QUOTE_STRING_MODE,{className:"type",begin:/\b[A-Z]\w+\b/,relevance:0},{className:"number",relevance:0,variants:[{begin:/\b(0[xX][0-9a-fA-F][_0-9a-fA-F]*)('?[iIuU](8|16|32|64))?/},{begin:/\b(0o[0-7][_0-7]*)('?[iIuUfF](8|16|32|64))?/},{begin:/\b(0(b|B)[01][_01]*)('?[iIuUfF](8|16|32|64))?/},{begin:/\b(\d[_\d]*)('?[iIuUfF](8|16|32|64))?/}]},e.HASH_COMMENT_MODE]}}}()); +hljs.registerLanguage("r",function(){"use strict";return function(e){var n="([a-zA-Z]|\\.[a-zA-Z.])[a-zA-Z0-9._]*";return{name:"R",contains:[e.HASH_COMMENT_MODE,{begin:n,keywords:{$pattern:n,keyword:"function if in break next repeat else for return switch while try tryCatch stop warning require library attach detach source setMethod setGeneric setGroupGeneric setClass ...",literal:"NULL NA TRUE FALSE T F Inf NaN NA_integer_|10 NA_real_|10 NA_character_|10 NA_complex_|10"},relevance:0},{className:"number",begin:"0[xX][0-9a-fA-F]+[Li]?\\b",relevance:0},{className:"number",begin:"\\d+(?:[eE][+\\-]?\\d*)?L\\b",relevance:0},{className:"number",begin:"\\d+\\.(?!\\d)(?:i\\b)?",relevance:0},{className:"number",begin:"\\d+(?:\\.\\d*)?(?:[eE][+\\-]?\\d*)?i?\\b",relevance:0},{className:"number",begin:"\\.\\d+(?:[eE][+\\-]?\\d*)?i?\\b",relevance:0},{begin:"`",end:"`",relevance:0},{className:"string",contains:[e.BACKSLASH_ESCAPE],variants:[{begin:'"',end:'"'},{begin:"'",end:"'"}]}]}}}()); +hljs.registerLanguage("scala",function(){"use strict";return function(e){var n={className:"subst",variants:[{begin:"\\$[A-Za-z0-9_]+"},{begin:"\\${",end:"}"}]},a={className:"string",variants:[{begin:'"',end:'"',illegal:"\\n",contains:[e.BACKSLASH_ESCAPE]},{begin:'"""',end:'"""',relevance:10},{begin:'[a-z]+"',end:'"',illegal:"\\n",contains:[e.BACKSLASH_ESCAPE,n]},{className:"string",begin:'[a-z]+"""',end:'"""',contains:[n],relevance:10}]},s={className:"type",begin:"\\b[A-Z][A-Za-z0-9_]*",relevance:0},t={className:"title",begin:/[^0-9\n\t "'(),.`{}\[\]:;][^\n\t "'(),.`{}\[\]:;]+|[^0-9\n\t "'(),.`{}\[\]:;=]/,relevance:0},i={className:"class",beginKeywords:"class object trait type",end:/[:={\[\n;]/,excludeEnd:!0,contains:[{beginKeywords:"extends with",relevance:10},{begin:/\[/,end:/\]/,excludeBegin:!0,excludeEnd:!0,relevance:0,contains:[s]},{className:"params",begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,relevance:0,contains:[s]},t]},l={className:"function",beginKeywords:"def",end:/[:={\[(\n;]/,excludeEnd:!0,contains:[t]};return{name:"Scala",keywords:{literal:"true false null",keyword:"type yield lazy override def with val var sealed abstract private trait object if forSome for while throw finally protected extends import final return else break new catch super class case package default try this match continue throws implicit"},contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,a,{className:"symbol",begin:"'\\w[\\w\\d_]*(?!')"},s,l,i,e.C_NUMBER_MODE,{className:"meta",begin:"@[A-Za-z]+"}]}}}()); +hljs.registerLanguage("x86asm",function(){"use strict";return function(s){return{name:"Intel x86 Assembly",case_insensitive:!0,keywords:{$pattern:"[.%]?"+s.IDENT_RE,keyword:"lock rep repe repz repne repnz xaquire xrelease bnd nobnd aaa aad aam aas adc add and arpl bb0_reset bb1_reset bound bsf bsr bswap bt btc btr bts call cbw cdq cdqe clc cld cli clts cmc cmp cmpsb cmpsd cmpsq cmpsw cmpxchg cmpxchg486 cmpxchg8b cmpxchg16b cpuid cpu_read cpu_write cqo cwd cwde daa das dec div dmint emms enter equ f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp femms feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisttp fisub fisubr fld fld1 fldcw fldenv fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnstcw fnstenv fnstsw fpatan fprem fprem1 fptan frndint frstor fsave fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomi fucomip fucomp fucompp fxam fxch fxtract fyl2x fyl2xp1 hlt ibts icebp idiv imul in inc incbin insb insd insw int int01 int1 int03 int3 into invd invpcid invlpg invlpga iret iretd iretq iretw jcxz jecxz jrcxz jmp jmpe lahf lar lds lea leave les lfence lfs lgdt lgs lidt lldt lmsw loadall loadall286 lodsb lodsd lodsq lodsw loop loope loopne loopnz loopz lsl lss ltr mfence monitor mov movd movq movsb movsd movsq movsw movsx movsxd movzx mul mwait neg nop not or out outsb outsd outsw packssdw packsswb packuswb paddb paddd paddsb paddsiw paddsw paddusb paddusw paddw pand pandn pause paveb pavgusb pcmpeqb pcmpeqd pcmpeqw pcmpgtb pcmpgtd pcmpgtw pdistib pf2id pfacc pfadd pfcmpeq pfcmpge pfcmpgt pfmax pfmin pfmul pfrcp pfrcpit1 pfrcpit2 pfrsqit1 pfrsqrt pfsub pfsubr pi2fd pmachriw pmaddwd pmagw pmulhriw pmulhrwa pmulhrwc pmulhw pmullw pmvgezb pmvlzb pmvnzb pmvzb pop popa popad popaw popf popfd popfq popfw por prefetch prefetchw pslld psllq psllw psrad psraw psrld psrlq psrlw psubb psubd psubsb psubsiw psubsw psubusb psubusw psubw punpckhbw punpckhdq punpckhwd punpcklbw punpckldq punpcklwd push pusha pushad pushaw pushf pushfd pushfq pushfw pxor rcl rcr rdshr rdmsr rdpmc rdtsc rdtscp ret retf retn rol ror rdm rsdc rsldt rsm rsts sahf sal salc sar sbb scasb scasd scasq scasw sfence sgdt shl shld shr shrd sidt sldt skinit smi smint smintold smsw stc std sti stosb stosd stosq stosw str sub svdc svldt svts swapgs syscall sysenter sysexit sysret test ud0 ud1 ud2b ud2 ud2a umov verr verw fwait wbinvd wrshr wrmsr xadd xbts xchg xlatb xlat xor cmove cmovz cmovne cmovnz cmova cmovnbe cmovae cmovnb cmovb cmovnae cmovbe cmovna cmovg cmovnle cmovge cmovnl cmovl cmovnge cmovle cmovng cmovc cmovnc cmovo cmovno cmovs cmovns cmovp cmovpe cmovnp cmovpo je jz jne jnz ja jnbe jae jnb jb jnae jbe jna jg jnle jge jnl jl jnge jle jng jc jnc jo jno js jns jpo jnp jpe jp sete setz setne setnz seta setnbe setae setnb setnc setb setnae setcset setbe setna setg setnle setge setnl setl setnge setle setng sets setns seto setno setpe setp setpo setnp addps addss andnps andps cmpeqps cmpeqss cmpleps cmpless cmpltps cmpltss cmpneqps cmpneqss cmpnleps cmpnless cmpnltps cmpnltss cmpordps cmpordss cmpunordps cmpunordss cmpps cmpss comiss cvtpi2ps cvtps2pi cvtsi2ss cvtss2si cvttps2pi cvttss2si divps divss ldmxcsr maxps maxss minps minss movaps movhps movlhps movlps movhlps movmskps movntps movss movups mulps mulss orps rcpps rcpss rsqrtps rsqrtss shufps sqrtps sqrtss stmxcsr subps subss ucomiss unpckhps unpcklps xorps fxrstor fxrstor64 fxsave fxsave64 xgetbv xsetbv xsave xsave64 xsaveopt xsaveopt64 xrstor xrstor64 prefetchnta prefetcht0 prefetcht1 prefetcht2 maskmovq movntq pavgb pavgw pextrw pinsrw pmaxsw pmaxub pminsw pminub pmovmskb pmulhuw psadbw pshufw pf2iw pfnacc pfpnacc pi2fw pswapd maskmovdqu clflush movntdq movnti movntpd movdqa movdqu movdq2q movq2dq paddq pmuludq pshufd pshufhw pshuflw pslldq psrldq psubq punpckhqdq punpcklqdq addpd addsd andnpd andpd cmpeqpd cmpeqsd cmplepd cmplesd cmpltpd cmpltsd cmpneqpd cmpneqsd cmpnlepd cmpnlesd cmpnltpd cmpnltsd cmpordpd cmpordsd cmpunordpd cmpunordsd cmppd comisd cvtdq2pd cvtdq2ps cvtpd2dq cvtpd2pi cvtpd2ps cvtpi2pd cvtps2dq cvtps2pd cvtsd2si cvtsd2ss cvtsi2sd cvtss2sd cvttpd2pi cvttpd2dq cvttps2dq cvttsd2si divpd divsd maxpd maxsd minpd minsd movapd movhpd movlpd movmskpd movupd mulpd mulsd orpd shufpd sqrtpd sqrtsd subpd subsd ucomisd unpckhpd unpcklpd xorpd addsubpd addsubps haddpd haddps hsubpd hsubps lddqu movddup movshdup movsldup clgi stgi vmcall vmclear vmfunc vmlaunch vmload vmmcall vmptrld vmptrst vmread vmresume vmrun vmsave vmwrite vmxoff vmxon invept invvpid pabsb pabsw pabsd palignr phaddw phaddd phaddsw phsubw phsubd phsubsw pmaddubsw pmulhrsw pshufb psignb psignw psignd extrq insertq movntsd movntss lzcnt blendpd blendps blendvpd blendvps dppd dpps extractps insertps movntdqa mpsadbw packusdw pblendvb pblendw pcmpeqq pextrb pextrd pextrq phminposuw pinsrb pinsrd pinsrq pmaxsb pmaxsd pmaxud pmaxuw pminsb pminsd pminud pminuw pmovsxbw pmovsxbd pmovsxbq pmovsxwd pmovsxwq pmovsxdq pmovzxbw pmovzxbd pmovzxbq pmovzxwd pmovzxwq pmovzxdq pmuldq pmulld ptest roundpd roundps roundsd roundss crc32 pcmpestri pcmpestrm pcmpistri pcmpistrm pcmpgtq popcnt getsec pfrcpv pfrsqrtv movbe aesenc aesenclast aesdec aesdeclast aesimc aeskeygenassist vaesenc vaesenclast vaesdec vaesdeclast vaesimc vaeskeygenassist vaddpd vaddps vaddsd vaddss vaddsubpd vaddsubps vandpd vandps vandnpd vandnps vblendpd vblendps vblendvpd vblendvps vbroadcastss vbroadcastsd vbroadcastf128 vcmpeq_ospd vcmpeqpd vcmplt_ospd vcmpltpd vcmple_ospd vcmplepd vcmpunord_qpd vcmpunordpd vcmpneq_uqpd vcmpneqpd vcmpnlt_uspd vcmpnltpd vcmpnle_uspd vcmpnlepd vcmpord_qpd vcmpordpd vcmpeq_uqpd vcmpnge_uspd vcmpngepd vcmpngt_uspd vcmpngtpd vcmpfalse_oqpd vcmpfalsepd vcmpneq_oqpd vcmpge_ospd vcmpgepd vcmpgt_ospd vcmpgtpd vcmptrue_uqpd vcmptruepd vcmplt_oqpd vcmple_oqpd vcmpunord_spd vcmpneq_uspd vcmpnlt_uqpd vcmpnle_uqpd vcmpord_spd vcmpeq_uspd vcmpnge_uqpd vcmpngt_uqpd vcmpfalse_ospd vcmpneq_ospd vcmpge_oqpd vcmpgt_oqpd vcmptrue_uspd vcmppd vcmpeq_osps vcmpeqps vcmplt_osps vcmpltps vcmple_osps vcmpleps vcmpunord_qps vcmpunordps vcmpneq_uqps vcmpneqps vcmpnlt_usps vcmpnltps vcmpnle_usps vcmpnleps vcmpord_qps vcmpordps vcmpeq_uqps vcmpnge_usps vcmpngeps vcmpngt_usps vcmpngtps vcmpfalse_oqps vcmpfalseps vcmpneq_oqps vcmpge_osps vcmpgeps vcmpgt_osps vcmpgtps vcmptrue_uqps vcmptrueps vcmplt_oqps vcmple_oqps vcmpunord_sps vcmpneq_usps vcmpnlt_uqps vcmpnle_uqps vcmpord_sps vcmpeq_usps vcmpnge_uqps vcmpngt_uqps vcmpfalse_osps vcmpneq_osps vcmpge_oqps vcmpgt_oqps vcmptrue_usps vcmpps vcmpeq_ossd vcmpeqsd vcmplt_ossd vcmpltsd vcmple_ossd vcmplesd vcmpunord_qsd vcmpunordsd vcmpneq_uqsd vcmpneqsd vcmpnlt_ussd vcmpnltsd vcmpnle_ussd vcmpnlesd vcmpord_qsd vcmpordsd vcmpeq_uqsd vcmpnge_ussd vcmpngesd vcmpngt_ussd vcmpngtsd vcmpfalse_oqsd vcmpfalsesd vcmpneq_oqsd vcmpge_ossd vcmpgesd vcmpgt_ossd vcmpgtsd vcmptrue_uqsd vcmptruesd vcmplt_oqsd vcmple_oqsd vcmpunord_ssd vcmpneq_ussd vcmpnlt_uqsd vcmpnle_uqsd vcmpord_ssd vcmpeq_ussd vcmpnge_uqsd vcmpngt_uqsd vcmpfalse_ossd vcmpneq_ossd vcmpge_oqsd vcmpgt_oqsd vcmptrue_ussd vcmpsd vcmpeq_osss vcmpeqss vcmplt_osss vcmpltss vcmple_osss vcmpless vcmpunord_qss vcmpunordss vcmpneq_uqss vcmpneqss vcmpnlt_usss vcmpnltss vcmpnle_usss vcmpnless vcmpord_qss vcmpordss vcmpeq_uqss vcmpnge_usss vcmpngess vcmpngt_usss vcmpngtss vcmpfalse_oqss vcmpfalsess vcmpneq_oqss vcmpge_osss vcmpgess vcmpgt_osss vcmpgtss vcmptrue_uqss vcmptruess vcmplt_oqss vcmple_oqss vcmpunord_sss vcmpneq_usss vcmpnlt_uqss vcmpnle_uqss vcmpord_sss vcmpeq_usss vcmpnge_uqss vcmpngt_uqss vcmpfalse_osss vcmpneq_osss vcmpge_oqss vcmpgt_oqss vcmptrue_usss vcmpss vcomisd vcomiss vcvtdq2pd vcvtdq2ps vcvtpd2dq vcvtpd2ps vcvtps2dq vcvtps2pd vcvtsd2si vcvtsd2ss vcvtsi2sd vcvtsi2ss vcvtss2sd vcvtss2si vcvttpd2dq vcvttps2dq vcvttsd2si vcvttss2si vdivpd vdivps vdivsd vdivss vdppd vdpps vextractf128 vextractps vhaddpd vhaddps vhsubpd vhsubps vinsertf128 vinsertps vlddqu vldqqu vldmxcsr vmaskmovdqu vmaskmovps vmaskmovpd vmaxpd vmaxps vmaxsd vmaxss vminpd vminps vminsd vminss vmovapd vmovaps vmovd vmovq vmovddup vmovdqa vmovqqa vmovdqu vmovqqu vmovhlps vmovhpd vmovhps vmovlhps vmovlpd vmovlps vmovmskpd vmovmskps vmovntdq vmovntqq vmovntdqa vmovntpd vmovntps vmovsd vmovshdup vmovsldup vmovss vmovupd vmovups vmpsadbw vmulpd vmulps vmulsd vmulss vorpd vorps vpabsb vpabsw vpabsd vpacksswb vpackssdw vpackuswb vpackusdw vpaddb vpaddw vpaddd vpaddq vpaddsb vpaddsw vpaddusb vpaddusw vpalignr vpand vpandn vpavgb vpavgw vpblendvb vpblendw vpcmpestri vpcmpestrm vpcmpistri vpcmpistrm vpcmpeqb vpcmpeqw vpcmpeqd vpcmpeqq vpcmpgtb vpcmpgtw vpcmpgtd vpcmpgtq vpermilpd vpermilps vperm2f128 vpextrb vpextrw vpextrd vpextrq vphaddw vphaddd vphaddsw vphminposuw vphsubw vphsubd vphsubsw vpinsrb vpinsrw vpinsrd vpinsrq vpmaddwd vpmaddubsw vpmaxsb vpmaxsw vpmaxsd vpmaxub vpmaxuw vpmaxud vpminsb vpminsw vpminsd vpminub vpminuw vpminud vpmovmskb vpmovsxbw vpmovsxbd vpmovsxbq vpmovsxwd vpmovsxwq vpmovsxdq vpmovzxbw vpmovzxbd vpmovzxbq vpmovzxwd vpmovzxwq vpmovzxdq vpmulhuw vpmulhrsw vpmulhw vpmullw vpmulld vpmuludq vpmuldq vpor vpsadbw vpshufb vpshufd vpshufhw vpshuflw vpsignb vpsignw vpsignd vpslldq vpsrldq vpsllw vpslld vpsllq vpsraw vpsrad vpsrlw vpsrld vpsrlq vptest vpsubb vpsubw vpsubd vpsubq vpsubsb vpsubsw vpsubusb vpsubusw vpunpckhbw vpunpckhwd vpunpckhdq vpunpckhqdq vpunpcklbw vpunpcklwd vpunpckldq vpunpcklqdq vpxor vrcpps vrcpss vrsqrtps vrsqrtss vroundpd vroundps vroundsd vroundss vshufpd vshufps vsqrtpd vsqrtps vsqrtsd vsqrtss vstmxcsr vsubpd vsubps vsubsd vsubss vtestps vtestpd vucomisd vucomiss vunpckhpd vunpckhps vunpcklpd vunpcklps vxorpd vxorps vzeroall vzeroupper pclmullqlqdq pclmulhqlqdq pclmullqhqdq pclmulhqhqdq pclmulqdq vpclmullqlqdq vpclmulhqlqdq vpclmullqhqdq vpclmulhqhqdq vpclmulqdq vfmadd132ps vfmadd132pd vfmadd312ps vfmadd312pd vfmadd213ps vfmadd213pd vfmadd123ps vfmadd123pd vfmadd231ps vfmadd231pd vfmadd321ps vfmadd321pd vfmaddsub132ps vfmaddsub132pd vfmaddsub312ps vfmaddsub312pd vfmaddsub213ps vfmaddsub213pd vfmaddsub123ps vfmaddsub123pd vfmaddsub231ps vfmaddsub231pd vfmaddsub321ps vfmaddsub321pd vfmsub132ps vfmsub132pd vfmsub312ps vfmsub312pd vfmsub213ps vfmsub213pd vfmsub123ps vfmsub123pd vfmsub231ps vfmsub231pd vfmsub321ps vfmsub321pd vfmsubadd132ps vfmsubadd132pd vfmsubadd312ps vfmsubadd312pd vfmsubadd213ps vfmsubadd213pd vfmsubadd123ps vfmsubadd123pd vfmsubadd231ps vfmsubadd231pd vfmsubadd321ps vfmsubadd321pd vfnmadd132ps vfnmadd132pd vfnmadd312ps vfnmadd312pd vfnmadd213ps vfnmadd213pd vfnmadd123ps vfnmadd123pd vfnmadd231ps vfnmadd231pd vfnmadd321ps vfnmadd321pd vfnmsub132ps vfnmsub132pd vfnmsub312ps vfnmsub312pd vfnmsub213ps vfnmsub213pd vfnmsub123ps vfnmsub123pd vfnmsub231ps vfnmsub231pd vfnmsub321ps vfnmsub321pd vfmadd132ss vfmadd132sd vfmadd312ss vfmadd312sd vfmadd213ss vfmadd213sd vfmadd123ss vfmadd123sd vfmadd231ss vfmadd231sd vfmadd321ss vfmadd321sd vfmsub132ss vfmsub132sd vfmsub312ss vfmsub312sd vfmsub213ss vfmsub213sd vfmsub123ss vfmsub123sd vfmsub231ss vfmsub231sd vfmsub321ss vfmsub321sd vfnmadd132ss vfnmadd132sd vfnmadd312ss vfnmadd312sd vfnmadd213ss vfnmadd213sd vfnmadd123ss vfnmadd123sd vfnmadd231ss vfnmadd231sd vfnmadd321ss vfnmadd321sd vfnmsub132ss vfnmsub132sd vfnmsub312ss vfnmsub312sd vfnmsub213ss vfnmsub213sd vfnmsub123ss vfnmsub123sd vfnmsub231ss vfnmsub231sd vfnmsub321ss vfnmsub321sd rdfsbase rdgsbase rdrand wrfsbase wrgsbase vcvtph2ps vcvtps2ph adcx adox rdseed clac stac xstore xcryptecb xcryptcbc xcryptctr xcryptcfb xcryptofb montmul xsha1 xsha256 llwpcb slwpcb lwpval lwpins vfmaddpd vfmaddps vfmaddsd vfmaddss vfmaddsubpd vfmaddsubps vfmsubaddpd vfmsubaddps vfmsubpd vfmsubps vfmsubsd vfmsubss vfnmaddpd vfnmaddps vfnmaddsd vfnmaddss vfnmsubpd vfnmsubps vfnmsubsd vfnmsubss vfrczpd vfrczps vfrczsd vfrczss vpcmov vpcomb vpcomd vpcomq vpcomub vpcomud vpcomuq vpcomuw vpcomw vphaddbd vphaddbq vphaddbw vphadddq vphaddubd vphaddubq vphaddubw vphaddudq vphadduwd vphadduwq vphaddwd vphaddwq vphsubbw vphsubdq vphsubwd vpmacsdd vpmacsdqh vpmacsdql vpmacssdd vpmacssdqh vpmacssdql vpmacsswd vpmacssww vpmacswd vpmacsww vpmadcsswd vpmadcswd vpperm vprotb vprotd vprotq vprotw vpshab vpshad vpshaq vpshaw vpshlb vpshld vpshlq vpshlw vbroadcasti128 vpblendd vpbroadcastb vpbroadcastw vpbroadcastd vpbroadcastq vpermd vpermpd vpermps vpermq vperm2i128 vextracti128 vinserti128 vpmaskmovd vpmaskmovq vpsllvd vpsllvq vpsravd vpsrlvd vpsrlvq vgatherdpd vgatherqpd vgatherdps vgatherqps vpgatherdd vpgatherqd vpgatherdq vpgatherqq xabort xbegin xend xtest andn bextr blci blcic blsi blsic blcfill blsfill blcmsk blsmsk blsr blcs bzhi mulx pdep pext rorx sarx shlx shrx tzcnt tzmsk t1mskc valignd valignq vblendmpd vblendmps vbroadcastf32x4 vbroadcastf64x4 vbroadcasti32x4 vbroadcasti64x4 vcompresspd vcompressps vcvtpd2udq vcvtps2udq vcvtsd2usi vcvtss2usi vcvttpd2udq vcvttps2udq vcvttsd2usi vcvttss2usi vcvtudq2pd vcvtudq2ps vcvtusi2sd vcvtusi2ss vexpandpd vexpandps vextractf32x4 vextractf64x4 vextracti32x4 vextracti64x4 vfixupimmpd vfixupimmps vfixupimmsd vfixupimmss vgetexppd vgetexpps vgetexpsd vgetexpss vgetmantpd vgetmantps vgetmantsd vgetmantss vinsertf32x4 vinsertf64x4 vinserti32x4 vinserti64x4 vmovdqa32 vmovdqa64 vmovdqu32 vmovdqu64 vpabsq vpandd vpandnd vpandnq vpandq vpblendmd vpblendmq vpcmpltd vpcmpled vpcmpneqd vpcmpnltd vpcmpnled vpcmpd vpcmpltq vpcmpleq vpcmpneqq vpcmpnltq vpcmpnleq vpcmpq vpcmpequd vpcmpltud vpcmpleud vpcmpnequd vpcmpnltud vpcmpnleud vpcmpud vpcmpequq vpcmpltuq vpcmpleuq vpcmpnequq vpcmpnltuq vpcmpnleuq vpcmpuq vpcompressd vpcompressq vpermi2d vpermi2pd vpermi2ps vpermi2q vpermt2d vpermt2pd vpermt2ps vpermt2q vpexpandd vpexpandq vpmaxsq vpmaxuq vpminsq vpminuq vpmovdb vpmovdw vpmovqb vpmovqd vpmovqw vpmovsdb vpmovsdw vpmovsqb vpmovsqd vpmovsqw vpmovusdb vpmovusdw vpmovusqb vpmovusqd vpmovusqw vpord vporq vprold vprolq vprolvd vprolvq vprord vprorq vprorvd vprorvq vpscatterdd vpscatterdq vpscatterqd vpscatterqq vpsraq vpsravq vpternlogd vpternlogq vptestmd vptestmq vptestnmd vptestnmq vpxord vpxorq vrcp14pd vrcp14ps vrcp14sd vrcp14ss vrndscalepd vrndscaleps vrndscalesd vrndscaless vrsqrt14pd vrsqrt14ps vrsqrt14sd vrsqrt14ss vscalefpd vscalefps vscalefsd vscalefss vscatterdpd vscatterdps vscatterqpd vscatterqps vshuff32x4 vshuff64x2 vshufi32x4 vshufi64x2 kandnw kandw kmovw knotw kortestw korw kshiftlw kshiftrw kunpckbw kxnorw kxorw vpbroadcastmb2q vpbroadcastmw2d vpconflictd vpconflictq vplzcntd vplzcntq vexp2pd vexp2ps vrcp28pd vrcp28ps vrcp28sd vrcp28ss vrsqrt28pd vrsqrt28ps vrsqrt28sd vrsqrt28ss vgatherpf0dpd vgatherpf0dps vgatherpf0qpd vgatherpf0qps vgatherpf1dpd vgatherpf1dps vgatherpf1qpd vgatherpf1qps vscatterpf0dpd vscatterpf0dps vscatterpf0qpd vscatterpf0qps vscatterpf1dpd vscatterpf1dps vscatterpf1qpd vscatterpf1qps prefetchwt1 bndmk bndcl bndcu bndcn bndmov bndldx bndstx sha1rnds4 sha1nexte sha1msg1 sha1msg2 sha256rnds2 sha256msg1 sha256msg2 hint_nop0 hint_nop1 hint_nop2 hint_nop3 hint_nop4 hint_nop5 hint_nop6 hint_nop7 hint_nop8 hint_nop9 hint_nop10 hint_nop11 hint_nop12 hint_nop13 hint_nop14 hint_nop15 hint_nop16 hint_nop17 hint_nop18 hint_nop19 hint_nop20 hint_nop21 hint_nop22 hint_nop23 hint_nop24 hint_nop25 hint_nop26 hint_nop27 hint_nop28 hint_nop29 hint_nop30 hint_nop31 hint_nop32 hint_nop33 hint_nop34 hint_nop35 hint_nop36 hint_nop37 hint_nop38 hint_nop39 hint_nop40 hint_nop41 hint_nop42 hint_nop43 hint_nop44 hint_nop45 hint_nop46 hint_nop47 hint_nop48 hint_nop49 hint_nop50 hint_nop51 hint_nop52 hint_nop53 hint_nop54 hint_nop55 hint_nop56 hint_nop57 hint_nop58 hint_nop59 hint_nop60 hint_nop61 hint_nop62 hint_nop63",built_in:"ip eip rip al ah bl bh cl ch dl dh sil dil bpl spl r8b r9b r10b r11b r12b r13b r14b r15b ax bx cx dx si di bp sp r8w r9w r10w r11w r12w r13w r14w r15w eax ebx ecx edx esi edi ebp esp eip r8d r9d r10d r11d r12d r13d r14d r15d rax rbx rcx rdx rsi rdi rbp rsp r8 r9 r10 r11 r12 r13 r14 r15 cs ds es fs gs ss st st0 st1 st2 st3 st4 st5 st6 st7 mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7 xmm8 xmm9 xmm10 xmm11 xmm12 xmm13 xmm14 xmm15 xmm16 xmm17 xmm18 xmm19 xmm20 xmm21 xmm22 xmm23 xmm24 xmm25 xmm26 xmm27 xmm28 xmm29 xmm30 xmm31 ymm0 ymm1 ymm2 ymm3 ymm4 ymm5 ymm6 ymm7 ymm8 ymm9 ymm10 ymm11 ymm12 ymm13 ymm14 ymm15 ymm16 ymm17 ymm18 ymm19 ymm20 ymm21 ymm22 ymm23 ymm24 ymm25 ymm26 ymm27 ymm28 ymm29 ymm30 ymm31 zmm0 zmm1 zmm2 zmm3 zmm4 zmm5 zmm6 zmm7 zmm8 zmm9 zmm10 zmm11 zmm12 zmm13 zmm14 zmm15 zmm16 zmm17 zmm18 zmm19 zmm20 zmm21 zmm22 zmm23 zmm24 zmm25 zmm26 zmm27 zmm28 zmm29 zmm30 zmm31 k0 k1 k2 k3 k4 k5 k6 k7 bnd0 bnd1 bnd2 bnd3 cr0 cr1 cr2 cr3 cr4 cr8 dr0 dr1 dr2 dr3 dr8 tr3 tr4 tr5 tr6 tr7 r0 r1 r2 r3 r4 r5 r6 r7 r0b r1b r2b r3b r4b r5b r6b r7b r0w r1w r2w r3w r4w r5w r6w r7w r0d r1d r2d r3d r4d r5d r6d r7d r0h r1h r2h r3h r0l r1l r2l r3l r4l r5l r6l r7l r8l r9l r10l r11l r12l r13l r14l r15l db dw dd dq dt ddq do dy dz resb resw resd resq rest resdq reso resy resz incbin equ times byte word dword qword nosplit rel abs seg wrt strict near far a32 ptr",meta:"%define %xdefine %+ %undef %defstr %deftok %assign %strcat %strlen %substr %rotate %elif %else %endif %if %ifmacro %ifctx %ifidn %ifidni %ifid %ifnum %ifstr %iftoken %ifempty %ifenv %error %warning %fatal %rep %endrep %include %push %pop %repl %pathsearch %depend %use %arg %stacksize %local %line %comment %endcomment .nolist __FILE__ __LINE__ __SECT__ __BITS__ __OUTPUT_FORMAT__ __DATE__ __TIME__ __DATE_NUM__ __TIME_NUM__ __UTC_DATE__ __UTC_TIME__ __UTC_DATE_NUM__ __UTC_TIME_NUM__ __PASS__ struc endstruc istruc at iend align alignb sectalign daz nodaz up down zero default option assume public bits use16 use32 use64 default section segment absolute extern global common cpu float __utf16__ __utf16le__ __utf16be__ __utf32__ __utf32le__ __utf32be__ __float8__ __float16__ __float32__ __float64__ __float80m__ __float80e__ __float128l__ __float128h__ __Infinity__ __QNaN__ __SNaN__ Inf NaN QNaN SNaN float8 float16 float32 float64 float80m float80e float128l float128h __FLOAT_DAZ__ __FLOAT_ROUND__ __FLOAT__"},contains:[s.COMMENT(";","$",{relevance:0}),{className:"number",variants:[{begin:"\\b(?:([0-9][0-9_]*)?\\.[0-9_]*(?:[eE][+-]?[0-9_]+)?|(0[Xx])?[0-9][0-9_]*\\.?[0-9_]*(?:[pP](?:[+-]?[0-9_]+)?)?)\\b",relevance:0},{begin:"\\$[0-9][0-9A-Fa-f]*",relevance:0},{begin:"\\b(?:[0-9A-Fa-f][0-9A-Fa-f_]*[Hh]|[0-9][0-9_]*[DdTt]?|[0-7][0-7_]*[QqOo]|[0-1][0-1_]*[BbYy])\\b"},{begin:"\\b(?:0[Xx][0-9A-Fa-f_]+|0[DdTt][0-9_]+|0[QqOo][0-7_]+|0[BbYy][0-1_]+)\\b"}]},s.QUOTE_STRING_MODE,{className:"string",variants:[{begin:"'",end:"[^\\\\]'"},{begin:"`",end:"[^\\\\]`"}],relevance:0},{className:"symbol",variants:[{begin:"^\\s*[A-Za-z._?][A-Za-z0-9_$#@~.?]*(:|\\s+label)"},{begin:"^\\s*%%[A-Za-z0-9_$#@~.?]*:"}],relevance:0},{className:"subst",begin:"%[0-9]+",relevance:0},{className:"subst",begin:"%!S+",relevance:0},{className:"meta",begin:/^\s*\.[\w_-]+/}]}}}()); \ No newline at end of file diff --git a/index.html b/index.html index 104b733..0bcc7b5 100644 --- a/index.html +++ b/index.html @@ -90,7 +90,9 @@ - + diff --git a/print.html b/print.html index 770b17a..fa06253 100644 --- a/print.html +++ b/print.html @@ -91,7 +91,9 @@ - + @@ -410,7 +412,10 @@

Tracing

Use the RSPACK_PROFILE environment variable for displaying trace information

RSPACK_PROFILE=TRACE=layer=logger rspack build
-RSPACK_PROFILE='TRACE=layer=logger&filter=rspack_core::compiler::compilation' rspack build # filter for an event
+# filter for an event
+RSPACK_PROFILE='TRACE=layer=logger&filter=rspack_core::compiler::compilation' rspack build
+# disable ansi color escape codes
+NO_COLOR=1 RSPACK_PROFILE=TRACE=layer=logger rspack build
 

oxc_resolver

oxc_resolver emits some tracing information for debugging purposes.

diff --git a/profiling/intro.html b/profiling/intro.html index aa0fa29..7186042 100644 --- a/profiling/intro.html +++ b/profiling/intro.html @@ -90,7 +90,9 @@ - + diff --git a/releasing/intro.html b/releasing/intro.html index aedbff3..ad27a5f 100644 --- a/releasing/intro.html +++ b/releasing/intro.html @@ -90,7 +90,9 @@ - + diff --git a/searchindex.js b/searchindex.js index 7445a28..c7d9e36 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Object.assign(window.search, {"doc_urls":["getting-started.html#getting-started","getting-started.html#asking-questions","getting-started.html#what-should-i-work-on","getting-started.html#good-first-issue","getting-started.html#tracking-issue","getting-started.html#other-ways-to-contribute","about-this-guide.html#about-this-guide","building/intro.html#how-to-build-and-run-the-compiler","building/intro.html#install-nodejs-dependencies","building/intro.html#building-rspack","building/prerequisites.html#prerequisites","building/prerequisites.html#setup-rust","building/prerequisites.html#setup-nodejs","building/prerequisites.html#install-nodejs","building/suggested.html#suggested-workflows","testing/intro.html#testing","testing/intro.html#rust-testing","testing/intro.html#node-testing","testing/intro.html#webpack-testing","testing/intro.html#rspack-testing","testing/intro.html#node-testing-suite-overview","testing/intro.html#testing","testing/intro.html#rust-testing","testing/intro.html#node-testing","testing/intro.html#webpack-testing","testing/intro.html#rspack-testing","testing/intro.html#node-testing-suite-overview","testing/e2e.html#e2e","testing/e2e.html#cases","testing/e2e.html#fixtures","testing/e2e.html#how-it-works","debugging/intro.html#debugging","debugging/intro.html#debugging-with-vscode","debugging/intro.html#tracing","debugging/intro.html#oxc_resolver","debugging/intro.html#rust-lldb","debugging/mix-debug.html#mixed-debugging-between-javascript-and-rust","debugging/mix-debug.html#prerequisites","debugging/mix-debug.html#configure-launchjson-in-vscode","debugging/mix-debug.html#debugging-attempt","profiling/intro.html#profiling","profiling/intro.html#tracing","profiling/intro.html#chrome","profiling/intro.html#terminal","profiling/intro.html#nodejs-profiling","profiling/intro.html#mac-xcode-instruments","releasing/intro.html#releasing","releasing/intro.html#latest-full-release","releasing/intro.html#nightly","releasing/intro.html#canary","contributing/intro.html#intro","contributing/intro.html#sending-a-pull-request","contributing/intro.html#format-of-pr-titles","contributing/repro.html#minimal-reproducible-example","contributing/team.html#about-the-team","contributing/managing-labels.html#managing-labels","contributing/managing-labels.html#c","contributing/managing-labels.html#contribution-welcome","contributing/managing-labels.html#g","contributing/managing-labels.html#good-first-issue","architecture/rspack/intro.html#rspack","architecture/rspack/intro.html#table-of-contents","architecture/rspack/loader.html#related-prs","architecture/rspack/loader.html#summary","architecture/rspack/loader.html#guide-level-explanation","architecture/rspack/loader.html#pitching-loader","architecture/rspack/loader.html#reference-level-explanation","architecture/rspack/loader.html#actor-of-loader-execution","architecture/rspack/loader.html#passing-options","architecture/rspack/loader.html#optimization-for-pitching","architecture/webpack/intro.html#webpack","architecture/webpack/intro.html#table-of-contents","architecture/webpack/loader.html#summary","architecture/webpack/loader.html#glossary","architecture/webpack/loader.html#request-related","architecture/webpack/loader.html#resource-related","architecture/webpack/loader.html#others-but-also-important-to-note","architecture/webpack/loader.html#guide-level-explanation","architecture/webpack/loader.html#loader-configuration","architecture/webpack/loader.html#examples","architecture/webpack/loader.html#vue1-to-n","architecture/webpack/loader.html#use-natively-supported-module-types","architecture/webpack/loader.html#svgr","architecture/webpack/loader.html#scheme-imports","architecture/webpack/loader.html#asset-transform-and-rename","architecture/webpack/loader.html#ast-reuse","architecture/webpack/loader.html#reference-level-explanation","architecture/webpack/loader.html#loader-composability","architecture/webpack/loader.html#performance-optimizations","architecture/webpack/loader.html#references","architecture/webpack/dependency.html#summary","architecture/webpack/dependency.html#glossary","architecture/webpack/dependency.html#high-level-presentations-of--dependencies","architecture/webpack/dependency.html#others","architecture/webpack/dependency.html#guide-level-explanation","architecture/webpack/dependency.html#dependency","architecture/webpack/dependency.html#contextdependency","architecture/webpack/dependency.html#reference-level-explanation","architecture/webpack/dependency.html#stakeholders-of--dependency","architecture/webpack/dependency.html#high-level","architecture/webpack/dependency.html#low-level","architecture/webpack/dependency.html#how--dependencies--affect-the-creation-of--module-graph-","architecture/webpack/dependency.html#duplicated-module-detection","architecture/webpack/dependency.html#module-resolution","architecture/webpack/dependency.html#module-dependency--in--modulegraph","architecture/webpack/dependency.html#resolving-a-module","architecture/webpack/dependency.html#different-types-of--module-dependencies","architecture/webpack/dependency.html#how--dependencies--affect-code-generation","architecture/webpack/dependency.html#presentational-dependency","architecture/webpack/dependency.html#template","architecture/webpack/dependency.html#runtime","architecture/webpack/dependency.html#hot-module-replacement","architecture/webpack/dependency.html#how--dependencies--affect-production-optimizations","architecture/webpack/dependency.html#constant-folding","architecture/webpack/dependency.html#tree-shaking--dce","architecture/webpack/dependency.html#things-related-to-persistent-cache","architecture/webpack/dependency.html#wrap-it-up","architecture/webpack/dependency.html#make","architecture/webpack/dependency.html#dependencies-after-make","architecture/webpack/dependency.html#seal","architecture/webpack/dependency.html#references","workflows/meetings.html#meetings","workflows/meetings.html#tuesday-meeting","workflows/meetings.html#thursday-meeting","workflows/releases.html#releases","workflows/releases.html#release-cycle","workflows/misc.html#misc","workflows/misc.html#need-documentation-label","appendix/learning-resources.html#appendix-a-learning-resources","appendix/learning-resources.html#rust","appendix/learning-resources.html#webpack","appendix/fun.html#appendix-z-fun-stuff","appendix/fun.html#motto","appendix/fun.html#team-building-game"],"index":{"documentStore":{"docInfo":{"0":{"body":22,"breadcrumbs":4,"title":2},"1":{"body":10,"breadcrumbs":4,"title":2},"10":{"body":0,"breadcrumbs":4,"title":1},"100":{"body":2,"breadcrumbs":4,"title":2},"101":{"body":0,"breadcrumbs":7,"title":5},"102":{"body":68,"breadcrumbs":5,"title":3},"103":{"body":67,"breadcrumbs":4,"title":2},"104":{"body":128,"breadcrumbs":5,"title":3},"105":{"body":27,"breadcrumbs":4,"title":2},"106":{"body":157,"breadcrumbs":6,"title":4},"107":{"body":0,"breadcrumbs":6,"title":4},"108":{"body":28,"breadcrumbs":4,"title":2},"109":{"body":453,"breadcrumbs":3,"title":1},"11":{"body":11,"breadcrumbs":5,"title":2},"110":{"body":144,"breadcrumbs":3,"title":1},"111":{"body":49,"breadcrumbs":5,"title":3},"112":{"body":0,"breadcrumbs":6,"title":4},"113":{"body":91,"breadcrumbs":4,"title":2},"114":{"body":92,"breadcrumbs":5,"title":3},"115":{"body":1,"breadcrumbs":6,"title":4},"116":{"body":36,"breadcrumbs":4,"title":2},"117":{"body":2,"breadcrumbs":3,"title":1},"118":{"body":2,"breadcrumbs":4,"title":2},"119":{"body":2,"breadcrumbs":3,"title":1},"12":{"body":0,"breadcrumbs":5,"title":2},"120":{"body":1,"breadcrumbs":3,"title":1},"121":{"body":0,"breadcrumbs":2,"title":1},"122":{"body":4,"breadcrumbs":3,"title":2},"123":{"body":5,"breadcrumbs":3,"title":2},"124":{"body":15,"breadcrumbs":2,"title":1},"125":{"body":19,"breadcrumbs":3,"title":2},"126":{"body":0,"breadcrumbs":2,"title":1},"127":{"body":21,"breadcrumbs":4,"title":3},"128":{"body":0,"breadcrumbs":6,"title":3},"129":{"body":0,"breadcrumbs":4,"title":1},"13":{"body":61,"breadcrumbs":5,"title":2},"130":{"body":0,"breadcrumbs":4,"title":1},"131":{"body":0,"breadcrumbs":8,"title":4},"132":{"body":6,"breadcrumbs":5,"title":1},"133":{"body":26,"breadcrumbs":7,"title":3},"14":{"body":0,"breadcrumbs":6,"title":2},"15":{"body":9,"breadcrumbs":2,"title":1},"16":{"body":19,"breadcrumbs":3,"title":2},"17":{"body":11,"breadcrumbs":3,"title":2},"18":{"body":92,"breadcrumbs":3,"title":2},"19":{"body":49,"breadcrumbs":3,"title":2},"2":{"body":0,"breadcrumbs":3,"title":1},"20":{"body":117,"breadcrumbs":5,"title":4},"21":{"body":9,"breadcrumbs":3,"title":1},"22":{"body":19,"breadcrumbs":4,"title":2},"23":{"body":11,"breadcrumbs":4,"title":2},"24":{"body":92,"breadcrumbs":4,"title":2},"25":{"body":49,"breadcrumbs":4,"title":2},"26":{"body":117,"breadcrumbs":6,"title":4},"27":{"body":10,"breadcrumbs":3,"title":1},"28":{"body":46,"breadcrumbs":3,"title":1},"29":{"body":133,"breadcrumbs":3,"title":1},"3":{"body":18,"breadcrumbs":5,"title":3},"30":{"body":40,"breadcrumbs":3,"title":1},"31":{"body":0,"breadcrumbs":2,"title":1},"32":{"body":41,"breadcrumbs":3,"title":2},"33":{"body":34,"breadcrumbs":2,"title":1},"34":{"body":9,"breadcrumbs":2,"title":1},"35":{"body":104,"breadcrumbs":3,"title":2},"36":{"body":9,"breadcrumbs":8,"title":5},"37":{"body":38,"breadcrumbs":4,"title":1},"38":{"body":117,"breadcrumbs":6,"title":3},"39":{"body":12,"breadcrumbs":5,"title":2},"4":{"body":17,"breadcrumbs":4,"title":2},"40":{"body":23,"breadcrumbs":2,"title":1},"41":{"body":44,"breadcrumbs":2,"title":1},"42":{"body":33,"breadcrumbs":2,"title":1},"43":{"body":22,"breadcrumbs":2,"title":1},"44":{"body":42,"breadcrumbs":3,"title":2},"45":{"body":137,"breadcrumbs":4,"title":3},"46":{"body":19,"breadcrumbs":2,"title":1},"47":{"body":48,"breadcrumbs":4,"title":3},"48":{"body":29,"breadcrumbs":2,"title":1},"49":{"body":30,"breadcrumbs":2,"title":1},"5":{"body":38,"breadcrumbs":4,"title":2},"50":{"body":8,"breadcrumbs":3,"title":1},"51":{"body":115,"breadcrumbs":5,"title":3},"52":{"body":25,"breadcrumbs":5,"title":3},"53":{"body":58,"breadcrumbs":6,"title":3},"54":{"body":18,"breadcrumbs":2,"title":1},"55":{"body":13,"breadcrumbs":4,"title":2},"56":{"body":0,"breadcrumbs":3,"title":1},"57":{"body":0,"breadcrumbs":4,"title":2},"58":{"body":0,"breadcrumbs":3,"title":1},"59":{"body":0,"breadcrumbs":5,"title":3},"6":{"body":13,"breadcrumbs":2,"title":1},"60":{"body":4,"breadcrumbs":2,"title":1},"61":{"body":1,"breadcrumbs":3,"title":2},"62":{"body":2,"breadcrumbs":4,"title":2},"63":{"body":74,"breadcrumbs":3,"title":1},"64":{"body":14,"breadcrumbs":5,"title":3},"65":{"body":40,"breadcrumbs":4,"title":2},"66":{"body":0,"breadcrumbs":5,"title":3},"67":{"body":98,"breadcrumbs":5,"title":3},"68":{"body":21,"breadcrumbs":4,"title":2},"69":{"body":61,"breadcrumbs":4,"title":2},"7":{"body":7,"breadcrumbs":5,"title":3},"70":{"body":3,"breadcrumbs":2,"title":1},"71":{"body":2,"breadcrumbs":3,"title":2},"72":{"body":23,"breadcrumbs":3,"title":1},"73":{"body":16,"breadcrumbs":3,"title":1},"74":{"body":47,"breadcrumbs":4,"title":2},"75":{"body":79,"breadcrumbs":4,"title":2},"76":{"body":64,"breadcrumbs":5,"title":3},"77":{"body":0,"breadcrumbs":5,"title":3},"78":{"body":117,"breadcrumbs":4,"title":2},"79":{"body":0,"breadcrumbs":3,"title":1},"8":{"body":24,"breadcrumbs":5,"title":3},"80":{"body":983,"breadcrumbs":4,"title":2},"81":{"body":113,"breadcrumbs":7,"title":5},"82":{"body":75,"breadcrumbs":3,"title":1},"83":{"body":25,"breadcrumbs":4,"title":2},"84":{"body":228,"breadcrumbs":5,"title":3},"85":{"body":80,"breadcrumbs":4,"title":2},"86":{"body":8,"breadcrumbs":5,"title":3},"87":{"body":466,"breadcrumbs":4,"title":2},"88":{"body":383,"breadcrumbs":4,"title":2},"89":{"body":32,"breadcrumbs":3,"title":1},"9":{"body":20,"breadcrumbs":4,"title":2},"90":{"body":22,"breadcrumbs":3,"title":1},"91":{"body":16,"breadcrumbs":3,"title":1},"92":{"body":57,"breadcrumbs":6,"title":4},"93":{"body":17,"breadcrumbs":3,"title":1},"94":{"body":0,"breadcrumbs":5,"title":3},"95":{"body":32,"breadcrumbs":3,"title":1},"96":{"body":57,"breadcrumbs":3,"title":1},"97":{"body":11,"breadcrumbs":5,"title":3},"98":{"body":0,"breadcrumbs":4,"title":2},"99":{"body":2,"breadcrumbs":4,"title":2}},"docs":{"0":{"body":"We are grateful for your interest in contributing to Rspack! Every single contribution counts and helps us take Rspack to the next level. Asking Questions What should I work on? Good First Issue Tracking Issue Other ways to contribute","breadcrumbs":"Getting started » Getting Started","id":"0","title":"Getting Started"},"1":{"body":"If you have any questions, please do not hesitate to ask in either the Discord support channel or on the Github discussion board .","breadcrumbs":"Getting started » Asking Questions","id":"1","title":"Asking Questions"},"10":{"body":"","breadcrumbs":"Building and running » Prerequisites » Prerequisites","id":"10","title":"Prerequisites"},"100":{"body":"image-20220919171841624","breadcrumbs":"webpack » dependency » Low-level","id":"100","title":"Low-level"},"101":{"body":"","breadcrumbs":"webpack » dependency » How dependencies affect the creation of module graph ?","id":"101","title":"How dependencies affect the creation of module graph ?"},"102":{"body":"Each module will have its own identifier, for NormalModule, you can find this in NormalModule#identifier. If the identifier will be duplicated if inserted in this._module, then webpack will directly skip the remaining build process. [source] Basically, an NormalModule identifier contains these parts: type [string]: The module type of a module. If the type of the module is javascript/auto, this field can be omitted request [string]: Request to the module. All loaders whether it's inline or matched by a config will be stringified. If inline match resource exists, inline loaders will be executed before any normal-loaders after pre-loaders. A module with a different loader passed through will be treated as a different module regardless of its path. layer: applied if provided","breadcrumbs":"webpack » dependency » Duplicated module detection","id":"102","title":"Duplicated module detection"},"103":{"body":"getResolve is a loader API on the LoaderContext. Loader developers can pass dependencyType to its option which indicates the category of the module dependency that will be created. Values like esm can be passed, then webpack will use type esm to resolve the dependency. The resolved dependencies are automatically added to the current module. This is driven by the internal plugin system of enhanced-resolve. Internally, enhanced-resolve uses plugins to handle the dependency registration like FileExistsPlugin [source] to detect whether a file is located on the file system or will add this file to a list of missingDependency and report in respect of the running mode of webpack. The collecting end of Webpack is generated by the getResolveContext in NormalModule [source]","breadcrumbs":"webpack » dependency » Module resolution","id":"103","title":"Module resolution"},"104":{"body":"Here's a module graph with esm import between modules: image-20220919172119861 The dependency type introduced by import or require is a derived dependency: ModuleDependency . A ModuleDependency contains three important fields. category: used to describe the category of dependency. e.g. \"esm\" | \"commonjs\" request: see the explanation above. userRequest: Resource and its inline loader syntax will be stringified and applied, but loaders in module.rules will be omitted. It's also good to note a field we will talk about later: assertions: assertions in import xx from \"foo.json\" assert { type: \"json\" } More fields can be found in abstract class of Dependency and ModuleDependency . source: Dependency source: ModuleDependency // null -> index.js EntryDependency { category: \"esm\", request: \"./index.js\", type: \"entry\", _parentModule: undefined\n} // index.js -> foo.js HarmonyImportSideEffectDependency { category: \"esm\", request: \"./foo\", type: \"harmony side effect evaluation\", _parentModule: NormalModule { identifier: \"index.js\" }\n} // index.js -> bar.js HarmonyImportSideEffectDependency { category: \"esm\", request: \"./bar\", type: \"harmony side effect evaluation\", _parentModule: NormalModule { identifier: \"index.js\" }\n} // bar.js -> foo.js\nHarmonyImportSideEffectDependency { category: \"esm\", request: \"./foo\", type: \"harmony side effect evaluation\", _parentModule: NormalModule { identifier: \"bar.js\" }\n}","breadcrumbs":"webpack » dependency » Module dependency in ModuleGraph","id":"104","title":"Module dependency in ModuleGraph"},"105":{"body":"ModuleDependencies with different dependency category such as esm or commonjs will affect the resolving part. For ECMAScript modules, they may prefer \"module\" to \"main\", and for CommonJS modules, they may use \"main\" in package.json. On top of that, conditional exports are also necessary to be taken into account. doc","breadcrumbs":"webpack » dependency » Resolving a module","id":"105","title":"Resolving a module"},"106":{"body":"ESM-related derived types There are a few of ModuleDependencies introduced in ESM imports. A full list of each derived type can be reached at [source] Import HarmonyImportDependency The basic type of harmony-related module dependencies are below. [source] HarmonyImportSideEffectDependency import { foo, bar } from \"./module\"\nimport * as module from \"./module\"\nimport foo from \"./module\"\nimport \"./module\" Every import statement will come with a HarmonyImportSideEffectDependency, no matter how the specifiers look like. The speicifier will be handled by HarmonyImportSpecifierDendency below. The field assertions will be stored if any import assertions exist for later consumption. The field category will be used as dependencyType to resolve modules. HarmonyImportSpecifierDependency import { foo, bar } from \"./module\"\nimport * as module from \"./module\"\nimport foo from \"./module\" Example: import { foo, bar } from \"./module\" console.log(foo, bar) Specifier will be mapped into a specifier dependency if and only if it is used. JavaScript parser will first tag each variable [source] , and then create corresponding dependencies on each reading of dependency. [source] and finally be replaced to the generated importVar. Export(They are not module dependencies to be actual, but I placed here for convenience) HarmonyExportHeaderDependency PresentationalDependency export const foo = \"foo\";\nexport default \"foo\"; This is a presentational dependency . We will take more time on this later. HarmonyExportSpecifierDependency export const foo = \"foo\"; // `foo` is a specifier HarmonyExportSpecifierDependency { id: string; name: string;\n} HarmonyExportExpressionDependency export default \"foo\"; // \"foo\" is an expression HarmonyExportExpressionDependency { range: [number, number] // range of the expression rangeStatement: [number, number] // range of the whole statement\n}","breadcrumbs":"webpack » dependency » Different types of module dependencies","id":"106","title":"Different types of module dependencies"},"107":{"body":"","breadcrumbs":"webpack » dependency » How dependencies affect code generation","id":"107","title":"How dependencies affect code generation"},"108":{"body":"A type of dependency that only affects code presentation. ConstDependency ConstDependency { expression: string range: [number, number] runtimeRequirements: Set | null\n} You can think of the passed expression as a replacement for the corresponding range. For the real world example, you can directly refer to Constant Folding .","breadcrumbs":"webpack » dependency » Presentational dependency","id":"108","title":"Presentational dependency"},"109":{"body":"Remember the fact that Webpack is an architecture wrapped around source code modifications. Template is the solution that helps Webpack to do the real patch on the source code. Each dependency has its associated template which affects a part of the code generation scoped per dependency. In other words, the effect of each template is strictly scoped to its associated dependency. image-20220919173300220 There are three types of modification: source fragments runtimeRequirements A boilerplate of the dependency template looks like this: class SomeDependency {} SomeDependency.Template = class SomeDependencyTemplate { /** * @param {Dependency} dependency the dependency for which the template should be applied * @param {ReplaceSource} source the current replace source which can be modified * @param {DependencyTemplateContext} templateContext the context object * @returns {void} */ apply(dependency, source, templateContext) { // do code mod here }\n} There are three parameters in the function signature: dependency: The associated dependency of this template source: The source code represent in ReplaceSource, which can be used to replace a snippet of code with a new one, given the start and end position templateContext: A context of template, which stores the corresponding module, InitFragments, moduleGraph, runtimeRequirements, etc. (not important in this section) Source Again, given an example of ConstDependency , even if you don't have an idea what it is, it doesn't matter. We will cover this in the later sections. The associated template modifies the code with Source(ReplaceSource to be more specific): ConstDependency.Template = class ConstDependencyTemplate extends ( NullDependency.Template\n) { apply(dependency, source, templateContext) { const dep = /** @type {ConstDependency} */ (dependency); // not necessary code is removed for clearer demonstration if (dep.runtimeRequirements) { for (const req of dep.runtimeRequirements) { templateContext.runtimeRequirements.add(req); } } source.replace(dep.range[0], dep.range[1] - 1, dep.expression); }\n}; runtimeRequirements As you can see from the Source section above, there is another modification we talked about: runtimeRequirements, It adds runtime requirements for the current compilation. We will explain more in the later sections. Fragments Essentially, a fragment is a pair of code snippet that to be wrapped around each module source. Note the wording \"wrap\", it could contain two parts content and endContent [source] . To make it more illustrative, see this: The order of the fragment comes from two parts: The stage of a fragment: if the stage of two fragments is different, then it will be replaced corresponding to the order define by the stage If two fragments share the same order, then it will be replaced in position order. [source] A real-world example import { foo } from \"./foo\" foo() Given the example above, here's the code to generate a dependency that replaces import statement with __webpack_require__. // some code is omitted for cleaner demonstration\nparser.hooks.import.tap( \"HarmonyImportDependencyParserPlugin\", (statement, source) => { const clearDep = new ConstDependency( \"\", statement.range ); clearDep.loc = statement.loc; parser.state.module.addPresentationalDependency(clearDep); const sideEffectDep = new HarmonyImportSideEffectDependency( source ); sideEffectDep.loc = statement.loc; parser.state.module.addDependency(sideEffectDep); return true; }\n); Webpack will create two dependencies ConstDependency and HarmonyImportSideEffectDependency while parsing [source] . Let me focus on HarmonyImportSideEffectDependency more, since it uses Fragment to do some patch. // some code is omitted for cleaner demonstration\nHarmonyImportSideEffectDependency.Template = class HarmonyImportSideEffectDependencyTemplate extends ( HarmonyImportDependency.Template\n) { apply(dependency, source, templateContext) { super.apply(dependency, source, templateContext); }\n}; As you can see in its associated template [source] , the modification to the code is made via its superclass HarmonyImportDependency.Template [source] . // some code is omitted for cleaner demonstration\nHarmonyImportDependency.Template = class HarmonyImportDependencyTemplate extends ( ModuleDependency.Template\n) { apply(dependency, source, templateContext) { const dep = /** @type {HarmonyImportDependency} */ (dependency); const { module, chunkGraph, moduleGraph, runtime } = templateContext; const referencedModule = connection && connection.module; const moduleKey = referencedModule ? referencedModule.identifier() : dep.request; const key = `harmony import ${moduleKey}`; // 1 const importStatement = dep.getImportStatement(false, templateContext); // 2 templateContext.initFragments.push( new ConditionalInitFragment( importStatement[0] + importStatement[1], InitFragment.STAGE_HARMONY_IMPORTS, dep.sourceOrder, key, // omitted for cleaner code ) ); }\n} As you can see from the simplified source code above, the actual patch made to the generated code is via templateContext.initFragments(2). The import statement generated from dependency looks like this. /* harmony import */ var _foo__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./foo */ \"./src/foo.js\"); //(1) Note, the real require statement is generated via initFragments , ConditionalInitFragment to be specific. Don't be afraid of the naming, for more information you can see the (background)[https://github.com/webpack/webpack/pull/11802] of this fragment , which let's webpack to change it from InitFragment to ConditionalInitFragment. How does webpack solve the compatibility issue? For ESM modules, webpack will additionally call a helper to define _esModule on exports as an hint: __webpack_require__.r(__webpack_exports__); The call of a helper is always placed ahead of any require statements. Probably you have already get this as the stage of STAGE_HARMONY_EXPORTS has high priority than STAGE_HARMONY_IMPORTS. Again, this is achieved via initFragments. The logic of the compatibility helper is defined in this file, you can check it out.","breadcrumbs":"webpack » dependency » Template","id":"109","title":"Template"},"11":{"body":"Install Rust using rustup . If you are using VSCode, we recommend installing the rust-analyzer extension.","breadcrumbs":"Building and running » Prerequisites » Setup Rust","id":"11","title":"Setup Rust"},"110":{"body":"Runtime generation is based on the previously collected runtimeRequirements in different dependency templates and is done after the code generation of each module. Note: it's not after the renderManifest, but it's after the code generation of each module. image-20220919173829765 In the first iteration of collection, Sets of runtimeRequirements are collected from the module's code generation results and added to each ChunkGraphModule. In the second iteration of collection, the collected runtimeRequirements are already stored in ChunkGraphModule, so Webpack again collects them from there and stores the runtimes required by each chunk of ChunkGraphChunk. It's kind of the hoisting procedure of the required runtimes. Finally, also known as the third iteration of collection, Webpack hoists runtimeRequirements from those chunks that are referenced by the entry chunk and get it hoisted on the ChunkGraphChunk using a different field named runtimeRequirementsInTree which indicates not only does it contains the runtime requirements by the chunk but also it's children runtime requirements. image-20220919174132772 The referenced source code you can be found it here and these steps are basically done in processRuntimeRequirements. This let me recall the linking procedure of a rollup-like bundler. Anyway, after this procedure, we can finally generate runtime modules . Actually, I lied here, huge thanks to the hook system of Webpack, the creation of runtime modules is done in this method via calls to runtimeRequirementInTree [source] . No doubt, this is all done in the seal step. After that, webpack will process each chunk and create a few code generation jobs, and finally, emit assets.","breadcrumbs":"webpack » dependency » Runtime","id":"110","title":"Runtime"},"111":{"body":"Changes made via hot module replacement is mostly come from HotModuleReplacementPlugin. Given the code below: if (module.hot) { module.hot.accept(...)\n} Webpack will replace expressions like module.hot and module.hot.accept, etc with ConstDependency as the presentationalDependency as I previously talked about. [source] With the help of a simple expression replacement is not enough, the plugin also introduce additional runtime modules for each entries. [source] The plugin is quite complicated, and you should definitely checkout what it actually does, but for things related to dependency, it's enough.","breadcrumbs":"webpack » dependency » Hot module replacement","id":"111","title":"Hot module replacement"},"112":{"body":"","breadcrumbs":"webpack » dependency » How dependencies affect production optimizations","id":"112","title":"How dependencies affect production optimizations"},"113":{"body":"The logic is defined in ConstPlugin : [source] Constant folding is a technique that used as an optimization for optimization. For example: Source if (process.env.NODE_ENV === \"development\") { ...\n} else { ...\n} Generated if (true) { ...\n} With mode set to \"development\", webpack will \"fold\" the expression process.env.NODE_ENV === \"development\" into an expression of \"true\" as you can see for the code generation result. In the make procedure of webpack, Webpack internally uses an JavaScriptParser for JavaScript parsing. If an ifStatement is encountered, Webpack creates a corresponding ConstDependency. Essentially, for the ifStatement, the ConstDependency looks like this : ConstDependency { expression: \"true\", range: [start, end] // range to replace\n} It's almost the same with else branch, if there is no side effects (refer to source code for more detail), Webpack will create another ConstDependency with expression set to \"\", which in the end removes the else branch. In the seal procedure of Webpack, the record of the dependency will be applied to the original source code and generate the final result as you may have already seen above.","breadcrumbs":"webpack » dependency » Constant folding","id":"113","title":"Constant folding"},"114":{"body":"Tree-shaking is a technique of a bundle-wise DCE(dead code elimination). In the following content, I will use tree-shaking as a wording for bundle-wise and DCE for module-wise code elimination. (I know it's not quite appropriate, but you get the point) Here's an example: // webpack configuration\nmodule.exports = { optimization: { usedExports: true }\n} image-20220919182656468 image-20220919190553215 image-20220919190925073 As you can see from the red square, the initFragment is generated based on the usage of the exported symbol in the HarmonyExportSpecifierDependency [source] If foo is used in the graph, then the generated result will be this: /* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"foo\": function() { return /* binding */ foo; }\n/* harmony export */ });\nconst foo = \"foo\"; In the example above, the foo is not used, so it will be excluded in the code generation of the template of HarmonyExportSpecifierDependency and it will be dead-code-eliminated in later steps. For terser plugin, it eliminates all unreachable code in processAssets [source] .","breadcrumbs":"webpack » dependency » Tree shaking & DCE","id":"114","title":"Tree shaking & DCE"},"115":{"body":"TODO","breadcrumbs":"webpack » dependency » Things related to Persistent cache","id":"115","title":"Things related to Persistent cache"},"116":{"body":"Let's wrap everything up in a simple example! Isn't it exciting? image-20220919223228146 Given a module graph that contains three modules, the entry point of this bundle is index.js. To not make this example too complicated, we use normal import statements to reference each module (i.e: only one chunk that bundles everything will be created).","breadcrumbs":"webpack » dependency » Wrap it up!","id":"116","title":"Wrap it up!"},"117":{"body":"image-20220919223558327","breadcrumbs":"webpack » dependency » Make","id":"117","title":"Make"},"118":{"body":"image-20220919223720739","breadcrumbs":"webpack » dependency » Dependencies after make","id":"118","title":"Dependencies after make"},"119":{"body":"image-20220920180915326","breadcrumbs":"webpack » dependency » seal","id":"119","title":"seal"},"12":{"body":"","breadcrumbs":"Building and running » Prerequisites » Setup Node.js","id":"12","title":"Setup Node.js"},"120":{"body":"TODO","breadcrumbs":"webpack » dependency » References","id":"120","title":"References"},"121":{"body":"","breadcrumbs":"Meetings » Meetings","id":"121","title":"Meetings"},"122":{"body":"Go through the iteration plan","breadcrumbs":"Meetings » Tuesday meeting","id":"122","title":"Tuesday meeting"},"123":{"body":"Go through any topics that need to be discussed","breadcrumbs":"Meetings » Thursday meeting","id":"123","title":"Thursday meeting"},"124":{"body":"0.1.0 -> 0.1.1 is a patch release. 0.1.0 -> 0.2.0 is a minor release. 0.1.0 -> 1.0.0 is a major release. See details at semver.org","breadcrumbs":"Releases » Releases","id":"124","title":"Releases"},"125":{"body":"Patch releases are released Tuesday per week. Minor releases are released as needed. Major releases are released as needed. See milestones to follow our release plan.","breadcrumbs":"Releases » Release Cycle","id":"125","title":"Release Cycle"},"126":{"body":"","breadcrumbs":"Misc » Misc","id":"126","title":"Misc"},"127":{"body":"This is used for reminding ourselves to update the Rspack website for a new feature. When a PR is merged with the \"need documentation\" label, rspack-bot will create a corresponding PR in the rspack-website repo.","breadcrumbs":"Misc » \"need documentation\" label","id":"127","title":"\"need documentation\" label"},"128":{"body":"","breadcrumbs":"Appendix A: Learning resources » Appendix A: Learning resources","id":"128","title":"Appendix A: Learning resources"},"129":{"body":"","breadcrumbs":"Appendix A: Learning resources » Rust","id":"129","title":"Rust"},"13":{"body":"We recommend using the LTS version of Node.js 16. You can check your currently used Node.js version with the following command: node -v\n#v16.18.0 If you do not have Node.js installed in your current environment, you can use nvm or fnm to install it. Here is an example of how to install the Node.js 16 LTS version via nvm: # Install the LTS version of Node.js 16\nnvm install 16 --lts # Make the newly installed Node.js 16 as the default version\nnvm alias default 16 # Switch to the newly installed Node.js 16\nnvm use 16","breadcrumbs":"Building and running » Prerequisites » Install Node.js","id":"13","title":"Install Node.js"},"130":{"body":"","breadcrumbs":"Appendix A: Learning resources » Webpack","id":"130","title":"Webpack"},"131":{"body":"","breadcrumbs":"Appendix Z: Fun stuff » Appendix Z: Fun stuff","id":"131","title":"Appendix Z: Fun stuff"},"132":{"body":"Question webpack, understand webpack, become webpack","breadcrumbs":"Appendix Z: Fun stuff » Motto","id":"132","title":"Motto"},"133":{"body":"Despite being located across different cities, the rspack team has found an enjoyable way to bond when we meet in person. We play a team building game where we ask each other webpack questions. @hardfist hasn't lost a single game yet.","breadcrumbs":"Appendix Z: Fun stuff » Team building game","id":"133","title":"Team building game"},"14":{"body":"","breadcrumbs":"Building and running » Suggested Workflows » Suggested Workflows","id":"14","title":"Suggested Workflows"},"15":{"body":"We currently have two sets of test suites, one for Rust and one for Node.js.","breadcrumbs":"Testing » Testing","id":"15","title":"Testing"},"16":{"body":"cargo test will run all the rust side tests, which includes standalone tests for core functionality and plugins. UPDATE=1 cargo test will automatically update the failed snapshot","breadcrumbs":"Testing » Rust Testing","id":"16","title":"Rust Testing"},"17":{"body":"We are maintaining two test suites for Node Testing in Rspack, Rspack Testing and Webpack Testing","breadcrumbs":"Testing » Node Testing","id":"17","title":"Node Testing"},"18":{"body":"We copy the whole webpack test suites into webpack-test folder to check the compatibility with webpack. If you add features or fix bugs we recommend you check whether this feature or bug is covered in webpack test suites first. If it's covered and testable in Webpack Testing, you can enable specific test case by setting return value to true in test.filter.js in this case folder to enable this case. See more details in https://github.com/web-infra-dev/rspack/blob/main/webpack-test/README.md, Please note that don't modify original test code in Webpack Testing, if you find difficulties in running test suites without modifying original code, you can copy this test code in the following [Rspack Testing](#Rspack Testing). Run Tests # In root path\n./x build -a # build binding and js part\n./x test webpack # run webpack test suites","breadcrumbs":"Testing » Webpack Testing","id":"18","title":"Webpack Testing"},"19":{"body":"We maintain test suites in Rspack Testing which is not coverable or need to be modified in Webpack Testing. The test suites lies in rspack-test . This folder structure is similar with Webpack Testing. Run Tests # In root path\n./x build -a\n./x test js Or only test the package that you made the changes: # In the Node.js package path\npnpm run build && pnpm run test To update snapshots: pnpm --filter '@rspack/*' test -- -u","breadcrumbs":"Testing » Rspack Testing","id":"19","title":"Rspack Testing"},"2":{"body":"","breadcrumbs":"Getting started » What should I work on?","id":"2","title":"What should I work on?"},"20":{"body":"We use jest for Node.js tests, The most important test cases are the case in the packages/rspack. most of these cases comes from webpack https://github.com/webpack/webpack/tree/main/test because we want to make sure that Rspack can work as same as webpack. There are three kinds of integration cases in @rspack/core. case.test.ts Cases are used to test normal build behavior, we use these cases to test against bundler core functionality, like entry, output, module resolve, etc. it will first build your test file to test whether the input could be compiled successfully, then it will use the bundled test file to run test cases in the test file to test bundler's all kinds of behavior. configCase.test.ts Cases are used to test custom build behavior, you could use custom webpack.config.js to override default build behavior, you can use these cases to test against behavior related to specific config. statsTestCase.test.ts Cases are used to test your stats, By Default we will use jest's snapshot to snapshot your stats, and we highly recommend to avoid snapshot except statsCase. you can use statsCase to test behaviors like code splitting | bundle splitting, which is hard to test by just running code.","breadcrumbs":"Testing » Node Testing Suite Overview","id":"20","title":"Node Testing Suite Overview"},"21":{"body":"We currently have two sets of test suites, one for Rust and one for Node.js.","breadcrumbs":"Testing » intro » Testing","id":"21","title":"Testing"},"22":{"body":"cargo test will run all the rust side tests, which includes standalone tests for core functionality and plugins. UPDATE=1 cargo test will automatically update the failed snapshot","breadcrumbs":"Testing » intro » Rust Testing","id":"22","title":"Rust Testing"},"23":{"body":"We are maintaining two test suites for Node Testing in Rspack, Rspack Testing and Webpack Testing","breadcrumbs":"Testing » intro » Node Testing","id":"23","title":"Node Testing"},"24":{"body":"We copy the whole webpack test suites into webpack-test folder to check the compatibility with webpack. If you add features or fix bugs we recommend you check whether this feature or bug is covered in webpack test suites first. If it's covered and testable in Webpack Testing, you can enable specific test case by setting return value to true in test.filter.js in this case folder to enable this case. See more details in https://github.com/web-infra-dev/rspack/blob/main/webpack-test/README.md, Please note that don't modify original test code in Webpack Testing, if you find difficulties in running test suites without modifying original code, you can copy this test code in the following [Rspack Testing](#Rspack Testing). Run Tests # In root path\n./x build -a # build binding and js part\n./x test webpack # run webpack test suites","breadcrumbs":"Testing » intro » Webpack Testing","id":"24","title":"Webpack Testing"},"25":{"body":"We maintain test suites in Rspack Testing which is not coverable or need to be modified in Webpack Testing. The test suites lies in rspack-test . This folder structure is similar with Webpack Testing. Run Tests # In root path\n./x build -a\n./x test js Or only test the package that you made the changes: # In the Node.js package path\npnpm run build && pnpm run test To update snapshots: pnpm --filter '@rspack/*' test -- -u","breadcrumbs":"Testing » intro » Rspack Testing","id":"25","title":"Rspack Testing"},"26":{"body":"We use jest for Node.js tests, The most important test cases are the case in the packages/rspack. most of these cases comes from webpack https://github.com/webpack/webpack/tree/main/test because we want to make sure that Rspack can work as same as webpack. There are three kinds of integration cases in @rspack/core. case.test.ts Cases are used to test normal build behavior, we use these cases to test against bundler core functionality, like entry, output, module resolve, etc. it will first build your test file to test whether the input could be compiled successfully, then it will use the bundled test file to run test cases in the test file to test bundler's all kinds of behavior. configCase.test.ts Cases are used to test custom build behavior, you could use custom webpack.config.js to override default build behavior, you can use these cases to test against behavior related to specific config. statsTestCase.test.ts Cases are used to test your stats, By Default we will use jest's snapshot to snapshot your stats, and we highly recommend to avoid snapshot except statsCase. you can use statsCase to test behaviors like code splitting | bundle splitting, which is hard to test by just running code.","breadcrumbs":"Testing » intro » Node Testing Suite Overview","id":"26","title":"Node Testing Suite Overview"},"27":{"body":"The packages/playground provides e2e testing feature. We use playwright as the e2e testing framework.","breadcrumbs":"Testing » E2E » E2E","id":"27","title":"E2E"},"28":{"body":"The entry point of a test case is a file ending with .test.ts, and the parent directory of this file is the project directory. Here are some rules about test cases: The project directory must contain rspack.config.js to start the dev server. The project directory can contain multi *.test.ts. All test cases share dependencies, so just add dependencies in packages/playground/package.json. The cases folder should contain the category folders and then is the project folders. In principle, there should be no third-level directory.","breadcrumbs":"Testing » E2E » Cases","id":"28","title":"Cases"},"29":{"body":"The fixtures is a feature of playwright, in short it provides a variable that is generated in before{Each|All} and destroyed in after{Each|All}. More information see test-fixtures Here are some rules when defining a new fixture: Private fixtures should start with _ and are used only in the current file. A file only provides fixtures with the same name. A file can only provide one option and starts with default Register fixtures in fixtures/index.ts and export only necessary variables and types. Here are some existing fixtures: pathInfo This fixture will generate test environment, and calculate the PathInfo. type PathInfo = { // test file path testFile: string; // project dir testProjectDir: string // temporary project directory to be copied into tempProjectDir: string\n} rspack This fixture will start the rspack dev server and provide some useful methods. type Rspack = { // rspack running project directory projectDir: string // rspack compiler compiler: Compiler // rspack dev server devServer: DevServer // waiting for rspack build finish waitingForBuild: () => Promise // waiting for hmr finish, the poll function is used to check waitingForHmr: (poll: () => Promise) => Promise\n} fileAction This fixture will provide file change operations. type fileAction = { updateFile(relativePath: string, fn: (content: string) => string): void deleteFile(relativePath: string): void\n}","breadcrumbs":"Testing » E2E » Fixtures","id":"29","title":"Fixtures"},"3":{"body":"If you are looking to dive into the codebase and get started, we recommend checking out our issue list labeled with good first issue . This will help you get acquainted with the project and start contributing.","breadcrumbs":"Getting started » Good First Issue","id":"3","title":"Good First Issue"},"30":{"body":"playwright scan all test case and allocates a worker to run each case. pathInfo copy the project directory corresponding to the current case to temp/${worker_index}. rspack rewrite dev server port to 8000 + worker_index and start compiler and dev server in temp/${worker_index}. run current tests. rspack close dev server and compiler. pathInfo clear temp/${worker_index}","breadcrumbs":"Testing » E2E » How it works","id":"30","title":"How it works"},"31":{"body":"","breadcrumbs":"Debugging » Debugging","id":"31","title":"Debugging"},"32":{"body":"Install go install github.com/go-delve/delve/cmd/dlv@latest Install VSCode extension rust-analyzer and CodeLLDB build @rspack/cli and napi binding by run pnpm install && pnpm -w build:cli:debug In VSCode's Run and Debug tab, select debug-rspack to start debugging the initial launch of @rspack/cli. This task can be configured in .vscode/launch.json, which launches the Node and Rust debugger together.","breadcrumbs":"Debugging » Debugging with VSCode","id":"32","title":"Debugging with VSCode"},"33":{"body":"tracing is used to instrumenting Rspack. The supported tracing levels for release builds are INFO, WARN and ERROR debug builds are TRACE, DEBUG, INFO, WARN and ERROR Use the RSPACK_PROFILE environment variable for displaying trace information RSPACK_PROFILE=TRACE=layer=logger rspack build\nRSPACK_PROFILE='TRACE=layer=logger&filter=rspack_core::compiler::compilation' rspack build # filter for an event","breadcrumbs":"Debugging » Tracing","id":"33","title":"Tracing"},"34":{"body":"oxc_resolver emits some tracing information for debugging purposes. RSPACK_PROFILE='TRACE=filter=oxc_resolver=trace&layer=logger' rspack build","breadcrumbs":"Debugging » oxc_resolver","id":"34","title":"oxc_resolver"},"35":{"body":"rust-lldb can be used to get panic information from debug builds rust-lldb -- node /path/to/rspack build Once it launches, press r for running the program. For example, examples/arco-pro crashes without any information before this fix : rspack/examples/arco-pro ❯ node ../../packages/rspack-cli/bin/rspack build\nRspack ██████████████████████░░░░░░░░░░░░░░░░░░ 56% building ./pages/welcome\nzsh: bus error node ../../packages/rspack-cli/bin/rspack build Using rust-lldb rspack/examples/arco-pro ❯ rust-lldb -- node ../../packages/rspack-cli/bin/rspack build Press r and it prints: Process 23110 stopped\n* thread #10, name = 'tokio-runtime-worker', stop reason = EXC_BAD_ACCESS (code=2, address=0x70000cc66560) frame #0: 0x0000000140d0db4b rspack.darwin-x64.node`swc_ecma_parser::parser::expr::ops::_$LT$impl$u20$swc_ecma_parser..parser..Parser$LT$I$GT$$GT$::parse_unary_expr::h29f49330a806839c(self=0x0000000000000000) at ops.rs:244 241 /// Parse unary expression and update expression. 242 /// 243 /// spec: 'UnaryExpression'\n-> 244 pub(in crate::parser) fn parse_unary_expr(&mut self) -> PResult> { 245 trace_cur!(self, parse_unary_expr); 246 let start = cur_pos!(self); 247\nTarget 0: (node) stopped.","breadcrumbs":"Debugging » rust-lldb","id":"35","title":"rust-lldb"},"36":{"body":"This discussion aims to illustrate the method for mixed debugging between JavaScript and Rust.","breadcrumbs":"Debugging » Mixed debug » Mixed Debugging Between JavaScript and Rust","id":"36","title":"Mixed Debugging Between JavaScript and Rust"},"37":{"body":"To illustrate this process, I'll use an example. Let's start by introduce the environment and example I have used. System: macos IDE: vscode Debugging target: rspack build ${projectRoot}/basic Firstly, you need to build rspack in debug mode. To do this, execute the following commands in the project's root directory: npm run build:binding:debug\nnpm run build:js","breadcrumbs":"Debugging » Mixed debug » Prerequisites","id":"37","title":"Prerequisites"},"38":{"body":"It's necessary to configure two debug configurations within in .vscode/launch.json. attach for node: { \"name\": \"attach:node”, \"request\": \"attach\", // refer: https://code.visualstudio.com/docs/editor/debugging#_launch-versus-attach-configurations \"type\": \"node\", // `9229` is the default port of message \"port\": 9229\n} and launch for lldb { \"name\": \"launch:rust-from-node\", \"request\": \"launch”, \"type\": \"lldb\", // it means we use `lldb` to launch the binary file of `node` \"program\": \"node”, \"args\": [ \"--inspect\", \"--enable-source-maps\", \"${workspaceFolder}/packages/rspack-cli/bin/rspack\", \"build\", \"-c\", \"${workspaceFolder}/examples/basic/rspack.config.js\", ], // `cwd` is just for repack find the correctly entry. \"cwd\": \"${workspaceFolder}/examples/basic/\"\n} Next, we can utilize compounds to amalgamate the two commands: { \"name\": \"mix-debug\", \"configurations\": [ \"attach:node\", \"launch:rust-from-node\" ]\n} Finally, your launch.json should appear as follows: { \"configurations\": [ { \"name\": \"attach:node\", \"request\": \"attach\", \"type\": \"node\", \"port\": 9229 }, { \"name\": \"launch:rust-from-node\", \"request\": \"launch\", \"type\": \"lldb\", \"program\": \"node\", \"args\": [ \"--inspect\", \"--enable-source-maps\", \"${workspaceFolder}/packages/rspack-cli/bin/rspack\", \"build\", \"-c\", \"${workspaceFolder}/examples/basic/rspack.config.js\", ], \"cwd\": \"${workspaceFolder}/examples/basic/\" } ], \"compounds\": [ { \"name\": \"mix-debug\", \"configurations\": [ \"attach:node\", \"launch:rust-from-node\" ] } ]\n}","breadcrumbs":"Debugging » Mixed debug » Configure launch.json in vscode","id":"38","title":"Configure launch.json in vscode"},"39":{"body":"Next, we can introduce some breakpoints and commence debugging. The result appears as follows: Your browser does not support the video tag.","breadcrumbs":"Debugging » Mixed debug » Debugging Attempt","id":"39","title":"Debugging Attempt"},"4":{"body":"If you are interested in understanding our project's direction and want to work on issues that are aligned with our priorities, our tracking issues list provides an overview of our progress and current goals.","breadcrumbs":"Getting started » Tracking Issue","id":"4","title":"Tracking Issue"},"40":{"body":"In this section, we'll explore how to profile Rspack for identifying bottlenecks. By examining where Rspack spends its time, we can gain insights into how to improve performance. Tracing Chrome Terminal Nodejs Profiling Mac Xcode Instruments","breadcrumbs":"Profiling » Profiling","id":"40","title":"Profiling"},"41":{"body":"tracing is used to instrumenting Rspack. The supported tracing levels for release builds are INFO, WARN and ERROR debug builds are TRACE, DEBUG, INFO, WARN and ERROR Two ways to enable tracing: if you are using @rspack/cli, you can enable it by RSPACK_PROFILE environment variable. if you are using @rspack/core without @rspack/cli, you can enable it by experimental_registerGlobalTrace and experimental_cleanupGlobalTrace, checkout how we implement RSPACK_PROFILE in @rspack/cli with these two function for more details.","breadcrumbs":"Profiling » Tracing","id":"41","title":"Tracing"},"42":{"body":"tracing-chrome is supported for viewing tracing information graphically. Setting the environment variable RSPACK_PROFILE=TRACE=layer=chrome before running Rspack, for example RSPACK_PROFILE=TRACE=layer=chrome rspack build produces a trace file (.rspack-profile-${timestamp}/trace.json) in the current working directory. The JSON trace file can be viewed in either chrome://tracing or ui.perfetto.dev .","breadcrumbs":"Profiling » Chrome","id":"42","title":"Chrome"},"43":{"body":"Granular tracing event values can be viewed inside the terminal via RSPACK_PROFILE=TRACE=layer=logger, for example RSPACK_PROFILE=TRACE=layer=logger rspack build will print the options passed to Rspack as well as each individual tracing event.","breadcrumbs":"Profiling » Terminal","id":"43","title":"Terminal"},"44":{"body":"If we find that the performance bottleneck is on the JS side (e.g. js loader), then we need to further analyse the js side, and we can use Nodejs Profiling to analyse. for example node --cpu-prof {rspack_bin_path} -c rspack.config.js or RSPACK_PROFILE=JSCPU rspack build this will generates a cpu profile like CPU.20230522.154658.14577.0.001.cpuprofile, and we can use speedscope to visualize the profile, for example npm install -g speedscope\nspeedscope CPU.20230522.154658.14577.0.001.cpuprofile","breadcrumbs":"Profiling » Nodejs Profiling","id":"44","title":"Nodejs Profiling"},"45":{"body":"Xcode instruments can be used to produce a CPU profile if you are on a Mac. To install Xcode Instruments, simply install the Command Line Tools: xcode-select --install For normal Rust builds, cargo instruments can be used as the glue for profiling and creating the trace file. Since Rspack takes quite a while to build, you can use the following procedure without invoking cargo instruments. It has the same effect. In crates/node_binding/Cargo.toml, turn on debug symbols and disable symbol stripping in the [profile.release] section [profile.release]\ndebug = 1 # debug info with line tables only\nstrip = false # do not strip symbols Then build the project pnpm run build:cli:release The final binary is located at packages/rspack-cli/bin/rspack once the project is built. Under the hood, cargo instruments invokes the xcrun command, which means we can run the following in our own project that uses Rspack. xcrun xctrace record --template 'Time Profile' --output . --launch -- /path/to/rspack/packages/rspack-cli/bin/rspack build It produces the following output Starting recording with the Time Profiler template. Launching process: rspack.\nCtrl-C to stop the recording\nTarget app exited, ending recording...\nRecording completed. Saving output file...\nOutput file saved as: Launch_rspack_2023-04-24_11.32.06_9CFE3A63.trace We can open the trace file by open Launch_rspack_2023-04-24_11.32.06_9CFE3A63.trace","breadcrumbs":"Profiling » Mac Xcode Instruments","id":"45","title":"Mac Xcode Instruments"},"46":{"body":"All releases are automated through GitHub actions. All published releases of @rspack/cli can be found on the npm versions page . They are tagged as latest with semver version x.y.z nightly canary","breadcrumbs":"Releasing » Releasing","id":"46","title":"Releasing"},"47":{"body":"The full release workflow is currently triggered manually every Tuesday with full release notes. The following 9 targets are built x86_64-unknown-linux-gnu aarch64-unknown-linux-gnu x86_64-unknown-linux-musl aarch64-unknown-linux-musl i686-pc-windows-msvc x86_64-pc-windows-msvc aarch64-pc-windows-msvc x86_64-apple-darwin aarch64-apple-darwin","breadcrumbs":"Releasing » Latest Full Release","id":"47","title":"Latest Full Release"},"48":{"body":"The nightly release workflow is triggered every day at UTC 16:00:07, which is 00:07 AM Beijing Time (offset with an odd minute to avoid cron jobs firing off at the same time). The nightly build fully replicates the full release build for catching errors early.","breadcrumbs":"Releasing » Nightly","id":"48","title":"Nightly"},"49":{"body":"Commenting on a PR with the text !canary triggers the canary release workflow . Only contributors have the permission to publish canary releases. The canary release only builds three targets for quicker feedback aarch64-apple-darwin x86_64-apple-darwin x86_64-unknown-linux-gnu","breadcrumbs":"Releasing » Canary","id":"49","title":"Canary"},"5":{"body":"We are always looking for contributors, and that goes beyond just our main repository. Check out these other ways to get involved and start making a difference today. The documentation website is at web-infra-dev/rspack-website This dev guide is at web-infra-dev/rspack-dev-guide Community packages is at https://github.com/rspack-contrib As a reminder, all contributors are expected to follow our Code of Conduct .","breadcrumbs":"Getting started » Other ways to contribute","id":"5","title":"Other ways to contribute"},"50":{"body":"Thank you for your interest in contributing to Rspack! There are many ways to contribute, and we appreciate all of them.","breadcrumbs":"Contribution procedures » Intro","id":"50","title":"Intro"},"51":{"body":"Fork the Rspack repository into your own GitHub account. Clone the repository to your local. Checkout a new branch from main. Set up the development environment, you can read the \"Setup Development Environment\" section below to learn about it. If you've fixed a bug or added code that should be tested, then add some tests. Make sure all the tests pass, you can read the \"Testing\" section below to learn about it. Run pnpm run lint:js and pnpm run lint:rs to check the code style. If you've changed some Node.js packages, you should add a new changeset . Run pnpm run changeset, select the changed packages and add the changeset info. If you've changed some Rust packages, you should add a new changeset for @rspack/binding package. Submit the Pull Request, make sure all CI runs pass. The maintainers will review your Pull Request soon. When submitting a Pull Request, please note the following: Keep your PRs small enough, so that each PR only addresses a single issue or adds a single feature. Please include an appropriate description in the PR, and link related issues.","breadcrumbs":"Contribution procedures » Sending a Pull Request","id":"51","title":"Sending a Pull Request"},"52":{"body":"The format of PR titles follow Conventional Commits. A example feat(ui): Add `Button` component\n^ ^ ^\n| | |__ Subject\n| |_______ Scope\n|____________ Type Your PR must have a Type Optionally have a Scope Scope should be lower case must have a Subject","breadcrumbs":"Contribution procedures » Format of PR titles","id":"52","title":"Format of PR titles"},"53":{"body":"The rspack repro template can be used to create a minimal reproducible example. A minimal reproducible example (MRE) is a code that is: Short Self-contained Demonstrates the problem being encountered An MRE is essential because it allows us to quickly understand and reproduce your issue. This, in turn, increases the likelihood of getting a helpful and accurate response in a shorter amount of time. It is important to note that an MRE should not include extraneous code related to unrelated functionality, and should instead focus solely on the problem at hand. Please see also How to create a Minimal, Reproducible Example from Stackoverflow.","breadcrumbs":"Minimal reproducible example » Minimal reproducible example","id":"53","title":"Minimal reproducible example"},"54":{"body":"If you need guidance or assistance with a specific area of the project, check out the CODEOWNERS file on GitHub. This file lists the preferred person to contact for each area.","breadcrumbs":"About the team » About the team","id":"54","title":"About the team"},"55":{"body":"This page explains the meanings of Rspack repository's labels. C Contribution welcome G Good first issue","breadcrumbs":"Managing labels » Managing labels","id":"55","title":"Managing labels"},"56":{"body":"","breadcrumbs":"Managing labels » C","id":"56","title":"C"},"57":{"body":"","breadcrumbs":"Managing labels » Contribution welcome","id":"57","title":"Contribution welcome"},"58":{"body":"","breadcrumbs":"Managing labels » G","id":"58","title":"G"},"59":{"body":"","breadcrumbs":"Managing labels » Good first issue","id":"59","title":"Good first issue"},"6":{"body":"This guide is meant to help document how Rspack works, as well as to help new contributors get involved in Rspack development.","breadcrumbs":"About this guide » About this guide","id":"6","title":"About this guide"},"60":{"body":"This is the architecture of current rspack implementation","breadcrumbs":"rspack » rspack","id":"60","title":"rspack"},"61":{"body":"loader","breadcrumbs":"rspack » Table of Contents","id":"61","title":"Table of Contents"},"62":{"body":"rspack#2780 rspack#2808","breadcrumbs":"rspack » loader » Related PRs","id":"62","title":"Related PRs"},"63":{"body":"The old architecture is a quite simple version, which only supports loaders for normal stage. Pitching loader does not put into consideration. The basic concept of the old version is to convert the normal loader to a native function which can be called from the Rust side. Furthermore, for performance reason, Rspack also composes loaders from the JS side to mitigate the performance issue of Node/Rust communications. In this new architecture, loaders will not be converted directly into native functions. Instead, it is almost the same with how webpack's loader-runner resolves its loaders, by leveraging the identifier. Every time Rspack wants to invoke a JS loader, the identifiers will be passed to the handler passed by Node side to process. The implementation also keeps the feature of composing JS loaders for performance reason.","breadcrumbs":"rspack » loader » Summary","id":"63","title":"Summary"},"64":{"body":"The refactor does not introduce any other breaking changes. So it's backwards compatible. The change of the architecture also help us to implement pitching loader with composability.","breadcrumbs":"rspack » loader » Guide-level explanation","id":"64","title":"Guide-level explanation"},"65":{"body":"Pitching loader is a technique to change the loader pipeline flow. It is usually used with inline loader syntax for creating another loader pipeline. style-loader, etc and other loaders which might consume the evaluated result of the following loaders may use this technique. There are other technique to achieve the same ability, but it's out of this article's topic. See Pitching loader for more detail.","breadcrumbs":"rspack » loader » Pitching loader","id":"65","title":"Pitching loader"},"66":{"body":"","breadcrumbs":"rspack » loader » Reference-level explanation","id":"66","title":"Reference-level explanation"},"67":{"body":"In the original implementation of loader, Rspack will convert the normal loaders in the first place, then pass it to the Rust side. In the procedure of building modules, these loaders will be called directly: Old architecture The loader runner is only on the Rust side and execute the loaders directly from the Rust side. This mechanism has a strong limit for us to use webpack's loader-runner for composed loaders. In the new architecture, we will delegate the loader request from the Rust core to a dispatcher located on the JS side. The dispatcher will normalize the loader and execute these using a modified version of webpack's loader-runner: image Loader functions for pitch or normal will not be passed to the Rust side. Instead, each JS loader has its identifier to uniquely represent each one. If a module requests a loader for processing the module, Rspack will pass identifier with options to the JS side to instruct the Webpack like loader-runner to process the transform. This also reduces the complexity of writing our own loader composer.","breadcrumbs":"rspack » loader » Actor of loader execution","id":"67","title":"Actor of loader execution"},"68":{"body":"Options will normally be converted to query, but some of the options contain fields that cannot be serialized, Rspack will reuse the loader ident created by webpack to uniquely identify the option and restore it in later loading process.","breadcrumbs":"rspack » loader » Passing options","id":"68","title":"Passing options"},"69":{"body":"As we had known before, each loader has two steps, pitch and normal. For a performance friendly interoperability, we must reduce the communication between Rust and JS as minimum as possible. Normally, the execution steps of loaders will look like this: image The execution order of the loaders above will looks like this: loader-A(pitch) loader-B(pitch) loader-C(pitch) loader-B(normal)\nloader-A(normal) The example above does not contain any JS loaders, but if, say, we mark these loaders registered on the JS side: image The execution order will not change, but Rspack will compose the step 2/3/4 together for only a single round communication.","breadcrumbs":"rspack » loader » Optimization for pitching","id":"69","title":"Optimization for pitching"},"7":{"body":"Please see prerequisites for setting up Rust and Node.js.","breadcrumbs":"Building and running » How to build and run the compiler","id":"7","title":"How to build and run the compiler"},"70":{"body":"This is the architecture of webpack implementation","breadcrumbs":"webpack » webpack","id":"70","title":"webpack"},"71":{"body":"loader dependency","breadcrumbs":"webpack » Table of Contents","id":"71","title":"Table of Contents"},"72":{"body":"Based on Webpack version: 5.73.0 . Explain how webpack loader works. Even though it's a little bit long and tedious, It's still a teeny-tiny peek at the loader system of Webpack.","breadcrumbs":"webpack » loader » Summary","id":"72","title":"Summary"},"73":{"body":"What's the meaning of a word used to describe a feature? Why does the Webpack introduce this and what's the background of introducing this? What kind of problem Webpack was facing at the time?","breadcrumbs":"webpack » loader » Glossary","id":"73","title":"Glossary"},"74":{"body":"import Styles from '!style-loader!css-loader?modules!./styles.css'; Inline loader syntax : The syntax that chains the loader together within the specifier, followed by the file requested. e.g. !style-loader!css-loader?modules!./style.css request: The request with inline loader syntax retained. Webpack will convert relative URLs and module requests to absolute URLs for loaders and files requested. e.g. !full-path-to-the-loader-separated-with-exclamation-mark!full-path-to-styles.css","breadcrumbs":"webpack » loader » Request Related","id":"74","title":"Request Related"},"75":{"body":"import xxx from \"./index.js?vue=true&style#some-fragment\" resource : The absolute path to the requested file with query and fragment retained but inline loader syntax removed. e.g. absolute-path-to-index-js.js?vue=true&style#some-fragment resourcePath : The absolute path to the requested file only. e.g. absolute-path-to-index-js.js resourceQuery : Query with question mark ? included. e.g. ?vue=true&style resourceFragment : e.g. #some-fragment inline match resource: Used to redirect the module.rules to another, which is able to adjust the loader chain. We will cover this later. Ref: related PR Webpack Doc1 Webpack Doc2 virtualResource: The proposed solution to support asset type changing(A sugar to inline matchResource, which can also affect the asset filename generation) See more: the background of this property","breadcrumbs":"webpack » loader » Resource Related","id":"75","title":"Resource Related"},"76":{"body":"Virtual Module: A kind of module that does not locate in the real file system. But you can still import it. To create a virtual module, you need to follow the spec and it's also worth noting that Node.js and Webpack both support it under the scheme of data:. Also known as, data: import. Doc to Node.js Module types with native support: Webpack supports the following module types native: 'javascript/auto' | 'javascript/dynamic' | 'javascript/esm' | 'json' | 'webassembly/sync' | 'webassembly/async' | 'asset' | 'asset/source' | 'asset/resource' | 'asset/inline', for those types you can use it without a loader . From webpack version 4.0+, webpack can understand more than javascript alone.","breadcrumbs":"webpack » loader » Others but also important to note","id":"76","title":"Others but also important to note"},"77":{"body":"","breadcrumbs":"webpack » loader » Guide-level explanation","id":"77","title":"Guide-level explanation"},"78":{"body":"The way that webpack controls what kind of module that each loader would apply is based on module.rules const MiniExtractCssPlugin = require(\"mini-extract-css-plugin\") module.exports = { module: { rules: [ { test: /\\.vue$/, use: [\"vue-loader\"] }, { test: /\\.css$/, use: [MiniExtractCssPlugin.loader, \"css-loader\"] } ] }, plugins: [new MiniExtractCssPlugin()]\n} Here is a simple option for the configuration of vue-loader. module.rules[number].test is a part rule to test whether a rule should be applied . For vue-loader alone, It's kind of confusing how webpack pass the result to the rule of css, we will cover this later. But for now, It's good to notice there is not only a test option alone to test if a rule should be applied . You can find it here for full conditions supported. Here're some examples of other conditions you can use. module.exports = { module: { rules: [ { test: /\\.vue$/, // of course, test if the file extension match `vue`. scheme: \"data\", // if the specifier of a request starts with `data:` resourceQuery: \"?raw\", // if the `resourceQuery` matches then the rule will be applied. For this example, it's a great idea to apply a `raw-loader` here. type: \"css\" // use webpack's native resource handling for css } ] }\n}","breadcrumbs":"webpack » loader » Loader configuration","id":"78","title":"Loader configuration"},"79":{"body":"","breadcrumbs":"webpack » loader » Examples","id":"79","title":"Examples"},"8":{"body":"Install Node.js dependencies via pnpm . # enable pnpm with corepack, only available on node >= `v14.19.0`\ncorepack enable # or install pnpm directly\nnpm install -g pnpm@7 # Install dependencies\npnpm install","breadcrumbs":"Building and running » Install Node.js dependencies","id":"8","title":"Install Node.js dependencies"},"80":{"body":"In a single file component(SFC) of Vue, there are commonly three blocks or more blocks( custom blocks ) contained. The basic idea of implementing this loader is to convert it into JavaScript / CSS and let webpack handle the chunk generation(e.g. Style should be generated into a separate .css file) ⬇️⬇️⬇️⬇️⬇️⬇️ Vue-loader will firstly turn into the *.vue file into something like that. import \"script-path-to-vue-sfc\";\nimport \"template-path-to-vue-sfc\";\nimport \"style-path-to-vue-sfc\"; You may find it weird how webpack handles these imports and build the transformed code. But if I change the code a little bit, you will find the idea. import \"script:path-to-vue-sfc\";\nimport \"template:path-to-vue-sfc\";\nimport \"style:path-to-vue-sfc\"; and if we tweak the configuration a little bit to this, webpack will know exactly how to work with these import statements. module.exports = { module: { rules: [ { test: /\\.vue$/, use: [\"vue-loader\"] }, { scheme: \"script\", use: [\"apply-your-javascript-loader\", \"vue-script-extract-loader\"] }, { scheme: \"template\", use: [\"apply-your-javascript-loader\", \"vue-template-extract-loader\"] }, { scheme: \"style\", use: [\"apply-your-style-loader\", \"vue-style-extract-loader\"] } ] }\n} We added a few loaders to handle the splitting. I know it's still kind of weird here, but please stick with me and we will find a better way out. vue-script-extract-loader: extract the script block from a SFC file. vue-style-extract-loader: extract the style block from a SFC file. vue-template-extract-loader: extract the template block from a SFC file and convert it into JavaScript. You will find it's really noisy only to transform a *.vue file, four loaders were introduced and I believe none of you would like to separate a simple loader into four. It's a real bummer! It will be great to use a single loader vue-loader alone. The current vue loader implementation uses resourceQuery to handle this. But how? Loader optimizations I We know that webpack uses a few conditions to handle whether a rule should be applied. Even with rule.test alone, the this.reousrceQuery is still available to loaderContext which developer could access it with this in any loader function(Don't worry if you still don't catch this. You will understand this after). Based on that, we change the rule to this: module.exports = { module: { rules: [ { test: /.vue$/, use: [\"vue-loader\"] } ] }\n} This indicates \"If an import specifier is encountered, please pass me to vue-loader\"! If you remember the import transformation above, we could adjust the transformation a little bit to this: Before import \"script-path-to-vue-sfc\";\nimport \"template-path-to-vue-sfc\";\nimport \"style-path-to-vue-sfc\"; After import \"path-to-vue-sfc.vue?script=true\";\nimport \"path-to-vue-sfc.vue?template=true\";\nimport \"path-to-vue-sfc.vue?style=true\"; These requests will match the test: /.vue$/ above flawlessly and in the loader we can handle like this: // pseudo code only for proofing of the concept\nconst compiler = require(\"some-vue-template-compiler\") const loader = function(source) { const { resourceQuery /* ?script=true or something else */, resourcePath /* path-to-vue-sfc.vue */ } = this if (resourceQuery === \"?script=true\") { return compiler.giveMeCodeofScriptBlock(this.resourcePath) // javascript code } else if (resourceQuery === \"?template=true\") { return compiler.giveMeCodeofTemplateBlock(this.resourcePath) // javascript code } else if (resourceQuery === \"?style=true\") { return compiler.giveMeCodeofStyleBlock(this.resourcePath) // style code } else { return ` import `${this.resourcePath}?script=true`; import `${this.resourcePath}?template=true`; import `${this.resourcePath}?style=true`; ` }\n} module.exports = loader You can see the loader for the example above will be used for four times. Encounter a *.vue file, transform the code to a few import statements For each import statement introduced in the first transformation, the loader will be used again as they share the same extension vue. Is this the end? No! Even if you wrote the code like this, it will still fail to load. For CSS: You haven't tell webpack a way to handle the CSS, remember the CSS part is required to go through the css-loader and then mini-css-extract(if you want to generate CSS for chunk) or style-loader(if you want to append it directly to the DOM). After all, you have to make the result of style to pass these loaders. For JS: You haven't transformed the code to any transpilers, It will be failed if your runtime doesn't support the syntax(maybe in TypeScript for example) and webpack internal acorn compiler does not have the ability to help you with that. Pass the code to the corresponding loaders We tweak the configuration a little bit again. module.exports = { module: { rules: [ { test: /.vue$/, use: [\"vue-loader\"] }, { test: /.css$/, use: [MiniCssExtractPlugin.loader, \"css-loader\"] }, { test: /.js$/, use: [\"babel-loader\"] } ] }\n} It looks a bit more like the \"normal\" Webpack configuration. Note that the rule.test is based on the file extension, so vue-loader did a little bit of hack here. // pseudo code only for proofing of the concept\nconst compiler = require(\"some-vue-template-compiler\") const loader = function(source) { const { resourceQuery /* ?script=true or something else */, resourcePath /* path-to-vue-sfc.vue */ } = this if (resourceQuery === \"?script=true\") { const code = compiler.giveMeCodeofScriptBlock(this.resourcePath) // javascript code this.resourcePath += \".js\" return code } else if (resourceQuery === \"?template=true\") { const code = compiler.giveMeCodeofTemplateBlock(this.resourcePath) // javascript code this.resourcePath += \".js\" return code } else if (resourceQuery === \"?style=true\") { const code = compiler.giveMeCodeofStyleBlock(this.resourcePath) // style code this.resourcePath += \".css\" // based on the `lang` in each script, the extension will be set accordingly. return code } else { return ` import `${this.resourcePath}?script=true`; import `${this.resourcePath}?template=true`; import `${this.resourcePath}?style=true`; ` }\n} module.exports = loader Webpack uses resourcePath to match a module.rules. So this hack will let webpack treat blocks accordingly as if they are real files with extensions of js | css |... . Finally! But this is only a proof of concept, for the real implementation. You should definitely check out the vue-loader yourself. Loader Optimization II Well done! We implemented a simple and rudimentary version of vue-loader. However, the real pain-in-the-ass part of this implementation is hacking the extension to match the configuration. But since almost every user would have other js | css files included in the project, so vue team decide to use this kind of strategy to reuse the user configuration. Except for hacking the extension, webpack then provided a more legit way to handle this kind of rule matching problem which is known as inline match resource (We covered it in the glossary part). inline match resource Webpack can do almost anything with an import specifier like the loader chaining we covered in the glossary part. Inline source match is another case. By taking the advantage of it, you can force an import statement to go through a module.rules by introducing the !=! syntax. For example, if we want to force a css file to go through a less loader, it will be look like this: module.exports = { module: { rules: [ { test: /.less$/, use: [\"style-loader\", \"css-loader\", \"less-loader\"] } ] }\n} // This import should be converted with a loader // treat the file as `less`\nimport \"./index.css.less!=!./index.css\" The slice before the !=! is a way to modify the extension of a single file and force it to match the module.rules and this transformation is often done in a loader, or you will make your application code specialized for Webpack only. After going through the basic example, let's see how we're going to optimize out the hack used in vue-loader. // pseudo code only for proofing of the concept\nconst compiler = require(\"some-vue-template-compiler\") const loader = function(source) { const { resourceQuery /* ?script=true or something else */, resourcePath /* path-to-vue-sfc.vue */ } = this if (resourceQuery === \"?vue=true&script=true\") { return compiler.giveMeCodeofScriptBlock(this.resourcePath) // javascript code } else if (resourceQuery === \"?vue=true&template=true\") { return compiler.giveMeCodeofTemplateBlock(this.resourcePath) // javascript code } else if (resourceQuery === \"?vue=true&style=true\") { return compiler.giveMeCodeofStyleBlock(this.resourcePath) // style code } else { return ` import `${this.resourcePath}.js!=!${this.resourcePath}?vue=true&script=true`; import `${this.resourcePath}.js!=!${this.resourcePath}?vue=true&template=true`; import `${this.resourcePath}.css!=!${this.resourcePath}?vue=true&style=true`; ` }\n} module.exports = loader Webpack will internally use the match resource part(before !=!) as the data to match loaders. In order to let vue-loader match the resource. We have two options: Loose test Inline loader syntax 1. Loose test module.exports = { module: { rules: [ { test: /\\.vue/, // original: `/\\.vue$/`, we removed the `$` to allow resources with `.vue` included to match this rule. use: [\"vue-loader\"] } ] }\n} We removed the $ to allow resources with .vue included matching this rule. Personally speaking, this is not a good idea, because a loose match might cause mismatches. 2. Inline loader syntax // vue-loader/index.js module.exports = function() { // ... code omitted return ` import `${this.resourcePath}.js!=!${__filename}!${this.resourcePath}?vue=true&script=true`; import `${this.resourcePath}.js!=!${__filename}!${this.resourcePath}?vue=true&template=true`; import `${this.resourcePath}.css!=!${__filename}!${this.resourcePath}?vue=true&style=true`; `\n} This technique is to take advantage of the inline loader syntax to force the loader to go through the vue loader. This tackles down the tangible mismatching ideally and we can still retain the test regex /\\.vue$/ as-is. Final art and conclusion Configuration module.exports = { module: { rules: [ { test: /\\.vue$/, use: [\"vue-loader\"] }, // ... other rules for js, or css, etc. ] } } Loader // pseudo code only for proofing of the concept\nconst compiler = require(\"some-vue-template-compiler\") const loader = function(source) { const { resourceQuery /* ?script=true or something else */, resourcePath /* path-to-vue-sfc.vue */ } = this if (resourceQuery === \"?vue=true&script=true\") { return compiler.giveMeCodeofScriptBlock(resourcePath) // javascript code } else if (resourceQuery === \"?vue=true&template=true\") { return compiler.giveMeCodeofTemplateBlock(resourcePath) // javascript code } else if (resourceQuery === \"?vue=true&style=true\") { return compiler.giveMeCodeofStyleBlock(resourcePath) // style code } else { return ` import `${this.resourcePath}.js!=!${__filename}!${resourcePath}?vue=true&script=true`; import `${this.resourcePath}.js!=!${__filename}!${resourcePath}?vue=true&template=true`; import `${this.resourcePath}.css!=!${__filename}!${resourcePath}?vue=true&style=true`; ` }\n} module.exports = loader Conclusion Vue-loader is quite complex. The basic needs of the loader are: Separate a *.vue file request into a number of parts. For each block, explicitly change the resource matching mechanism (using inline match resource ). The killer inline match resource not only gives us great composability with user-defined loaders, but also the ability to interact with webpack supported native types, and we will cover this part late. When requesting the vue-loader again for a block, the code of each block is returned and let webpack handle the changed matched resource(e.g. ./App.vue.css) with user-defined loaders (Webpack did this internally).","breadcrumbs":"webpack » loader » Vue(1 to n)","id":"80","title":"Vue(1 to n)"},"81":{"body":"We know that webpack only supports JavaScript in the old time, from the version of 4.0.0+( changelog ) Simplified pre-processor's configuration With the experimental support of CSS. A.K.A webpack knows how to handle CSS files natively. Before module.exports = { module: { rules: [ { test: /\\.less$/, use: [\"style-loader\", \"css-loader\", \"less-loader\"], type: \"javascript/auto\" // this field is a implicit one, if not defined, it will be set to `\"javascript/auto\"` } ] }\n} After module.exports = { module: { rules: [ { test: /\\.less$/, use: [\"less-loader\"], type: \"css\" } ] }, experiments: { css: true }\n} With experiments.css on, webpack can experimentally understand the parsing and generating of css files which gets rid of css-loader and style-loader. For the full list of natively supported Rule.type, you can find it here . Asset modules From webpack 4.0.0+ , assets are supported natively module.exports = { module: { rules: [ { test: /\\.(png|jpg)/, type: \"asset\" } ] }\n} Rule.type === \"asset\" indicates the asset will be automatically tested whether it's going to be inlined or emitted as a file on the real file system. The possible options are: 'asset' | 'asset/source' | 'asset/resource' | 'asset/inline'","breadcrumbs":"webpack » loader » Use natively supported module types","id":"81","title":"Use natively supported module types"},"82":{"body":"Webpack loader will read the source to a UTF-8 string by default. For SVG files, this would fit the webpack load defaults. // Proof of concept of svgr-loader\nmodule.exports = function(source) { if (this.resourceQuery === \"?svgr=true\") { // the real transform part let { code } = svgrTransformer.transform(source); return code } return `require(\"${this.resourcePath}.jsx!=!${__filename}!${this.resourcePath}?svgr=true\")` // the request part\n} Again here we use double-pass to firstly convert each request to the request part with inline match resource , and do the real request with query ?svgr=true, and let inline match resource handle the jsx conversion. Before that, we have to call a third-party jsx transformer, could be ESBuild for example, for which we cannot reuse other module.rules set by the user-side. Inline match resource saved our ass again!","breadcrumbs":"webpack » loader » Svgr","id":"82","title":"Svgr"},"83":{"body":"Supported in Webpack version 5.38.0 , doc: Rule.scheme // JavaScript\nimport x from \"data:text/javascript,export default 42\"\nconsole.log('x:',x); /* CSS */\n@import (\"data:text/css, body { background: #fff; }\"); Webpack handles data: imports for JavaScript internally.","breadcrumbs":"webpack » loader » Scheme imports","id":"83","title":"Scheme imports"},"84":{"body":"Asset : This is a general term for the images, fonts, media, and any other kind of files that are typically used in websites and other applications. These typically end up as individual files within the output but can also be inlined via things like the style-loader or url-loader . Originally posted at Webpack Glossary Default resource reading override Asset could be formatted in both text(*.svg) or binary (*.png / *.jpg). For loaders, webpack provides you an option raw to override the default and built-in resource reading strategy from UTF-8 string to Buffer: module.exports = function(source /* Buffer */ ) { // loader implementation\n} module.exports.raw = true Transform and rename Image there is a need to transform an asset formatted with png to jpg. There is two abilities that webpack needs to support: Handle the asset with raw content, or a Buffer. We can simply override the default resource reading behavior by exporting raw(covered before). Change the filename, and reuse the loader for both png and jpg Configuration module.exports = { module: { rules: [ { test: /\\.png/, use: [\"png-to-jpg-loader\"] // some png to jpg loader, we will implement this }, { test: /\\.jpg/, use: [\"jpg-optimizer\"] // some jpg optimizer, we will not covert this, type: \"asset/resource\" } ] }\n} Rule1: For files with extension png, we want to use a png to jpg loader, which will be covered in this article. Rule2: For files with extension jpg, we want to use a third-party jpg-optimizer, which will not be covered in this article. type: \"asset/resource\": As soon as all the loaders have gone through, we want webpack to emit the file as an external resource on the file system regardless of the file size(type: \"asset\" will automatically detect the size of an asset to determine whether an asset will be inline-included for dynamically imported from file system). For those jpg files converted from png, we want them to apply with the jpg-optimizer too(i.e. reuse the loaders defined in module.rules) Loader module.exports = function(source) { if (this.resourceQuery === \"?pngToJPG=true\") { return pngToJpg.transform(source) } return `require(\"${this.resourcePath}.jpg!=!${__filename}${this.resourcePath}?pngToJPG=true\")`\n} module.exports.raw = true We use double-pass again, firstly we convert the extension to .jpg which will apply the matched rules(in this case test: /\\.jpg/), after the transformation of png-to-jpg-loader. Generated asset module filename will be based on the inline match resource , which is xxxx.jpg in this case.","breadcrumbs":"webpack » loader » Asset transform and rename","id":"84","title":"Asset transform and rename"},"85":{"body":"Webpack provides a way to pass metadata(the forth parameter) among the chaining loaders doc . The most commonly used value is webpackAST which accepts an ESTree compatible(webpack internally uses acorn) AST, which hugely improves the performance since webpack instead of parsing the returned code to AST again, will directly use the AST(webpackAST) returned from a loader (But the work of a complete walking of an AST can not be omitted as it's necessary for webpack for do some analysis for its dependencies and will be only done once, so it is not a big overhead.) module.exports = function(source) { let ast = AcornParser.parse(source, { // options }) this.callback(null, '', null, { webpackAST: ast })\n} Good to note that only ESTree is compatible, so you cannot pass a CSS AST, or webpack will complain with \"webpackAst is unexpected for the CssParser\". It will be ok if you don't get this, let's move to the reference-level explanation for analysis in-depth.","breadcrumbs":"webpack » loader » AST reuse","id":"85","title":"AST reuse"},"86":{"body":"This is the reference-level explanation part of webpack's internal loader implementation.","breadcrumbs":"webpack » loader » Reference-level explanation","id":"86","title":"Reference-level explanation"},"87":{"body":"If you don't quite get this concept, you may refer to the Glossary and Example part of the Guide-level explanation first and pick up this as soon as you finished. The high-level idea of previously talked inline match resource is to let loader developers to customize the behavior of matching to match the pre-defined module.rules. It's an API to write composable loaders. But what does composition mean? For those users who are familiar with React hooks and Vue composable APIs, you may get this faster. Actually, webpack provides a lot of ways to help loader developers and users do the composition. User-defined loader flows module.exports = { module: { rules: [ { test: /\\.js$/, use: [\"babel-loader\"], type: \"javascript/auto\" }, { test: /\\.svg$/, use: [\"svgr-loader\", \"svgo-loader\"], } ] }\n} Webpack users can take the advantage of module.rules[number].use with a loader list for each request that matches the corresponding conditions. Note that I use the wording of request, not the file , which can include a request to data:text/javascript not the files on the real file system only. (In Parcel bundler, it's called pipelines , but this will not be covered in this article.) Apparently, user-declared loader flow is not able to cover up every case that a loader wants. You can see from the previous examples, vue-loader wants to split a file into many blocks, and remain the reference to it. svgr-loader wants to do the transformation first and let other loaders deal with the jsx. svg-loader wants to use the internal ability of Asset Module to let Webpack decide whether an asset is inlined or emitted to the real file system. and there are more to come... Based on the complexity of the loader, Webpack also provides a syntax to allow loader implementors to do the composition by themselves. The syntax for loader composition Inline loader syntax (Chaining loaders) Supported from webpack v1 chaining-loaders It's possible to specify loaders in an import statement, or any equivalent \"importing\" method . Separate loaders from the resource with !. Each part is resolved relative to the current directory. doc import Styles from '!style-loader!css-loader?modules!./styles.css'; The inline loader syntax executes each loader for each request from right to left. Webpack handles the interaction with user-defined loaders carefully. So by default, the user-defined normal loader will be executed prior to the inline loaders, you can disable this behavior by prefixing ! , (full reference could be found here doc ). The custom specifier is parsed before the module.rules as the inline loader syntax interferes the user-defined loaders(See the source code ). Then, webpack will get the module.rules combined with the required conditions to calculate the matching rule set (See the source code ). At the moment, you cannot change the matching behavior with the syntax, loaders are always matched with the provided resourcePath , etc, which leads to a bunch of hack code in the implementations of loaders (see this code snippet in vue-loader). The possibilities for changing the matching behavior leaves to the later-coming inline match resource . Nevertheless, the architecture of Loader at this moment is sound and solid. Another good example is the implementation-nonrelative filter(i.e. the filtering logic of Loader is not declared in the loader itself), which is the fundamental root of loader composition, or the implementor will do a lot of hacks. (It's way too dirty to talk about here, but you can take the rollup svgr plugin as a reference) In conclusion, inline loader syntax gives us a chance to control the loader flow with user-defined rules. Inline match resource To extend the matching ability, inline match resource enables loader implementors to reuse some of the user-defined configurations with more flexibilities. On top of the previous example, webpack also provides a way to make use of the natively-supported module types . // For module type `css` to work, you need to enable `experiments.css`\nimport \"./style.less.webpack[css]!=path-to-less-loader!./style.less\" // webpack.config.js\nmodule.exports = { experiments: { css: true }\n} Given the configuration above, the overview of the complete flow will be like this: Webpack: Parse the specifier of the import and create the loader for the current request Webpack: Merge the result from the second step with a user-defined module.rules in webpack.config, in this case is [] Webpack: load style.less as UTF-8 string Less-loader: Accept the UTF-8 string as the first parameter of the loader function and transform it to the content of css. Webpack: Call the registered native CSS parser, and later at the code generation step the registered native CSS generator generates the result. For asset modules , you can also use this: import \"./logo.png.jpg.webpack[asset/resource]!=path-to-loaders!./logo.png\" The first part, also known as matchResource will be used as a part of the filename of the final code generation. (See the source code )","breadcrumbs":"webpack » loader » Loader composability","id":"87","title":"Loader composability"},"88":{"body":"Before moving on to the detailed implementations, here's some glossary to support your understanding the architecture as a whole. Glossary NormalModuleFactory: A factory used to create a NormalModule, which basically exposes a create method. NormalModule: A module in Webpack most of the time is a NormalModule, but with different implementations of parser/ generator / Module Type, the module could be almost any kind, and also exposes a build method. For example, a NormalModule with JavaScript parser, JavaScript generator, and type ===javascript/auto will be regarded as a module with JavaScript-related functionalities. Also, good to note that a module may not exist on the real file system, taking data: for example. The module creation workflow This will only introduce a slice of webpack's internal implementation from the Loader's perspective , for more you should directly refer to the source code. When an import statement is detected, webpack will initialize a module creation. Based on the type of Dependency (an abstraction of webpack, it's not important here), webpack can find the linked ModuleFactory (The abstraction class), in most cases, the derived factory is NormalModuleFactory, which exposes a create method. Prepare data needed for module creation The NormalModuleFactory#create is used to provide enough information to create a real NormalModule, and create the NormalModule. In the create method, webpack basically does these things(some non-loader related stuff will be omitted): Resolve loaders from request: resolve the request, parse inline loader syntax: This contains inline match resource , inline loader syntax . Do the analysis on the parsed loader syntax, to decide whether a user-defined normal/post/pre loader is going to be included. doc Resolve Resource: resolve resource to the absolute path, fragments, queries, etc(These stuff are also provided in LoaderContext). For the full source code you may refer to this Use the resolved resource data to match module.rules defined in the configuration, and get the matched rules. This is also a part of the module creation data. Do some special logic with inline match resource , since match resource ends like .webpack[css] would change Rule.type. Also store the match resource data, since it might affect the filename generation for asset modules . Create a module based on the prepared data After the data needed for module creation is prepared, NormalModuleFactory will new NormalModule with the data provided. It contains basically every that a NormalModule needs (see the source code ). Most importantly, the loaders. It contains every loader parsed and ordered from the create step. The module build step The module build step is kind of clear. Webpack will invoke the build method for each NormalModule instance, which invokes loader-runner(see the source code ) to go through every loader that was analyzed from the create step. It's clear to know that the composition of loaders is happening on the same module . A peek of the support of Module Types As far as this article goes, It might be getting a little bit tedious. But have you ever wondered how webpack supports these module types natively? I think It's still worth telling you about it to get a more complete understanding of the AST optimizations. For the support of JavaScript, webpack's JavaScript plugin will register different types of parser and generators for each module types , which will be used as the parser / generator to a NormalModule (see the source code ). Reusing AST in Webpack Based on the parser and generator we introduced before, webpack did a little hack around the fourth parameter of this.callback (from loaderContext ), with webpackAST, after each loader call, the webpackAST will be stored in the context of loader, and passed again to the next loader. Finally, the AST will be passed to the parser(It could be any type, based on the module type , but webpack makes it a JavaScript only for AST) (see the source code ). Here's an issue about trying to use SWC's AST to get rid of the time sensitive code parsing from Acorn Parser, but they are facing some AST compatibility issues and performance issues about the overhead of interop with native code(Rust).","breadcrumbs":"webpack » loader » Performance optimizations","id":"88","title":"Performance optimizations"},"89":{"body":"loader plugin api design (Analysis) #315 RFC-011 Supports data:text/javascript protocol #457 Webpack: matchResource with natively-supported module types doc Webpack: Loader context doc Webpack: Module rules doc SWC-loader for performance optimizations issue","breadcrumbs":"webpack » loader » References","id":"89","title":"References"},"9":{"body":"Run cargo build to compile Rust code. Run pnpm run build:cli:debug to compile both Node.js and Rust code. The built binary is located at packages/rspack-cli/bin/rspack.","breadcrumbs":"Building and running » Building Rspack","id":"9","title":"Building Rspack"},"90":{"body":"Based on Webpack version: 5.73.0 . Some source code is omitted for cleaner demonstration in the example. Explain how webpack dependency affects the compilation and what kind of problem that webpack was facing at the moment and the solution to the problem.","breadcrumbs":"webpack » dependency » Summary","id":"90","title":"Summary"},"91":{"body":"What's the meaning of a word used to describe a feature? Why does the Webpack introduce this and what's the background of introducing this? What kind of problem Webpack was facing at the time?","breadcrumbs":"webpack » dependency » Glossary","id":"91","title":"Glossary"},"92":{"body":"Dependency(fileDependency) : An existing dependency that is marked as watchable. This is the widely-used type of dependency. CSS Preprocessors like postcss strongly depend on this in order to mark its dependency watchable. ContextDependency : Most useful for requests in which Glob and Regexp were used. For real-world usage, see [ this ](https://webpack.js.org/guides/dependency-management/#require-with-expression). MissingDependency : A missing dependency to mark it watchable (handles the creation of files during compilation before watchers are attached correctly.) BuildDependency : Related to persistent cache. PresentationalDependency: Dependencies that only affect presentation are mostly used with their associated template.","breadcrumbs":"webpack » dependency » High-level presentations of Dependencies","id":"92","title":"High-level presentations of Dependencies"},"93":{"body":"LoaderContext : Context provided by Webpack loader-runner , which can be accessed through this in each loader function. ModuleGraph: A graph to describe the relationship between modules.","breadcrumbs":"webpack » dependency » Others","id":"93","title":"Others"},"94":{"body":"","breadcrumbs":"webpack » dependency » Guide-level explanation","id":"94","title":"Guide-level explanation"},"95":{"body":"dependency(fileDependency) stands for the file dependency among missingDependency and contextDependency, etc. The created dependency will be marked as watchable, which is useful in Hot Module Replacement in developer mode. The implicit behavior for webpack internally in the case below is to create two dependencies internally. import foo from \"./foo\";\nimport \"./style.css\";","breadcrumbs":"webpack » dependency » Dependency","id":"95","title":"Dependency"},"96":{"body":"contextDependency is mostly used in scenarios where we want to dynamic load some module in runtime. In this case, webpack cannot assure which module it will be included in the final bundle at compile time. In order to make the code runnable in runtime, webpack has to firstly create multiple bundle modules corresponding to the matching filename such as ./components/a.js and ./components/b.js, etc. // index.js\nimport(\"./components\" + componentName).then(...) // components/a.js\n...\nexport default ComponentA; // components/b.js\n...\nexport default ComponentB; For loaders, you can access to this.addContextDependency in each loader function. For plugins, you can access via module.buildInfo.contextDependencies.","breadcrumbs":"webpack » dependency » ContextDependency","id":"96","title":"ContextDependency"},"97":{"body":"The abstraction of Dependency of Webpack was introduced in Webpack version 0.9 with a big refactor. Redirect to the commit","breadcrumbs":"webpack » dependency » Reference-level explanation","id":"97","title":"Reference-level explanation"},"98":{"body":"","breadcrumbs":"webpack » dependency » Stakeholders of Dependency","id":"98","title":"Stakeholders of Dependency"},"99":{"body":"image-20220919171608629","breadcrumbs":"webpack » dependency » High-level","id":"99","title":"High-level"}},"length":134,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"1":{".":{"0":{"df":1,"docs":{"124":{"tf":1.7320508075688772}}},"1":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}},"0":{":":{"0":{"7":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":1,"docs":{"35":{"tf":1.4142135623730951}},"x":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"4":{"0":{"d":{"0":{"d":{"b":{"4":{"b":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{".":{"0":{".":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"35":{"tf":1.0}}},"6":{":":{"0":{"0":{":":{"0":{"7":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"13":{"tf":2.8284271247461903}}},"df":3,"docs":{"109":{"tf":1.7320508075688772},"45":{"tf":1.0},"80":{"tf":1.0}}},"2":{"/":{"3":{"/":{"4":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"2":{"2":{"0":{"9":{"1":{"9":{"1":{"7":{"1":{"6":{"0":{"8":{"6":{"2":{"9":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"4":{"1":{"6":{"2":{"4":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"1":{"9":{"8":{"6":{"1":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"3":{"0":{"0":{"2":{"2":{"0":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"2":{"9":{"7":{"6":{"5":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{"3":{"2":{"7":{"7":{"2":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"2":{"6":{"5":{"6":{"4":{"6":{"8":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"5":{"5":{"3":{"2":{"1":{"5":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{"5":{"0":{"7":{"3":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"2":{"3":{"2":{"2":{"8":{"1":{"4":{"6":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"5":{"8":{"3":{"2":{"7":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"2":{"0":{"7":{"3":{"9":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"1":{"8":{"0":{"9":{"1":{"5":{"3":{"2":{"6":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"1":{"1":{"0":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{"df":1,"docs":{"35":{"tf":1.0}}},"2":{"df":1,"docs":{"35":{"tf":1.0}}},"3":{"df":1,"docs":{"35":{"tf":1.0}}},"4":{"df":1,"docs":{"35":{"tf":1.0}}},"5":{"df":1,"docs":{"35":{"tf":1.0}}},"6":{"df":1,"docs":{"35":{"tf":1.0}}},"7":{"df":1,"docs":{"35":{"tf":1.0}}},"_":{"1":{"1":{".":{"3":{"2":{".":{"0":{"6":{"_":{"9":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"3":{"a":{"6":{"3":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"109":{"tf":1.0},"80":{"tf":1.0}}},"3":{"1":{"5":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"83":{"tf":1.0}}},"5":{"7":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"3":{"8":{".":{"0":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{".":{"0":{"df":2,"docs":{"72":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"9":{"2":{"2":{"9":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"47":{"tf":1.0}}},"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"52":{"tf":1.0}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"_":{".":{"d":{"(":{"_":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"_":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"(":{"_":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"_":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"29":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"_":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"0":{"_":{"_":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":2.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"a":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}}},".":{"df":0,"docs":{},"k":{".":{"a":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"6":{"4":{"df":2,"docs":{"47":{"tf":2.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"65":{"tf":1.0},"80":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"v":{"df":7,"docs":{"104":{"tf":1.0},"109":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.0},"69":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"74":{"tf":1.0},"75":{"tf":2.0},"88":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"104":{"tf":1.0},"88":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"80":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"51":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"109":{"tf":1.0},"65":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"80":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"46":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"df":7,"docs":{"103":{"tf":1.0},"109":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":2.23606797749979},"52":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"=":{"0":{"df":0,"docs":{},"x":{"7":{"0":{"0":{"0":{"0":{"c":{"c":{"6":{"6":{"5":{"6":{"0":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"51":{"tf":1.0}}}}}}},"df":4,"docs":{"103":{"tf":1.0},"110":{"tf":1.0},"51":{"tf":1.0},"80":{"tf":1.0}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"75":{"tf":1.0},"80":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"80":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"75":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"{":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"|":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"36":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"4":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":3,"docs":{"53":{"tf":1.0},"80":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"109":{"tf":1.0},"5":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.4142135623730951}},"i":{"df":3,"docs":{"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0}}}},"z":{"df":3,"docs":{"11":{"tf":1.0},"32":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"103":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"p":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":1,"docs":{"45":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"38":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"80":{"tf":1.0}},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"128":{"tf":1.0},"131":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951}},"i":{"c":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.0}}},"df":7,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"78":{"tf":2.23606797749979},"80":{"tf":2.0},"84":{"tf":1.4142135623730951}}},"y":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"109":{"tf":2.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"114":{"tf":1.0},"51":{"tf":1.0}}}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"109":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"70":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"g":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"80":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"l":{"df":3,"docs":{"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"133":{"tf":1.0}}},"s":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951}}}},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"76":{"tf":1.0},"81":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"76":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"76":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"110":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"81":{"tf":2.449489742783178},"84":{"tf":3.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"109":{"tf":2.23606797749979},"92":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}}},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":2,"docs":{"85":{"tf":2.6457513110645907},"88":{"tf":2.449489742783178}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"38":{"tf":2.0}}},"df":0,"docs":{}}}},"df":2,"docs":{"38":{"tf":2.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"103":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0}}}},"df":1,"docs":{"46":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"8":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}}},"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"80":{"tf":1.0},"87":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{")":{"[":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"1":{"1":{"8":{"0":{"2":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":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":{"73":{"tf":1.0},"75":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"104":{"tf":1.7320508075688772}}}},"df":2,"docs":{"104":{"tf":1.0},"106":{"tf":2.0}}},"s":{"df":0,"docs":{},"e":{"df":9,"docs":{"110":{"tf":1.0},"114":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.0},"90":{"tf":1.0}}},"i":{"c":{"df":6,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"63":{"tf":1.0},"80":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":2,"docs":{"133":{"tf":1.0},"53":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"102":{"tf":1.0},"35":{"tf":1.0},"42":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"{":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"|":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"20":{"tf":2.449489742783178},"26":{"tf":2.449489742783178},"84":{"tf":1.0},"87":{"tf":2.0},"95":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"j":{"df":1,"docs":{"48":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.0},"51":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"104":{"tf":1.0},"36":{"tf":1.4142135623730951},"69":{"tf":1.0},"93":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"85":{"tf":1.0},"97":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"38":{"tf":1.0},"45":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.0}}}}},"d":{"df":4,"docs":{"114":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":3,"docs":{"72":{"tf":1.0},"80":{"tf":2.449489742783178},"88":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"80":{"tf":3.1622776601683795},"87":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"n":{"d":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"127":{"tf":1.0}},"h":{"df":3,"docs":{"76":{"tf":1.0},"84":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"40":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"113":{"tf":1.4142135623730951},"51":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"64":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"u":{"df":1,"docs":{"35":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}}}}},"g":{"df":3,"docs":{"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"51":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{":":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"32":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"j":{"df":1,"docs":{"37":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":27,"docs":{"102":{"tf":1.0},"133":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"20":{"tf":2.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"26":{"tf":2.0},"29":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":2.0},"34":{"tf":1.0},"35":{"tf":2.449489742783178},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":2.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":2.0},"9":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":4,"docs":{"45":{"tf":1.0},"47":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"87":{"tf":1.0}}}},"d":{"df":0,"docs":{},"l":{"df":5,"docs":{"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}},"df":4,"docs":{"110":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"87":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"c":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"29":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":7,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"46":{"tf":1.0},"49":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":4,"docs":{"16":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"18":{"tf":1.7320508075688772},"20":{"tf":3.1622776601683795},"24":{"tf":1.7320508075688772},"26":{"tf":3.1622776601683795},"28":{"tf":2.23606797749979},"30":{"tf":1.7320508075688772},"52":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"48":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"103":{"tf":1.0},"104":{"tf":2.449489742783178},"105":{"tf":1.0},"106":{"tf":1.0},"28":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":5,"docs":{"38":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"74":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"n":{"c":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":13,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"19":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.0},"51":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":2.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"81":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":2.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"a":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":10,"docs":{"109":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"29":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":1.0},"41":{"tf":1.0},"51":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{"/":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"40":{"tf":1.0},"42":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":3,"docs":{"110":{"tf":2.23606797749979},"116":{"tf":1.0},"80":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"110":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"109":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"110":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"i":{"df":1,"docs":{"51":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"133":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"104":{"tf":1.0},"109":{"tf":2.23606797749979},"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"109":{"tf":2.0},"90":{"tf":1.0}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"109":{"tf":1.0}}}}},"df":2,"docs":{"30":{"tf":1.0},"88":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"35":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"=":{"2":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}},"df":22,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":4.123105625617661},"110":{"tf":2.23606797749979},"111":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":2.23606797749979},"18":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"5":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"80":{"tf":5.5677643628300215},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":2.6457513110645907},"88":{"tf":2.6457513110645907},"9":{"tf":1.4142135623730951},"90":{"tf":1.0},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"d":{"b":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"110":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"13":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.0},"97":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"j":{"df":2,"docs":{"104":{"tf":1.0},"105":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"80":{"tf":1.0},"85":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"5":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.4142135623730951}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"109":{"tf":1.4142135623730951},"18":{"tf":1.0},"24":{"tf":1.0},"64":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":11,"docs":{"109":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"7":{"tf":1.0},"80":{"tf":3.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}}},"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":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"45":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"x":{"df":3,"docs":{"67":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"111":{"tf":1.0},"116":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"c":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}}},"a":{"df":1,"docs":{"96":{"tf":1.0}}},"b":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"/":{"a":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":6,"docs":{"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":2.23606797749979},"88":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"63":{"tf":1.0},"80":{"tf":2.23606797749979},"82":{"tf":1.0},"87":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"80":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"105":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"109":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"114":{"tf":1.0},"32":{"tf":1.0},"38":{"tf":2.6457513110645907},"78":{"tf":1.4142135623730951},"80":{"tf":2.449489742783178},"81":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"x":{":":{"'":{",":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"113":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"108":{"tf":1.4142135623730951},"109":{"tf":2.0},"111":{"tf":1.0},"113":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"106":{"tf":1.4142135623730951},"109":{"tf":3.1622776601683795},"114":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":3.872983346207417}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"65":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"28":{"tf":1.7320508075688772},"53":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"109":{"tf":1.0},"114":{"tf":1.0},"29":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"92":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"109":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"5":{"tf":1.0}},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"0":{"tf":1.7320508075688772},"3":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"49":{"tf":1.0},"5":{"tf":1.4142135623730951},"6":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"78":{"tf":1.0},"87":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.0}}},"t":{"df":7,"docs":{"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"16":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"67":{"tf":1.0}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"38":{"tf":1.0},"92":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"113":{"tf":1.0},"127":{"tf":1.0},"30":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"109":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"u":{".":{"2":{"0":{"2":{"3":{"0":{"5":{"2":{"2":{".":{"1":{"5":{"4":{"6":{"5":{"8":{".":{"1":{"4":{"5":{"7":{"7":{".":{"0":{".":{"0":{"0":{"1":{".":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"44":{"tf":1.4142135623730951},"45":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"35":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":16,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.4142135623730951},"116":{"tf":1.0},"127":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":3.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"101":{"tf":1.0},"110":{"tf":1.0},"88":{"tf":2.23606797749979},"92":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"78":{"tf":2.449489742783178},"80":{"tf":4.0},"81":{"tf":2.6457513110645907},"83":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.23606797749979},"92":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"!":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"103":{"tf":1.0},"109":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"21":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"4":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"w":{"d":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951}}}}}},"t":{"a":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.0}}}}},"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}},"df":2,"docs":{"87":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"76":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"48":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"114":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":11,"docs":{"31":{"tf":1.0},"32":{"tf":2.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}},"g":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"80":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":11,"docs":{"106":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"29":{"tf":1.0},"38":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"109":{"tf":1.7320508075688772},"113":{"tf":1.0},"29":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":2.8284271247461903},"88":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"80":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"v":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"c":{"df":0,"docs":{},"m":{"d":{"/":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"@":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":2.0},"53":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"p":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"[":{"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"109":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"df":23,"docs":{"101":{"tf":1.0},"103":{"tf":2.0},"104":{"tf":2.449489742783178},"105":{"tf":1.0},"106":{"tf":2.6457513110645907},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":3.7416573867739413},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"28":{"tf":1.4142135623730951},"71":{"tf":1.0},"8":{"tf":1.7320508075688772},"85":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":2.6457513110645907},"95":{"tf":2.0},"97":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"92":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"103":{"tf":1.0},"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"85":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":4,"docs":{"104":{"tf":1.0},"73":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"113":{"tf":1.0},"124":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"41":{"tf":1.0},"65":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}},"v":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}}},"df":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":{"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":4,"docs":{"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":7,"docs":{"103":{"tf":1.0},"113":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"6":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"102":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"133":{"tf":1.0},"5":{"tf":1.0},"88":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"29":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"28":{"tf":2.23606797749979},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"45":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"36":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.0}}}}},"o":{"c":{"1":{"df":1,"docs":{"75":{"tf":1.0}}},"2":{"df":1,"docs":{"75":{"tf":1.0}}},"df":7,"docs":{"105":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.4142135623730951},"5":{"tf":1.0},"6":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":1,"docs":{"80":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":6,"docs":{"109":{"tf":1.4142135623730951},"18":{"tf":1.0},"24":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"110":{"tf":2.0},"80":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.0},"84":{"tf":1.0}}},"t":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"84":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":4,"docs":{"104":{"tf":1.0},"44":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":2.0}}}},"2":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"a":{"c":{"df":0,"docs":{},"h":{"df":20,"docs":{"102":{"tf":1.0},"106":{"tf":1.7320508075688772},"109":{"tf":1.7320508075688772},"110":{"tf":2.23606797749979},"111":{"tf":1.0},"116":{"tf":1.0},"133":{"tf":1.0},"30":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.0},"82":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.7320508075688772},"93":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"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":4,"docs":{"104":{"tf":1.7320508075688772},"109":{"tf":1.0},"113":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"114":{"tf":2.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"110":{"tf":1.0},"34":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"113":{"tf":1.0},"53":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}}}},"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":8,"docs":{"103":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.4142135623730951},"28":{"tf":1.0},"45":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"133":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"111":{"tf":1.4142135623730951},"51":{"tf":1.0},"88":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"38":{"tf":1.0}}},"y":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"13":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.4142135623730951}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"41":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}},"s":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":5,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":2.449489742783178},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"109":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"53":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}},"t":{"c":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":9,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"104":{"tf":1.7320508075688772},"65":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"109":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.4142135623730951}},"t":{"df":2,"docs":{"33":{"tf":1.0},"43":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"40":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":22,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"13":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":2.0},"69":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":2.0},"82":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"c":{"_":{"b":{"a":{"d":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"80":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"102":{"tf":1.0},"37":{"tf":1.0},"67":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"29":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}}},"t":{"df":1,"docs":{"45":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"81":{"tf":1.0},"87":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"41":{"tf":1.0}}},"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"81":{"tf":1.4142135623730951}},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"81":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"109":{"tf":1.0},"55":{"tf":1.0},"72":{"tf":1.0},"90":{"tf":1.0}}}},"n":{"df":9,"docs":{"104":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"40":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":7,"docs":{"105":{"tf":1.0},"106":{"tf":2.0},"109":{"tf":1.0},"114":{"tf":2.0},"29":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"106":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"113":{"tf":2.0},"35":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"109":{"tf":1.7320508075688772},"87":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":5,"docs":{"11":{"tf":1.0},"32":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.6457513110645907},"84":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":2,"docs":{"78":{"tf":1.0},"80":{"tf":3.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"a":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"73":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}},"t":{"df":1,"docs":{"109":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"16":{"tf":1.0},"22":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":1,"docs":{"88":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"127":{"tf":1.0},"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":3,"docs":{"106":{"tf":1.0},"110":{"tf":1.0},"80":{"tf":1.7320508075688772}}}},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"83":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"102":{"tf":1.0},"104":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":22,"docs":{"103":{"tf":1.7320508075688772},"109":{"tf":1.0},"20":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"29":{"tf":2.23606797749979},"38":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":2.0},"54":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":3.872983346207417},"81":{"tf":2.0},"82":{"tf":1.0},"84":{"tf":3.0},"87":{"tf":2.23606797749979},"88":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"75":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{".":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"19":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"87":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"106":{"tf":1.0},"110":{"tf":1.7320508075688772},"113":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"80":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}}},"d":{"df":9,"docs":{"102":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.0},"81":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"29":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"0":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.4142135623730951},"55":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"37":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"82":{"tf":1.0}}},"x":{"df":4,"docs":{"18":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.0},"51":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":3.3166247903554}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"l":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"65":{"tf":1.0},"87":{"tf":2.0}}}}},"n":{"df":2,"docs":{"29":{"tf":1.0},"35":{"tf":1.0}},"m":{"df":1,"docs":{"13":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"109":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"108":{"tf":1.0},"113":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"28":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":16,"docs":{"114":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.7320508075688772},"47":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}},"o":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"104":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":5,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":3.605551275463989},"109":{"tf":2.0},"114":{"tf":2.449489742783178},"95":{"tf":1.4142135623730951}}},"r":{"c":{"df":1,"docs":{"80":{"tf":2.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"51":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"85":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"133":{"tf":1.0},"46":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"80":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"88":{"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":3,"docs":{"109":{"tf":3.0},"75":{"tf":2.0},"88":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"35":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"106":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":4,"docs":{"80":{"tf":2.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":16,"docs":{"109":{"tf":1.0},"114":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"131":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"40":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"133":{"tf":1.7320508075688772}}}}},"df":4,"docs":{"44":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":15,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":2.23606797749979},"110":{"tf":2.449489742783178},"113":{"tf":1.7320508075688772},"114":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"44":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":2.0},"88":{"tf":2.449489742783178}}}}},"t":{"df":4,"docs":{"0":{"tf":1.0},"53":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"103":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}},"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":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"1":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"80":{"tf":1.0},"87":{"tf":1.0}},"n":{"df":4,"docs":{"109":{"tf":1.7320508075688772},"111":{"tf":1.0},"116":{"tf":1.0},"87":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"73":{"tf":1.0},"80":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":6,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"32":{"tf":1.0},"80":{"tf":2.449489742783178},"81":{"tf":1.0},"88":{"tf":1.4142135623730951}},"e":{"df":2,"docs":{"5":{"tf":1.0},"88":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"84":{"tf":1.0}}}},"o":{"d":{"df":10,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"3":{"tf":1.4142135623730951},"55":{"tf":1.0},"59":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"h":{"df":5,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"93":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"78":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"5":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"64":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"80":{"tf":2.23606797749979},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"53":{"tf":1.0}},"l":{"df":10,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":3.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"r":{"d":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":4,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.0},"109":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"106":{"tf":1.0},"109":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":9,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":1.4142135623730951},"64":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.7320508075688772}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":4,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.0},"88":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":12,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"13":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"109":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.7320508075688772}}}}},"o":{"d":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":2,"docs":{"110":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"95":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"#":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"110":{"tf":1.0},"85":{"tf":1.0}}}}}},"i":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}}},".":{"df":1,"docs":{"116":{"tf":1.0}}},"6":{"8":{"6":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":2,"docs":{"106":{"tf":1.0},"37":{"tf":1.0}},"e":{"a":{"df":4,"docs":{"109":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"87":{"tf":1.0}},"l":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":6,"docs":{"102":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"40":{"tf":1.0},"63":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"80":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":13,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"41":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":2.23606797749979},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.7320508075688772}}}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"81":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{".":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":16,"docs":{"104":{"tf":2.0},"106":{"tf":3.4641016151377544},"109":{"tf":2.449489742783178},"116":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"53":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.7320508075688772},"80":{"tf":6.082762530298219},"83":{"tf":2.0},"84":{"tf":1.0},"87":{"tf":2.449489742783178},"88":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"df":1,"docs":{"109":{"tf":1.0}}},"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"40":{"tf":1.0},"85":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":10,"docs":{"16":{"tf":1.0},"22":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"!":{"=":{"!":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"j":{"df":3,"docs":{"104":{"tf":2.449489742783178},"116":{"tf":1.0},"96":{"tf":1.0}},"s":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"#":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"75":{"tf":1.4142135623730951}}}},"i":{"c":{"df":4,"docs":{"103":{"tf":1.0},"110":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":2,"docs":{"43":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":4,"docs":{"33":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"45":{"tf":1.0},"51":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"109":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"42":{"tf":1.0},"88":{"tf":1.0}}}}},"r":{"a":{"df":3,"docs":{"18":{"tf":1.0},"24":{"tf":1.0},"5":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"109":{"tf":2.0},"114":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"i":{"df":2,"docs":{"32":{"tf":1.0},"88":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"102":{"tf":1.7320508075688772},"104":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"80":{"tf":2.8284271247461903},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772},"87":{"tf":3.1622776601683795},"88":{"tf":2.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"11":{"tf":1.4142135623730951},"13":{"tf":2.8284271247461903},"32":{"tf":2.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"8":{"tf":2.449489742783178}}},"n":{"c":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"53":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"33":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":2.449489742783178}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"80":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.0},"4":{"tf":1.0},"50":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}},"n":{"df":9,"docs":{"103":{"tf":1.4142135623730951},"113":{"tf":1.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"69":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":11,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"50":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"45":{"tf":1.4142135623730951},"63":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"5":{"tf":1.0},"6":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":11,"docs":{"0":{"tf":1.4142135623730951},"109":{"tf":1.0},"3":{"tf":1.7320508075688772},"4":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0}}}}},"t":{"'":{"df":19,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"110":{"tf":2.0},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"38":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.4142135623730951},"76":{"tf":1.0},"78":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.7320508075688772}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"110":{"tf":1.7320508075688772},"122":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":5,"docs":{"102":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"df":8,"docs":{"106":{"tf":1.0},"113":{"tf":1.0},"36":{"tf":1.4142135623730951},"76":{"tf":1.0},"80":{"tf":3.4641016151377544},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"88":{"tf":2.449489742783178}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}},"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}}},"o":{"b":{"df":2,"docs":{"110":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":4.0}}}},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"75":{"tf":1.0}},"s":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"#":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":10,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"44":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"80":{"tf":2.6457513110645907},"87":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"104":{"tf":1.0},"42":{"tf":1.0},"76":{"tf":1.0}}}},"x":{"df":2,"docs":{"82":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":2,"docs":{"51":{"tf":1.0},"63":{"tf":1.0}}}},"y":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"n":{"d":{"df":11,"docs":{"110":{"tf":1.0},"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"84":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"114":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":5,"docs":{"110":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"127":{"tf":1.4142135623730951},"3":{"tf":1.0},"55":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"80":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"80":{"tf":1.0}},"r":{"df":8,"docs":{"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"114":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"46":{"tf":1.0},"47":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}}}}},":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":2.0}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"2":{"0":{"2":{"3":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":4,"docs":{"32":{"tf":1.4142135623730951},"35":{"tf":1.0},"38":{"tf":2.0},"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"128":{"tf":1.0},"51":{"tf":1.4142135623730951}}}},"v":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"80":{"tf":2.0},"81":{"tf":2.0},"87":{"tf":1.4142135623730951}}}},"t":{"'":{"df":5,"docs":{"109":{"tf":1.0},"116":{"tf":1.0},"37":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":15,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":3,"docs":{"110":{"tf":1.0},"19":{"tf":1.0},"25":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"k":{"df":3,"docs":{"110":{"tf":1.0},"51":{"tf":1.0},"88":{"tf":1.0}}},"t":{":":{"df":0,"docs":{},"j":{"df":1,"docs":{"51":{"tf":1.0}}},"r":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"47":{"tf":2.0},"49":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"54":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"72":{"tf":1.0},"80":{"tf":2.23606797749979},"88":{"tf":1.4142135623730951}}}}}},"l":{"d":{"b":{"df":2,"docs":{"35":{"tf":2.23606797749979},"38":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"a":{"d":{"df":5,"docs":{"68":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"!":{".":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"74":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"'":{"df":1,"docs":{"88":{"tf":1.0}}},"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"80":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"?":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"!":{".":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"74":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"103":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}}}}}},"df":28,"docs":{"102":{"tf":2.23606797749979},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"44":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":3.0},"64":{"tf":1.0},"65":{"tf":3.0},"67":{"tf":4.0},"68":{"tf":1.0},"69":{"tf":3.1622776601683795},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":2.23606797749979},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"78":{"tf":2.6457513110645907},"80":{"tf":8.12403840463596},"81":{"tf":2.449489742783178},"82":{"tf":1.4142135623730951},"84":{"tf":3.4641016151377544},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":6.48074069840786},"88":{"tf":3.7416573867739413},"89":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"s":{"!":{".":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"51":{"tf":1.0}}},"t":{"df":6,"docs":{"103":{"tf":1.0},"133":{"tf":1.0},"45":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"o":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"[":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"]":{"!":{"=":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"72":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":7,"docs":{"106":{"tf":1.0},"109":{"tf":1.4142135623730951},"113":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"69":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}}},"s":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}},"t":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"w":{"df":1,"docs":{"100":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"13":{"tf":2.0}}}},"m":{"a":{"c":{"df":2,"docs":{"40":{"tf":1.0},"45":{"tf":1.4142135623730951}},"o":{"df":1,"docs":{"37":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"109":{"tf":1.4142135623730951},"111":{"tf":1.0},"19":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"105":{"tf":1.4142135623730951},"5":{"tf":1.0},"51":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":14,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"55":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"#":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"50":{"tf":1.0},"87":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":2,"docs":{"106":{"tf":1.0},"38":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"k":{"!":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":4,"docs":{"69":{"tf":1.0},"75":{"tf":1.0},"92":{"tf":1.7320508075688772},"95":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"102":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":4.242640687119285},"82":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"87":{"tf":3.4641016151377544},"88":{"tf":2.449489742783178},"96":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"75":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"106":{"tf":1.0},"109":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"38":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"73":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0}},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"67":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"133":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"127":{"tf":1.0},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"110":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.23606797749979}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"80":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"78":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":1,"docs":{"53":{"tf":2.0}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}},"s":{"c":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"92":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"103":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"63":{"tf":1.0}}}}},"x":{"df":2,"docs":{"36":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951}}}},"o":{"d":{"df":1,"docs":{"109":{"tf":1.0}},"e":{"df":4,"docs":{"103":{"tf":1.0},"113":{"tf":1.0},"37":{"tf":1.0},"95":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"109":{"tf":2.0}},"i":{"df":7,"docs":{"109":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"67":{"tf":1.0},"80":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":26,"docs":{"101":{"tf":1.0},"102":{"tf":2.8284271247461903},"103":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"105":{"tf":2.0},"106":{"tf":3.7416573867739413},"109":{"tf":2.0},"110":{"tf":2.0},"111":{"tf":1.7320508075688772},"114":{"tf":1.0},"116":{"tf":1.7320508075688772},"20":{"tf":1.0},"26":{"tf":1.0},"67":{"tf":1.7320508075688772},"74":{"tf":1.0},"76":{"tf":2.23606797749979},"78":{"tf":1.7320508075688772},"80":{"tf":2.449489742783178},"81":{"tf":2.23606797749979},"84":{"tf":1.4142135623730951},"87":{"tf":2.23606797749979},"88":{"tf":4.358898943540674},"89":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772}},"e":{"'":{"df":1,"docs":{"110":{"tf":1.0}}},".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"114":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":3.3166247903554},"81":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":8,"docs":{"104":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.0}},"e":{"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":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"104":{"tf":2.0},"105":{"tf":1.0},"106":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":3,"docs":{"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":14,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":2.23606797749979},"113":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"111":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"132":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"85":{"tf":1.0},"88":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"47":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"28":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":6,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"29":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":2.449489742783178}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"32":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":8,"docs":{"63":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":2.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"df":1,"docs":{"80":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"29":{"tf":1.0},"38":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":13,"docs":{"123":{"tf":1.0},"125":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"19":{"tf":1.0},"25":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}}}}}},"w":{"df":9,"docs":{"109":{"tf":2.0},"127":{"tf":1.0},"29":{"tf":1.0},"51":{"tf":1.7320508075688772},"6":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}}},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"46":{"tf":1.0},"48":{"tf":1.7320508075688772}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":13,"docs":{"12":{"tf":1.0},"13":{"tf":2.8284271247461903},"15":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"51":{"tf":1.0},"7":{"tf":1.0},"76":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"df":11,"docs":{"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"26":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":2.23606797749979},"38":{"tf":3.1622776601683795},"44":{"tf":1.0},"63":{"tf":1.0},"8":{"tf":1.0}},"j":{"df":2,"docs":{"40":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}},"n":{"df":1,"docs":{"88":{"tf":1.0}},"e":{"df":1,"docs":{"80":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":11,"docs":{"102":{"tf":1.0},"116":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"45":{"tf":1.0},"63":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"88":{"tf":3.1622776601683795}},"e":{"#":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}},"y":{"#":{"c":{"df":0,"docs":{},"r":{"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":{}}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"76":{"tf":1.4142135623730951},"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":1,"docs":{"78":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"df":4,"docs":{"37":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.0},"8":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"85":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"106":{"tf":2.0},"108":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"13":{"tf":2.23606797749979}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"k":{"df":1,"docs":{"85":{"tf":1.0}}},"l":{"d":{"df":3,"docs":{"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":2.0},"80":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"c":{"df":3,"docs":{"35":{"tf":1.0},"45":{"tf":1.0},"85":{"tf":1.0}}},"df":7,"docs":{"109":{"tf":1.0},"116":{"tf":1.0},"15":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"29":{"tf":1.0},"67":{"tf":1.0},"81":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"29":{"tf":1.0}}}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"2":{"4":{"4":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":8,"docs":{"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.7320508075688772},"84":{"tf":2.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"103":{"tf":1.0},"29":{"tf":1.0},"43":{"tf":1.0},"52":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"109":{"tf":2.0},"69":{"tf":1.4142135623730951},"80":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"113":{"tf":1.0},"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"67":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"76":{"tf":1.0},"93":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"t":{"df":6,"docs":{"109":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"45":{"tf":2.0},"84":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"85":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"84":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"4":{"tf":1.0},"87":{"tf":1.0}}}}}}}}},"x":{"c":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"19":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"5":{"tf":1.0},"51":{"tf":2.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"35":{"tf":1.7320508075688772},"45":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"46":{"tf":1.0},"55":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}},"r":{"df":1,"docs":{"109":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"109":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}},"s":{"df":7,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"35":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":3,"docs":{"106":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.449489742783178}}}}},"t":{"(":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":11,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.7320508075688772},"18":{"tf":1.0},"24":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.449489742783178},"82":{"tf":1.7320508075688772},"86":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.0}},"i":{"df":2,"docs":{"82":{"tf":1.0},"84":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":14,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"108":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"109":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":1.0}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":10,"docs":{"102":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"29":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":2.0},"80":{"tf":3.605551275463989},"88":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"29":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951}}}}}}}}},"c":{"df":1,"docs":{"47":{"tf":1.7320508075688772}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":2,"docs":{"72":{"tf":1.0},"88":{"tf":1.0}}}},"r":{"df":2,"docs":{"109":{"tf":1.0},"125":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"40":{"tf":1.0},"44":{"tf":1.0},"63":{"tf":1.7320508075688772},"69":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"133":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"65":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"67":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"122":{"tf":1.0},"125":{"tf":1.0}}},"y":{"df":1,"docs":{"133":{"tf":1.0}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"27":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"1":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"103":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"114":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"78":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":3.1622776601683795}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"|":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"81":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"m":{"@":{"7":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"19":{"tf":1.7320508075688772},"25":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"45":{"tf":1.0},"51":{"tf":1.7320508075688772},"8":{"tf":2.0},"9":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"28":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"30":{"tf":1.0},"38":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"69":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"92":{"tf":1.0}}}}},"df":1,"docs":{"84":{"tf":1.0}}}}},"r":{"df":6,"docs":{"127":{"tf":1.4142135623730951},"49":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.7320508075688772},"62":{"tf":1.0},"75":{"tf":1.0}},"e":{"df":3,"docs":{"102":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"105":{"tf":1.0},"54":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"87":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"37":{"tf":1.0},"7":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}}}},"s":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.4142135623730951}},"s":{"df":3,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.0},"43":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"109":{"tf":1.0},"4":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"53":{"tf":1.4142135623730951},"73":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"110":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"45":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"113":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"df":8,"docs":{"102":{"tf":1.0},"110":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}}}}}}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"42":{"tf":1.0},"45":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"35":{"tf":1.7320508075688772}},"f":{"df":1,"docs":{"44":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"40":{"tf":1.7320508075688772},"42":{"tf":1.0},"44":{"tf":2.0},"45":{"tf":2.0}},"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":{"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"35":{"tf":1.0},"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"37":{"tf":1.0},"4":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":7,"docs":{"28":{"tf":2.0},"29":{"tf":1.7320508075688772},"3":{"tf":1.0},"30":{"tf":1.0},"45":{"tf":1.7320508075688772},"54":{"tf":1.0},"80":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"}":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"80":{"tf":2.23606797749979},"82":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"75":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":10,"docs":{"102":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":2.23606797749979},"4":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.7320508075688772},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"80":{"tf":2.0}}}},"df":0,"docs":{}}}},"u":{"b":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"46":{"tf":1.0},"49":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"51":{"tf":2.0}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"68":{"tf":1.0},"75":{"tf":1.4142135623730951},"82":{"tf":1.0},"88":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"75":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"49":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":6,"docs":{"111":{"tf":1.0},"114":{"tf":1.0},"45":{"tf":1.0},"63":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"106":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"w":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"78":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}},"df":1,"docs":{"35":{"tf":1.4142135623730951}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.0}}},"t":{"df":1,"docs":{"87":{"tf":1.0}}}},"d":{"df":4,"docs":{"106":{"tf":1.0},"51":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":1.7320508075688772}}},"df":0,"docs":{},"l":{"df":9,"docs":{"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"76":{"tf":1.0},"80":{"tf":2.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"92":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"35":{"tf":1.0},"63":{"tf":1.4142135623730951}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"110":{"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":7,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":2,"docs":{"113":{"tf":1.0},"45":{"tf":2.23606797749979}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"114":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"75":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":2,"docs":{"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"64":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"75":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"108":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"38":{"tf":1.0},"66":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":2.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"110":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"88":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"102":{"tf":1.0},"84":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"80":{"tf":1.0}},"p":{"df":1,"docs":{"92":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"29":{"tf":1.0},"69":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.0},"115":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}}}},"df":2,"docs":{"74":{"tf":1.0},"87":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":8,"docs":{"124":{"tf":2.0},"125":{"tf":2.8284271247461903},"33":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"102":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"109":{"tf":1.0},"80":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"127":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"c":{"df":6,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":2.23606797749979},"111":{"tf":2.0},"113":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"127":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"5":{"tf":1.0},"51":{"tf":1.4142135623730951}}},"y":{"'":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":1.0},"67":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"53":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":1,"docs":{"53":{"tf":1.0}}}}},"q":{"df":1,"docs":{"109":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"102":{"tf":1.4142135623730951},"104":{"tf":2.23606797749979},"38":{"tf":2.0},"51":{"tf":2.0},"67":{"tf":1.4142135623730951},"74":{"tf":2.449489742783178},"75":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.0},"87":{"tf":2.23606797749979},"88":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"104":{"tf":1.0},"109":{"tf":1.7320508075688772},"110":{"tf":2.0},"80":{"tf":1.0},"87":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"80":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"v":{"df":8,"docs":{"103":{"tf":2.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"63":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.23606797749979}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":10,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"75":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":3.0},"82":{"tf":1.7320508075688772},"84":{"tf":2.23606797749979},"87":{"tf":2.23606797749979},"88":{"tf":2.6457513110645907}},"e":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"75":{"tf":1.0},"80":{"tf":2.23606797749979},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":4.123105625617661}}}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"110":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"39":{"tf":1.0},"65":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"74":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":8,"docs":{"109":{"tf":1.4142135623730951},"114":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"80":{"tf":4.242640687119285},"82":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"s":{"df":7,"docs":{"68":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"f":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"i":{"d":{"df":2,"docs":{"81":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"110":{"tf":1.0},"87":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":6,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"37":{"tf":1.0},"87":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"#":{"2":{"7":{"8":{"0":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"8":{"df":1,"docs":{"62":{"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"28":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"32":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"46":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"41":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"33":{"tf":1.0},"41":{"tf":1.4142135623730951}},"e":{"=":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"c":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"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":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"&":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":2,"docs":{"33":{"tf":1.0},"43":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":35,"docs":{"0":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"133":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":2.0},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":2.0},"26":{"tf":1.0},"29":{"tf":2.6457513110645907},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.7320508075688772},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"81":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}},"1":{"df":1,"docs":{"84":{"tf":1.0}}},"2":{"df":1,"docs":{"84":{"tf":1.0}}},"df":9,"docs":{"28":{"tf":1.0},"29":{"tf":1.0},"78":{"tf":2.6457513110645907},"80":{"tf":3.4641016151377544},"81":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"89":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}}}},"n":{"df":19,"docs":{"103":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.7320508075688772},"19":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":1.7320508075688772},"25":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"51":{"tf":2.449489742783178},"7":{"tf":1.0},"9":{"tf":1.7320508075688772}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":3,"docs":{"63":{"tf":1.0},"67":{"tf":2.0},"93":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":2.8284271247461903},"111":{"tf":1.0},"35":{"tf":1.0},"80":{"tf":1.0},"96":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":2.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"110":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"11":{"tf":1.7320508075688772},"129":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"35":{"tf":2.23606797749979},"36":{"tf":1.4142135623730951},"45":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":2.23606797749979},"69":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":11,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"45":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":4,"docs":{"76":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":2.449489742783178}}}}}},">":{"<":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"80":{"tf":2.6457513110645907}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"110":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"110":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"109":{"tf":2.0},"40":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":17,"docs":{"104":{"tf":1.0},"109":{"tf":2.23606797749979},"113":{"tf":1.0},"114":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.4142135623730951},"87":{"tf":2.0},"88":{"tf":1.7320508075688772},"92":{"tf":1.0}},"n":{"df":1,"docs":{"113":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"32":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"df":2,"docs":{"35":{"tf":1.0},"53":{"tf":1.0}}}},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"124":{"tf":1.0}}}}}},"df":1,"docs":{"46":{"tf":1.0}}}}}},"n":{"d":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"74":{"tf":1.0},"80":{"tf":1.7320508075688772},"87":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772}}}}}},"t":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"df":13,"docs":{"110":{"tf":1.0},"113":{"tf":1.4142135623730951},"15":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"51":{"tf":1.0}}}}}},"f":{"c":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"?":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"80":{"tf":2.0}}}}}},"df":1,"docs":{"80":{"tf":3.4641016151377544}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"114":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"109":{"tf":1.0},"28":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":1.0},"53":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":9,"docs":{"104":{"tf":1.7320508075688772},"113":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"44":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"67":{"tf":2.449489742783178},"69":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"63":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.4142135623730951}},"i":{"df":2,"docs":{"45":{"tf":1.0},"84":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"109":{"tf":1.0},"81":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":5,"docs":{"0":{"tf":1.0},"133":{"tf":1.0},"51":{"tf":1.4142135623730951},"69":{"tf":1.0},"80":{"tf":1.7320508075688772}}}}},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":1,"docs":{"84":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"102":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"80":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":6,"docs":{"16":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"22":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}},"i":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0}}}},"v":{"df":1,"docs":{"109":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"109":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":2.23606797749979}}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"51":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":15,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"106":{"tf":2.0},"109":{"tf":4.795831523312719},"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"113":{"tf":2.0},"114":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":2.449489742783178},"90":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"[":{"0":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.0}}}},"c":{"df":2,"docs":{"35":{"tf":1.0},"76":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"80":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":6,"docs":{"109":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"54":{"tf":1.0}},"i":{"df":5,"docs":{"106":{"tf":2.0},"74":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"44":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"c":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"109":{"tf":2.0},"63":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"16":{"tf":1.0},"22":{"tf":1.0}}}}}},"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.7320508075688772},"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"78":{"tf":1.0}}}},"t":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":6,"docs":{"106":{"tf":1.4142135623730951},"109":{"tf":2.23606797749979},"116":{"tf":1.0},"80":{"tf":2.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":5,"docs":{"110":{"tf":1.4142135623730951},"114":{"tf":1.0},"69":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":2.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"72":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":2.23606797749979},"88":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"35":{"tf":1.7320508075688772},"45":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":4,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"108":{"tf":1.0},"29":{"tf":2.8284271247461903},"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"104":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"131":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"[":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"]":{"!":{"=":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"87":{"tf":1.0}}}}}}},":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},">":{"<":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"51":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.7320508075688772},"80":{"tf":3.872983346207417},"81":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":2,"docs":{"105":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":2.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":2.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"63":{"tf":1.0},"72":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":16,"docs":{"1":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"63":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":2.23606797749979},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":2.0},"89":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"51":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"g":{"df":2,"docs":{"82":{"tf":1.0},"87":{"tf":1.4142135623730951}},"o":{"df":1,"docs":{"87":{"tf":1.0}}},"r":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}}},"df":2,"docs":{"82":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"w":{"c":{"'":{"df":1,"docs":{"88":{"tf":1.0}}},"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"114":{"tf":1.0},"45":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"y":{"b":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"104":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"80":{"tf":2.0},"87":{"tf":2.6457513110645907},"88":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":9,"docs":{"103":{"tf":1.4142135623730951},"110":{"tf":1.0},"37":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":1,"docs":{"32":{"tf":1.0}},"l":{"df":3,"docs":{"45":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"106":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":6,"docs":{"0":{"tf":1.0},"106":{"tf":1.0},"45":{"tf":1.0},"80":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":1,"docs":{"105":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":4,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"35":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"133":{"tf":1.7320508075688772},"54":{"tf":1.0},"80":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":4,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"65":{"tf":1.7320508075688772},"80":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"72":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"80":{"tf":1.0},"88":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"/":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"109":{"tf":3.1622776601683795},"110":{"tf":1.0},"114":{"tf":1.0},"45":{"tf":1.4142135623730951},"53":{"tf":1.0},"80":{"tf":3.1622776601683795},"92":{"tf":1.0}},"e":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},">":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"2":{"df":1,"docs":{"109":{"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":{"109":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"a":{"d":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}},"df":1,"docs":{"109":{"tf":3.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"40":{"tf":1.0},"43":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"t":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}},"df":22,"docs":{"15":{"tf":1.4142135623730951},"16":{"tf":2.23606797749979},"17":{"tf":2.23606797749979},"18":{"tf":3.7416573867739413},"19":{"tf":3.4641016151377544},"20":{"tf":4.0},"21":{"tf":1.4142135623730951},"22":{"tf":2.23606797749979},"23":{"tf":2.23606797749979},"24":{"tf":3.7416573867739413},"25":{"tf":3.4641016151377544},"26":{"tf":4.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"51":{"tf":2.0},"78":{"tf":2.6457513110645907},"80":{"tf":3.4641016151377544},"81":{"tf":2.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"]":{"(":{"#":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"x":{"df":0,"docs":{},"t":{"(":{"*":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"49":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":2,"docs":{"110":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"111":{"tf":1.0},"115":{"tf":1.0},"84":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"df":0,"docs":{}}},"k":{"df":2,"docs":{"108":{"tf":1.0},"88":{"tf":1.0}}}},"r":{"d":{"df":4,"docs":{"110":{"tf":1.0},"28":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}}},"a":{"d":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":1,"docs":{"88":{"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.7320508075688772}},"}":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"!":{"=":{"!":{"$":{"df":0,"docs":{},"{":{"_":{"_":{"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":0,"docs":{},"e":{"df":0,"docs":{},"}":{"!":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"!":{"=":{"!":{"$":{"df":0,"docs":{},"{":{"_":{"_":{"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":0,"docs":{},"e":{"df":0,"docs":{},"}":{"!":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"?":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"82":{"tf":1.0},"84":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"110":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":7,"docs":{"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"116":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"49":{"tf":1.0},"80":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":8,"docs":{"102":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"46":{"tf":1.0},"80":{"tf":2.23606797749979},"84":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":12,"docs":{"106":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"53":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.4142135623730951},"91":{"tf":1.0},"96":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":2,"docs":{"115":{"tf":1.0},"120":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"32":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"35":{"tf":1.0}}}}},"o":{"(":{"df":0,"docs":{},"i":{".":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"p":{"df":2,"docs":{"105":{"tf":1.0},"87":{"tf":1.0}},"i":{"c":{"df":2,"docs":{"123":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"!":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":7,"docs":{"33":{"tf":2.23606797749979},"34":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":2.23606797749979},"42":{"tf":2.0},"43":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951}}},"k":{"df":2,"docs":{"0":{"tf":1.0},"4":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":5,"docs":{"67":{"tf":1.0},"80":{"tf":2.8284271247461903},"82":{"tf":1.4142135623730951},"84":{"tf":2.0},"87":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"114":{"tf":1.7320508075688772}}}},"i":{"df":1,"docs":{"88":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":8,"docs":{"109":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"d":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"122":{"tf":1.0},"125":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"45":{"tf":1.0},"53":{"tf":1.0},"80":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":11,"docs":{"109":{"tf":2.23606797749979},"15":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"38":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"69":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":19,"docs":{"102":{"tf":1.7320508075688772},"103":{"tf":1.0},"104":{"tf":2.449489742783178},"106":{"tf":2.0},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"29":{"tf":2.0},"38":{"tf":2.0},"52":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":2.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"88":{"tf":3.0},"89":{"tf":1.0},"92":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"c":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"u":{"df":2,"docs":{"19":{"tf":1.0},"25":{"tf":1.0}},"i":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"42":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.0}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"35":{"tf":1.0}}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}},"r":{"df":2,"docs":{"45":{"tf":1.0},"76":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"132":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"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":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"67":{"tf":1.0},"68":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"47":{"tf":2.0},"49":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"127":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0}},"e":{"=":{"1":{"df":2,"docs":{"16":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"116":{"tf":1.4142135623730951},"51":{"tf":1.0},"7":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"74":{"tf":1.4142135623730951},"84":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"114":{"tf":1.0},"92":{"tf":1.0}}}},"df":41,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"116":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":2.0},"20":{"tf":3.1622776601683795},"26":{"tf":3.1622776601683795},"27":{"tf":1.0},"29":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"41":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"45":{"tf":2.0},"53":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":2.0},"80":{"tf":4.58257569495584},"81":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":2.449489742783178},"85":{"tf":1.7320508075688772},"87":{"tf":2.6457513110645907},"88":{"tf":2.23606797749979},"91":{"tf":1.0},"92":{"tf":2.0},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":4,"docs":{"80":{"tf":2.0},"82":{"tf":1.0},"87":{"tf":3.3166247903554},"88":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":3,"docs":{"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"v":{"1":{"4":{".":{"1":{"9":{".":{"0":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"1":{"8":{".":{"0":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"87":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":5,"docs":{"103":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"43":{"tf":1.0},"85":{"tf":1.0}}}},"r":{"df":1,"docs":{"109":{"tf":1.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"106":{"tf":1.0},"29":{"tf":1.4142135623730951},"33":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"13":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"13":{"tf":2.23606797749979},"46":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0}}}}},"u":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"i":{"a":{"df":8,"docs":{"109":{"tf":2.0},"110":{"tf":1.0},"111":{"tf":1.0},"13":{"tf":1.0},"43":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"42":{"tf":1.4142135623730951},"43":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"109":{"tf":1.0},"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"32":{"tf":1.0}}},"/":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"32":{"tf":1.0},"38":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":4,"docs":{"11":{"tf":1.0},"32":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"75":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"78":{"tf":2.449489742783178},"80":{"tf":7.810249675906654},"87":{"tf":1.7320508075688772}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}}}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"85":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"4":{"tf":1.0},"80":{"tf":1.7320508075688772},"84":{"tf":2.0},"96":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"33":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951}}}},"t":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"92":{"tf":1.7320508075688772},"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":0,"docs":{}},"y":{"df":9,"docs":{"0":{"tf":1.0},"133":{"tf":1.0},"41":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.0},"85":{"tf":1.0},"87":{"tf":1.7320508075688772}}}},"df":1,"docs":{"32":{"tf":1.0}},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.0}}}},"r":{"df":1,"docs":{"80":{"tf":1.0}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"/":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"5":{"tf":1.4142135623730951}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"'":{"df":5,"docs":{"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"78":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.4142135623730951}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"87":{"tf":1.0}}}},"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"[":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"85":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}}}},"df":42,"docs":{"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"109":{"tf":2.449489742783178},"110":{"tf":2.0},"111":{"tf":1.0},"113":{"tf":2.449489742783178},"114":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":3.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":3.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":2.0},"78":{"tf":1.4142135623730951},"80":{"tf":4.0},"81":{"tf":2.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":2.0},"85":{"tf":2.0},"87":{"tf":3.4641016151377544},"88":{"tf":3.1622776601683795},"89":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"125":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"55":{"tf":1.0},"57":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":3,"docs":{"43":{"tf":1.0},"6":{"tf":1.0},"80":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"73":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"106":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"88":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"47":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"114":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"38":{"tf":1.0},"74":{"tf":1.0},"84":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"18":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"76":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"d":{"df":5,"docs":{"109":{"tf":1.4142135623730951},"114":{"tf":1.0},"73":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":12,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"6":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"30":{"tf":1.0},"35":{"tf":1.0}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"14":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"88":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"s":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"38":{"tf":1.4142135623730951}},"i":{"c":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"d":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"76":{"tf":1.0},"88":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"109":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"67":{"tf":1.0},"87":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"x":{".":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"z":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}}},"8":{"6":{"_":{"6":{"4":{"df":2,"docs":{"47":{"tf":2.0},"49":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"40":{"tf":1.0},"45":{"tf":2.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"18":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"83":{"tf":1.0}},"x":{"df":1,"docs":{"104":{"tf":1.0}},"x":{"df":1,"docs":{"75":{"tf":1.0}},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"v":{"df":1,"docs":{"51":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}}},"z":{"df":1,"docs":{"131":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"breadcrumbs":{"root":{"0":{".":{"1":{".":{"0":{"df":1,"docs":{"124":{"tf":1.7320508075688772}}},"1":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}},"0":{":":{"0":{"7":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":1,"docs":{"35":{"tf":1.4142135623730951}},"x":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"4":{"0":{"d":{"0":{"d":{"b":{"4":{"b":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{".":{"0":{".":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"35":{"tf":1.0}}},"6":{":":{"0":{"0":{":":{"0":{"7":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"13":{"tf":2.8284271247461903}}},"df":3,"docs":{"109":{"tf":1.7320508075688772},"45":{"tf":1.0},"80":{"tf":1.0}}},"2":{"/":{"3":{"/":{"4":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"2":{"2":{"0":{"9":{"1":{"9":{"1":{"7":{"1":{"6":{"0":{"8":{"6":{"2":{"9":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"4":{"1":{"6":{"2":{"4":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"1":{"9":{"8":{"6":{"1":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"3":{"0":{"0":{"2":{"2":{"0":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"2":{"9":{"7":{"6":{"5":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{"3":{"2":{"7":{"7":{"2":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"2":{"6":{"5":{"6":{"4":{"6":{"8":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"5":{"5":{"3":{"2":{"1":{"5":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{"5":{"0":{"7":{"3":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"2":{"3":{"2":{"2":{"8":{"1":{"4":{"6":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"5":{"8":{"3":{"2":{"7":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"2":{"0":{"7":{"3":{"9":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"1":{"8":{"0":{"9":{"1":{"5":{"3":{"2":{"6":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"1":{"1":{"0":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{"df":1,"docs":{"35":{"tf":1.0}}},"2":{"df":1,"docs":{"35":{"tf":1.0}}},"3":{"df":1,"docs":{"35":{"tf":1.0}}},"4":{"df":1,"docs":{"35":{"tf":1.0}}},"5":{"df":1,"docs":{"35":{"tf":1.0}}},"6":{"df":1,"docs":{"35":{"tf":1.0}}},"7":{"df":1,"docs":{"35":{"tf":1.0}}},"_":{"1":{"1":{".":{"3":{"2":{".":{"0":{"6":{"_":{"9":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"3":{"a":{"6":{"3":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"109":{"tf":1.0},"80":{"tf":1.0}}},"3":{"1":{"5":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"83":{"tf":1.0}}},"5":{"7":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"3":{"8":{".":{"0":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{".":{"0":{"df":2,"docs":{"72":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"9":{"2":{"2":{"9":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"47":{"tf":1.0}}},"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"52":{"tf":1.0}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"_":{".":{"d":{"(":{"_":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"_":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"(":{"_":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"_":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"29":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"_":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"0":{"_":{"_":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":2.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"a":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}}},".":{"df":0,"docs":{},"k":{".":{"a":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"6":{"4":{"df":2,"docs":{"47":{"tf":2.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"65":{"tf":1.0},"80":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"v":{"df":7,"docs":{"104":{"tf":1.0},"109":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.0},"69":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"74":{"tf":1.0},"75":{"tf":2.0},"88":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"104":{"tf":1.0},"88":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"80":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"51":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"109":{"tf":1.0},"65":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"80":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"46":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"df":7,"docs":{"103":{"tf":1.0},"109":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":2.23606797749979},"52":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"=":{"0":{"df":0,"docs":{},"x":{"7":{"0":{"0":{"0":{"0":{"c":{"c":{"6":{"6":{"5":{"6":{"0":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"51":{"tf":1.0}}}}}}},"df":4,"docs":{"103":{"tf":1.0},"110":{"tf":1.0},"51":{"tf":1.0},"80":{"tf":1.0}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"75":{"tf":1.0},"80":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"80":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"101":{"tf":1.4142135623730951},"105":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.4142135623730951},"75":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"{":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"|":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"36":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"4":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":3,"docs":{"53":{"tf":1.0},"80":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"109":{"tf":1.0},"5":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.4142135623730951}},"i":{"df":3,"docs":{"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0}}}},"z":{"df":3,"docs":{"11":{"tf":1.0},"32":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"103":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"p":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":1,"docs":{"45":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"38":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"80":{"tf":1.0}},"i":{"df":0,"docs":{},"x":{"df":6,"docs":{"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951}},"i":{"c":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.0}}},"df":7,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"78":{"tf":2.23606797749979},"80":{"tf":2.0},"84":{"tf":1.4142135623730951}}},"y":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"109":{"tf":2.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"114":{"tf":1.0},"51":{"tf":1.0}}}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"109":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"70":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"g":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"80":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"l":{"df":3,"docs":{"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.7320508075688772},"133":{"tf":1.0}}},"s":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951}}}},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"76":{"tf":1.0},"81":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"76":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"76":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"110":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"81":{"tf":2.449489742783178},"84":{"tf":3.1622776601683795},"87":{"tf":1.7320508075688772},"88":{"tf":1.0}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"109":{"tf":2.23606797749979},"92":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}}},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":2,"docs":{"85":{"tf":2.8284271247461903},"88":{"tf":2.449489742783178}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"38":{"tf":2.0}}},"df":0,"docs":{}}}},"df":2,"docs":{"38":{"tf":2.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"103":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0}}}},"df":1,"docs":{"46":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"8":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}}},"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"80":{"tf":1.0},"87":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{")":{"[":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"1":{"1":{"8":{"0":{"2":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":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":{"73":{"tf":1.0},"75":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"104":{"tf":1.7320508075688772}}}},"df":2,"docs":{"104":{"tf":1.0},"106":{"tf":2.0}}},"s":{"df":0,"docs":{},"e":{"df":9,"docs":{"110":{"tf":1.0},"114":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.0},"90":{"tf":1.0}}},"i":{"c":{"df":6,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"63":{"tf":1.0},"80":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":2,"docs":{"133":{"tf":1.0},"53":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"102":{"tf":1.0},"35":{"tf":1.0},"42":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"{":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"|":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"20":{"tf":2.449489742783178},"26":{"tf":2.449489742783178},"84":{"tf":1.0},"87":{"tf":2.0},"95":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"j":{"df":1,"docs":{"48":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.0},"51":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"104":{"tf":1.0},"36":{"tf":1.7320508075688772},"69":{"tf":1.0},"93":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"85":{"tf":1.0},"97":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"38":{"tf":1.0},"45":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.0}}}}},"d":{"df":4,"docs":{"114":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":3,"docs":{"72":{"tf":1.0},"80":{"tf":2.449489742783178},"88":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"80":{"tf":3.1622776601683795},"87":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"n":{"d":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"127":{"tf":1.0}},"h":{"df":3,"docs":{"76":{"tf":1.0},"84":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"40":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"113":{"tf":1.4142135623730951},"51":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"64":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"u":{"df":1,"docs":{"35":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}}}}},"g":{"df":3,"docs":{"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"51":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{":":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"32":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"j":{"df":1,"docs":{"37":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":33,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.7320508075688772},"14":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"20":{"tf":2.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"26":{"tf":2.0},"29":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":2.0},"34":{"tf":1.0},"35":{"tf":2.449489742783178},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":2.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":2.0},"9":{"tf":2.0}}},"df":0,"docs":{},"t":{"df":4,"docs":{"45":{"tf":1.0},"47":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"87":{"tf":1.0}}}},"d":{"df":0,"docs":{},"l":{"df":5,"docs":{"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}},"df":4,"docs":{"110":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"87":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"c":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"29":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":7,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"46":{"tf":1.0},"49":{"tf":2.449489742783178}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":4,"docs":{"16":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"18":{"tf":1.7320508075688772},"20":{"tf":3.1622776601683795},"24":{"tf":1.7320508075688772},"26":{"tf":3.1622776601683795},"28":{"tf":2.449489742783178},"30":{"tf":1.7320508075688772},"52":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"48":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"103":{"tf":1.0},"104":{"tf":2.449489742783178},"105":{"tf":1.0},"106":{"tf":1.0},"28":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":5,"docs":{"38":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"74":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"n":{"c":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":13,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"19":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.0},"51":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":2.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"81":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":2.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"a":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":10,"docs":{"109":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"29":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":1.0},"41":{"tf":1.0},"51":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{"/":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"40":{"tf":1.0},"42":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":3,"docs":{"110":{"tf":2.23606797749979},"116":{"tf":1.0},"80":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"110":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"109":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"110":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"i":{"df":1,"docs":{"51":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"133":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"104":{"tf":1.0},"109":{"tf":2.23606797749979},"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"109":{"tf":2.0},"90":{"tf":1.0}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"109":{"tf":1.0}}}}},"df":2,"docs":{"30":{"tf":1.0},"88":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"35":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"=":{"2":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}},"df":22,"docs":{"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":4.123105625617661},"110":{"tf":2.23606797749979},"111":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":2.23606797749979},"18":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"5":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"80":{"tf":5.5677643628300215},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":2.6457513110645907},"88":{"tf":2.6457513110645907},"9":{"tf":1.4142135623730951},"90":{"tf":1.0},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"d":{"b":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"110":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"13":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.0},"97":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"j":{"df":2,"docs":{"104":{"tf":1.0},"105":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"80":{"tf":1.0},"85":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"5":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.4142135623730951}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"109":{"tf":1.4142135623730951},"18":{"tf":1.0},"24":{"tf":1.0},"64":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":11,"docs":{"109":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"80":{"tf":3.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}}},"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":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"45":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"x":{"df":3,"docs":{"67":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"111":{"tf":1.0},"116":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"c":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}}},"a":{"df":1,"docs":{"96":{"tf":1.0}}},"b":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"/":{"a":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":6,"docs":{"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":2.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":2.23606797749979},"88":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"63":{"tf":1.0},"80":{"tf":2.23606797749979},"82":{"tf":1.0},"87":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"80":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"105":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"109":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"114":{"tf":1.0},"32":{"tf":1.0},"38":{"tf":2.8284271247461903},"78":{"tf":1.7320508075688772},"80":{"tf":2.449489742783178},"81":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"x":{":":{"'":{",":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"113":{"tf":1.7320508075688772}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"108":{"tf":1.4142135623730951},"109":{"tf":2.0},"111":{"tf":1.0},"113":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"106":{"tf":1.4142135623730951},"109":{"tf":3.1622776601683795},"114":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":3.872983346207417}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"65":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"28":{"tf":1.7320508075688772},"53":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"109":{"tf":1.0},"114":{"tf":1.0},"29":{"tf":1.0},"61":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"92":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"109":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"5":{"tf":1.0}},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"0":{"tf":1.7320508075688772},"3":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"49":{"tf":1.0},"5":{"tf":1.4142135623730951},"6":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"78":{"tf":1.0},"87":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.0}}},"t":{"df":7,"docs":{"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"16":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"67":{"tf":1.0}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"38":{"tf":1.0},"92":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"113":{"tf":1.0},"127":{"tf":1.0},"30":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"109":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"u":{".":{"2":{"0":{"2":{"3":{"0":{"5":{"2":{"2":{".":{"1":{"5":{"4":{"6":{"5":{"8":{".":{"1":{"4":{"5":{"7":{"7":{".":{"0":{".":{"0":{"0":{"1":{".":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"44":{"tf":1.4142135623730951},"45":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"35":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":16,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.4142135623730951},"116":{"tf":1.0},"127":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":3.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"101":{"tf":1.4142135623730951},"110":{"tf":1.0},"88":{"tf":2.23606797749979},"92":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"78":{"tf":2.449489742783178},"80":{"tf":4.0},"81":{"tf":2.6457513110645907},"83":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.23606797749979},"92":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"!":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"103":{"tf":1.0},"109":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"21":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"4":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"w":{"d":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951}}}}}},"t":{"a":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.0}}}}},"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}},"df":2,"docs":{"87":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"76":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"48":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"114":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":11,"docs":{"31":{"tf":1.7320508075688772},"32":{"tf":2.449489742783178},"33":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":2.23606797749979},"37":{"tf":2.0},"38":{"tf":2.23606797749979},"39":{"tf":2.23606797749979},"41":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}},"g":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"80":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":11,"docs":{"106":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"29":{"tf":1.0},"38":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"109":{"tf":1.7320508075688772},"113":{"tf":1.0},"29":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":2.8284271247461903},"88":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"80":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"v":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"c":{"df":0,"docs":{},"m":{"d":{"/":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"@":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":2.0},"53":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"p":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"[":{"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"109":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"df":36,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"103":{"tf":2.23606797749979},"104":{"tf":2.8284271247461903},"105":{"tf":1.4142135623730951},"106":{"tf":3.0},"107":{"tf":1.7320508075688772},"108":{"tf":2.0},"109":{"tf":3.872983346207417},"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.7320508075688772},"119":{"tf":1.0},"120":{"tf":1.0},"28":{"tf":1.4142135623730951},"71":{"tf":1.0},"8":{"tf":2.0},"85":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":3.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":2.449489742783178},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"92":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"103":{"tf":1.0},"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"85":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":4,"docs":{"104":{"tf":1.0},"73":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"113":{"tf":1.0},"124":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"41":{"tf":1.0},"65":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}},"v":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}}},"df":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":{"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":4,"docs":{"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":7,"docs":{"103":{"tf":1.0},"113":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"6":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"102":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"133":{"tf":1.0},"5":{"tf":1.0},"88":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"29":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"28":{"tf":2.23606797749979},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"45":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"36":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.0}}}}},"o":{"c":{"1":{"df":1,"docs":{"75":{"tf":1.0}}},"2":{"df":1,"docs":{"75":{"tf":1.0}}},"df":7,"docs":{"105":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.7320508075688772},"5":{"tf":1.0},"6":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":1,"docs":{"80":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":6,"docs":{"109":{"tf":1.4142135623730951},"18":{"tf":1.0},"24":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"110":{"tf":2.0},"80":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.0},"84":{"tf":1.0}}},"t":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"102":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"84":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":4,"docs":{"104":{"tf":1.0},"44":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":2.0}}}},"2":{"df":4,"docs":{"27":{"tf":2.23606797749979},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"h":{"df":20,"docs":{"102":{"tf":1.0},"106":{"tf":1.7320508075688772},"109":{"tf":1.7320508075688772},"110":{"tf":2.23606797749979},"111":{"tf":1.0},"116":{"tf":1.0},"133":{"tf":1.0},"30":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.0},"82":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.7320508075688772},"93":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"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":4,"docs":{"104":{"tf":1.7320508075688772},"109":{"tf":1.0},"113":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"114":{"tf":2.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"110":{"tf":1.0},"34":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"113":{"tf":1.0},"53":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}}}},"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":8,"docs":{"103":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.4142135623730951},"28":{"tf":1.0},"45":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"133":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"111":{"tf":1.4142135623730951},"51":{"tf":1.0},"88":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"38":{"tf":1.0}}},"y":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"13":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.4142135623730951}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"41":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}},"s":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":5,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":2.449489742783178},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"109":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"53":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}},"t":{"c":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":9,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"104":{"tf":1.7320508075688772},"65":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"109":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.4142135623730951}},"t":{"df":2,"docs":{"33":{"tf":1.0},"43":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"40":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":22,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"13":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":2.449489742783178},"69":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":2.0},"82":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"c":{"_":{"b":{"a":{"d":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"80":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"102":{"tf":1.0},"37":{"tf":1.0},"67":{"tf":2.0},"69":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"29":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}}},"t":{"df":1,"docs":{"45":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"81":{"tf":1.0},"87":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"41":{"tf":1.0}}},"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"81":{"tf":1.4142135623730951}},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"81":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"109":{"tf":1.0},"55":{"tf":1.0},"72":{"tf":1.0},"90":{"tf":1.0}}}},"n":{"df":9,"docs":{"104":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"40":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":7,"docs":{"105":{"tf":1.0},"106":{"tf":2.0},"109":{"tf":1.0},"114":{"tf":2.0},"29":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"106":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"113":{"tf":2.0},"35":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"109":{"tf":1.7320508075688772},"87":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":5,"docs":{"11":{"tf":1.0},"32":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.6457513110645907},"84":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":2,"docs":{"78":{"tf":1.0},"80":{"tf":3.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"a":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"73":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}},"t":{"df":1,"docs":{"109":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"16":{"tf":1.0},"22":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":1,"docs":{"88":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"127":{"tf":1.0},"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":3,"docs":{"106":{"tf":1.0},"110":{"tf":1.0},"80":{"tf":1.7320508075688772}}}},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"83":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"102":{"tf":1.0},"104":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":22,"docs":{"103":{"tf":1.7320508075688772},"109":{"tf":1.0},"20":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"29":{"tf":2.23606797749979},"38":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":2.0},"54":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":3.872983346207417},"81":{"tf":2.0},"82":{"tf":1.0},"84":{"tf":3.0},"87":{"tf":2.23606797749979},"88":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"75":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{".":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"19":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"87":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"106":{"tf":1.0},"110":{"tf":1.7320508075688772},"113":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"80":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}}},"d":{"df":9,"docs":{"102":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.0},"81":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"29":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"0":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.7320508075688772},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"67":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"37":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"82":{"tf":1.0}}},"x":{"df":4,"docs":{"18":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.0},"51":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":3.4641016151377544}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"l":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"65":{"tf":1.0},"87":{"tf":2.0}}}}},"n":{"df":2,"docs":{"29":{"tf":1.0},"35":{"tf":1.0}},"m":{"df":1,"docs":{"13":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"109":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"108":{"tf":1.0},"113":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"28":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":16,"docs":{"114":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.7320508075688772},"47":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}},"o":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"104":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":5,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":3.605551275463989},"109":{"tf":2.0},"114":{"tf":2.449489742783178},"95":{"tf":1.4142135623730951}}},"r":{"c":{"df":1,"docs":{"80":{"tf":2.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"51":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"85":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"133":{"tf":1.0},"46":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"80":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"88":{"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":3,"docs":{"109":{"tf":3.0},"75":{"tf":2.0},"88":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"35":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"106":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":4,"docs":{"80":{"tf":2.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":16,"docs":{"109":{"tf":1.0},"114":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"40":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"133":{"tf":2.0}}}}},"df":4,"docs":{"44":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":15,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":2.23606797749979},"110":{"tf":2.449489742783178},"113":{"tf":1.7320508075688772},"114":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"44":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":2.0},"88":{"tf":2.449489742783178}}}}},"t":{"df":9,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"103":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}},"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":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"1":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"80":{"tf":1.0},"87":{"tf":1.0}},"n":{"df":4,"docs":{"109":{"tf":1.7320508075688772},"111":{"tf":1.0},"116":{"tf":1.0},"87":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"73":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":6,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"32":{"tf":1.0},"80":{"tf":2.449489742783178},"81":{"tf":1.0},"88":{"tf":1.4142135623730951}},"e":{"df":2,"docs":{"5":{"tf":1.0},"88":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"84":{"tf":1.0}}}},"o":{"d":{"df":10,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"3":{"tf":1.7320508075688772},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"h":{"df":5,"docs":{"101":{"tf":1.4142135623730951},"104":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"93":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"78":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"5":{"tf":1.4142135623730951},"6":{"tf":2.0},"64":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"87":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"80":{"tf":2.23606797749979},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"53":{"tf":1.0}},"l":{"df":10,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":3.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"r":{"d":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":4,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.0},"109":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"106":{"tf":1.0},"109":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":9,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":1.4142135623730951},"64":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.7320508075688772}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":4,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.0},"88":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":12,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"13":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"109":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.7320508075688772}}}}},"o":{"d":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":2,"docs":{"110":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"df":2,"docs":{"111":{"tf":1.7320508075688772},"95":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"#":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"110":{"tf":1.0},"85":{"tf":1.0}}}}}},"i":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}}},".":{"df":1,"docs":{"116":{"tf":1.0}}},"6":{"8":{"6":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":2,"docs":{"106":{"tf":1.0},"37":{"tf":1.0}},"e":{"a":{"df":4,"docs":{"109":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"87":{"tf":1.0}},"l":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":6,"docs":{"102":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"40":{"tf":1.0},"63":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"80":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":13,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"41":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":2.23606797749979},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.7320508075688772}}}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"81":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{".":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":16,"docs":{"104":{"tf":2.0},"106":{"tf":3.4641016151377544},"109":{"tf":2.449489742783178},"116":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"53":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":2.0},"80":{"tf":6.082762530298219},"83":{"tf":2.23606797749979},"84":{"tf":1.0},"87":{"tf":2.449489742783178},"88":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"df":1,"docs":{"109":{"tf":1.0}}},"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"40":{"tf":1.0},"85":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":10,"docs":{"16":{"tf":1.0},"22":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"!":{"=":{"!":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"j":{"df":3,"docs":{"104":{"tf":2.449489742783178},"116":{"tf":1.0},"96":{"tf":1.0}},"s":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"#":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"75":{"tf":1.4142135623730951}}}},"i":{"c":{"df":4,"docs":{"103":{"tf":1.0},"110":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":2,"docs":{"43":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":4,"docs":{"33":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"45":{"tf":1.0},"51":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"109":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"42":{"tf":1.0},"88":{"tf":1.0}}}}},"r":{"a":{"df":3,"docs":{"18":{"tf":1.0},"24":{"tf":1.0},"5":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"109":{"tf":2.0},"114":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"i":{"df":2,"docs":{"32":{"tf":1.0},"88":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"102":{"tf":1.7320508075688772},"104":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"80":{"tf":2.8284271247461903},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772},"87":{"tf":3.1622776601683795},"88":{"tf":2.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"11":{"tf":1.4142135623730951},"13":{"tf":3.0},"32":{"tf":2.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"8":{"tf":2.6457513110645907}}},"n":{"c":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"53":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"33":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":2.6457513110645907}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"80":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.0},"4":{"tf":1.0},"50":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}},"n":{"df":9,"docs":{"103":{"tf":1.4142135623730951},"113":{"tf":1.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"69":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":11,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":7,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"50":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"45":{"tf":1.4142135623730951},"63":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"5":{"tf":1.0},"6":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":11,"docs":{"0":{"tf":1.4142135623730951},"109":{"tf":1.0},"3":{"tf":2.0},"4":{"tf":2.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0}}}}},"t":{"'":{"df":19,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"110":{"tf":2.0},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"38":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.4142135623730951},"76":{"tf":1.0},"78":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.7320508075688772}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"110":{"tf":1.7320508075688772},"122":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":5,"docs":{"102":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"df":8,"docs":{"106":{"tf":1.0},"113":{"tf":1.0},"36":{"tf":1.7320508075688772},"76":{"tf":1.0},"80":{"tf":3.4641016151377544},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"88":{"tf":2.449489742783178}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}},"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}}},"o":{"b":{"df":2,"docs":{"110":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":4.0}}}},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"75":{"tf":1.0}},"s":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"#":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":10,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"44":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"80":{"tf":2.6457513110645907},"87":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"104":{"tf":1.0},"42":{"tf":1.0},"76":{"tf":1.0}}}},"x":{"df":2,"docs":{"82":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":2,"docs":{"51":{"tf":1.0},"63":{"tf":1.0}}}},"y":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"n":{"d":{"df":11,"docs":{"110":{"tf":1.0},"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"84":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"114":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":5,"docs":{"110":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":7,"docs":{"127":{"tf":1.7320508075688772},"3":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"80":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"80":{"tf":1.0}},"r":{"df":8,"docs":{"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"114":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"46":{"tf":1.0},"47":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}}}}}},":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":2.0}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"2":{"0":{"2":{"3":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":4,"docs":{"32":{"tf":1.4142135623730951},"35":{"tf":1.0},"38":{"tf":2.0},"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":1.0},"51":{"tf":1.4142135623730951}}}},"v":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"80":{"tf":2.0},"81":{"tf":2.0},"87":{"tf":1.4142135623730951}}}},"t":{"'":{"df":5,"docs":{"109":{"tf":1.0},"116":{"tf":1.0},"37":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":15,"docs":{"0":{"tf":1.0},"100":{"tf":1.4142135623730951},"28":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":3,"docs":{"110":{"tf":1.0},"19":{"tf":1.0},"25":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"k":{"df":3,"docs":{"110":{"tf":1.0},"51":{"tf":1.0},"88":{"tf":1.0}}},"t":{":":{"df":0,"docs":{},"j":{"df":1,"docs":{"51":{"tf":1.0}}},"r":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"47":{"tf":2.0},"49":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"54":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"72":{"tf":1.0},"80":{"tf":2.23606797749979},"88":{"tf":1.4142135623730951}}}}}},"l":{"d":{"b":{"df":2,"docs":{"35":{"tf":2.449489742783178},"38":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"a":{"d":{"df":5,"docs":{"68":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"!":{".":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"74":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"'":{"df":1,"docs":{"88":{"tf":1.0}}},"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"80":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"?":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"!":{".":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"74":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"103":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}}}}}},"df":34,"docs":{"102":{"tf":2.23606797749979},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"44":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":3.1622776601683795},"64":{"tf":1.4142135623730951},"65":{"tf":3.3166247903554},"66":{"tf":1.0},"67":{"tf":4.242640687119285},"68":{"tf":1.4142135623730951},"69":{"tf":3.3166247903554},"71":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":2.449489742783178},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":3.0},"79":{"tf":1.0},"80":{"tf":8.18535277187245},"81":{"tf":2.6457513110645907},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":3.605551275463989},"85":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"87":{"tf":6.6332495807108},"88":{"tf":3.872983346207417},"89":{"tf":2.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"s":{"!":{".":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"51":{"tf":1.0}}},"t":{"df":6,"docs":{"103":{"tf":1.0},"133":{"tf":1.0},"45":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"o":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"[":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"]":{"!":{"=":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"72":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":7,"docs":{"106":{"tf":1.0},"109":{"tf":1.4142135623730951},"113":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"69":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}}},"s":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}},"t":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"w":{"df":1,"docs":{"100":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"13":{"tf":2.0}}}},"m":{"a":{"c":{"df":2,"docs":{"40":{"tf":1.0},"45":{"tf":1.7320508075688772}},"o":{"df":1,"docs":{"37":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"109":{"tf":1.4142135623730951},"111":{"tf":1.0},"19":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"105":{"tf":1.4142135623730951},"5":{"tf":1.0},"51":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":14,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"13":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"#":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"50":{"tf":1.0},"87":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":2,"docs":{"106":{"tf":1.0},"38":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"k":{"!":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":4,"docs":{"69":{"tf":1.0},"75":{"tf":1.0},"92":{"tf":1.7320508075688772},"95":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"102":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":4.242640687119285},"82":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"87":{"tf":3.4641016151377544},"88":{"tf":2.449489742783178},"96":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"75":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"106":{"tf":1.0},"109":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"38":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"73":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0}},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"67":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"133":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"127":{"tf":1.0},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"110":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.23606797749979}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"80":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"78":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":1,"docs":{"53":{"tf":2.449489742783178}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}},"s":{"c":{"df":2,"docs":{"126":{"tf":1.7320508075688772},"127":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"92":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"103":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"63":{"tf":1.0}}}}},"x":{"df":4,"docs":{"36":{"tf":2.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"39":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"109":{"tf":1.0}},"e":{"df":4,"docs":{"103":{"tf":1.0},"113":{"tf":1.0},"37":{"tf":1.0},"95":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"109":{"tf":2.0}},"i":{"df":7,"docs":{"109":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"67":{"tf":1.0},"80":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":26,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":3.0},"103":{"tf":2.0},"104":{"tf":2.0},"105":{"tf":2.23606797749979},"106":{"tf":3.872983346207417},"109":{"tf":2.0},"110":{"tf":2.0},"111":{"tf":2.0},"114":{"tf":1.0},"116":{"tf":1.7320508075688772},"20":{"tf":1.0},"26":{"tf":1.0},"67":{"tf":1.7320508075688772},"74":{"tf":1.0},"76":{"tf":2.23606797749979},"78":{"tf":1.7320508075688772},"80":{"tf":2.449489742783178},"81":{"tf":2.449489742783178},"84":{"tf":1.4142135623730951},"87":{"tf":2.23606797749979},"88":{"tf":4.358898943540674},"89":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772}},"e":{"'":{"df":1,"docs":{"110":{"tf":1.0}}},".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"114":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":3.3166247903554},"81":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":8,"docs":{"104":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.0}},"e":{"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":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"104":{"tf":2.0},"105":{"tf":1.0},"106":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":14,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":2.23606797749979},"113":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"111":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"85":{"tf":1.0},"88":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"47":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"28":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":6,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"29":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":2.449489742783178}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"32":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":8,"docs":{"63":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":2.23606797749979},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"df":1,"docs":{"80":{"tf":1.4142135623730951}},"e":{"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":{"105":{"tf":1.0},"109":{"tf":1.0},"29":{"tf":1.0},"38":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":13,"docs":{"123":{"tf":1.0},"125":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"19":{"tf":1.0},"25":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}}}}}},"w":{"df":9,"docs":{"109":{"tf":2.0},"127":{"tf":1.0},"29":{"tf":1.0},"51":{"tf":1.7320508075688772},"6":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}}},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"46":{"tf":1.0},"48":{"tf":2.0}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":13,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":3.0},"15":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"51":{"tf":1.0},"7":{"tf":1.0},"76":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772},"9":{"tf":1.0}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"df":11,"docs":{"13":{"tf":1.0},"17":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"32":{"tf":1.0},"35":{"tf":2.23606797749979},"38":{"tf":3.1622776601683795},"44":{"tf":1.0},"63":{"tf":1.0},"8":{"tf":1.0}},"j":{"df":2,"docs":{"40":{"tf":1.0},"44":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}},"n":{"df":1,"docs":{"88":{"tf":1.0}},"e":{"df":1,"docs":{"80":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":11,"docs":{"102":{"tf":1.0},"116":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"45":{"tf":1.0},"63":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"88":{"tf":3.1622776601683795}},"e":{"#":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}},"y":{"#":{"c":{"df":0,"docs":{},"r":{"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":{}}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"76":{"tf":1.7320508075688772},"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":1,"docs":{"78":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"df":4,"docs":{"37":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.0},"8":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"85":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"106":{"tf":2.0},"108":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"13":{"tf":2.23606797749979}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"k":{"df":1,"docs":{"85":{"tf":1.0}}},"l":{"d":{"df":3,"docs":{"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":2.0},"80":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"c":{"df":3,"docs":{"35":{"tf":1.0},"45":{"tf":1.0},"85":{"tf":1.0}}},"df":7,"docs":{"109":{"tf":1.0},"116":{"tf":1.0},"15":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"29":{"tf":1.0},"67":{"tf":1.0},"81":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"29":{"tf":1.0}}}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"2":{"4":{"4":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":8,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"69":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"84":{"tf":2.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"103":{"tf":1.0},"29":{"tf":1.0},"43":{"tf":1.0},"52":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.23606797749979},"78":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"109":{"tf":2.0},"69":{"tf":1.4142135623730951},"80":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"113":{"tf":1.0},"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"67":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"76":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"t":{"df":6,"docs":{"109":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"45":{"tf":2.0},"84":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"85":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"84":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"4":{"tf":1.0},"87":{"tf":1.0}}}}}}}}},"x":{"c":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"34":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"19":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"5":{"tf":1.0},"51":{"tf":2.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"35":{"tf":1.7320508075688772},"45":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"46":{"tf":1.0},"55":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}},"r":{"df":1,"docs":{"109":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"109":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}},"s":{"df":7,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"35":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":3,"docs":{"106":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.449489742783178}}}}},"t":{"(":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":11,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.7320508075688772},"18":{"tf":1.0},"24":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.449489742783178},"82":{"tf":1.7320508075688772},"86":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.0}},"i":{"df":2,"docs":{"82":{"tf":1.0},"84":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":14,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"108":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"109":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":1.0}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":10,"docs":{"102":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"29":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":2.0},"80":{"tf":3.605551275463989},"88":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"29":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951}}}}}}}}},"c":{"df":1,"docs":{"47":{"tf":1.7320508075688772}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":2,"docs":{"72":{"tf":1.0},"88":{"tf":1.0}}}},"r":{"df":2,"docs":{"109":{"tf":1.0},"125":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"40":{"tf":1.0},"44":{"tf":1.0},"63":{"tf":1.7320508075688772},"69":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"133":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"65":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.0},"67":{"tf":1.0},"69":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"122":{"tf":1.0},"125":{"tf":1.0}}},"y":{"df":1,"docs":{"133":{"tf":1.0}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"27":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"1":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"103":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"114":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"78":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":3.1622776601683795}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"|":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"81":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"m":{"@":{"7":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"19":{"tf":1.7320508075688772},"25":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"45":{"tf":1.0},"51":{"tf":1.7320508075688772},"8":{"tf":2.0},"9":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"28":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"30":{"tf":1.0},"38":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"69":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"92":{"tf":1.0}}}}},"df":1,"docs":{"84":{"tf":1.0}}}}},"r":{"df":6,"docs":{"127":{"tf":1.4142135623730951},"49":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":2.0},"62":{"tf":1.4142135623730951},"75":{"tf":1.0}},"e":{"df":3,"docs":{"102":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"105":{"tf":1.0},"54":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"87":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"37":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"106":{"tf":1.0},"108":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772}}}}},"s":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.4142135623730951}},"s":{"df":3,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.0},"43":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"109":{"tf":1.0},"4":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"53":{"tf":1.4142135623730951},"73":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"110":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"45":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"113":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"df":8,"docs":{"102":{"tf":1.0},"110":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}}}}}}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"42":{"tf":1.0},"45":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"35":{"tf":1.7320508075688772}},"f":{"df":1,"docs":{"44":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"40":{"tf":2.23606797749979},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":2.449489742783178},"45":{"tf":2.23606797749979}},"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":{"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"35":{"tf":1.0},"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"37":{"tf":1.0},"4":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":7,"docs":{"28":{"tf":2.0},"29":{"tf":1.7320508075688772},"3":{"tf":1.0},"30":{"tf":1.0},"45":{"tf":1.7320508075688772},"54":{"tf":1.0},"80":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"}":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"80":{"tf":2.23606797749979},"82":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"75":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":10,"docs":{"102":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":2.23606797749979},"4":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.7320508075688772},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"80":{"tf":2.0}}}},"df":0,"docs":{}}}},"u":{"b":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"46":{"tf":1.0},"49":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"51":{"tf":2.23606797749979}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"68":{"tf":1.0},"75":{"tf":1.4142135623730951},"82":{"tf":1.0},"88":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.0},"75":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"49":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":6,"docs":{"111":{"tf":1.0},"114":{"tf":1.0},"45":{"tf":1.0},"63":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"106":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"w":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"78":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}},"df":1,"docs":{"35":{"tf":1.4142135623730951}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.0}}},"t":{"df":1,"docs":{"87":{"tf":1.0}}}},"d":{"df":4,"docs":{"106":{"tf":1.0},"51":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":1.7320508075688772}}},"df":0,"docs":{},"l":{"df":9,"docs":{"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"76":{"tf":1.0},"80":{"tf":2.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"92":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"35":{"tf":1.0},"63":{"tf":1.4142135623730951}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"110":{"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":7,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":2,"docs":{"113":{"tf":1.0},"45":{"tf":2.23606797749979}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"114":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"75":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":2,"docs":{"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"64":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"75":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"108":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.4142135623730951},"38":{"tf":1.0},"66":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":2.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"110":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"88":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"102":{"tf":1.0},"84":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"80":{"tf":1.0}},"p":{"df":1,"docs":{"92":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"29":{"tf":1.0},"69":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"20":{"tf":1.0},"26":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}}}},"df":2,"docs":{"74":{"tf":1.0},"87":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":8,"docs":{"124":{"tf":2.449489742783178},"125":{"tf":3.1622776601683795},"33":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":2.23606797749979},"47":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"49":{"tf":2.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"102":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"109":{"tf":1.0},"80":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"127":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"c":{"df":6,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":2.23606797749979},"111":{"tf":2.23606797749979},"113":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"127":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"5":{"tf":1.0},"51":{"tf":1.4142135623730951}}},"y":{"'":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":1.0},"67":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"53":{"tf":2.6457513110645907}}},"df":0,"docs":{}}},"df":1,"docs":{"53":{"tf":1.0}}}}},"q":{"df":1,"docs":{"109":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"102":{"tf":1.4142135623730951},"104":{"tf":2.23606797749979},"38":{"tf":2.0},"51":{"tf":2.23606797749979},"67":{"tf":1.4142135623730951},"74":{"tf":2.6457513110645907},"75":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.0},"87":{"tf":2.23606797749979},"88":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"104":{"tf":1.0},"109":{"tf":1.7320508075688772},"110":{"tf":2.0},"80":{"tf":1.0},"87":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"80":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}},"v":{"df":8,"docs":{"103":{"tf":2.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"63":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.23606797749979}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":12,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":1.0},"75":{"tf":2.0},"78":{"tf":1.0},"80":{"tf":3.0},"82":{"tf":1.7320508075688772},"84":{"tf":2.23606797749979},"87":{"tf":2.23606797749979},"88":{"tf":2.6457513110645907}},"e":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"75":{"tf":1.0},"80":{"tf":2.23606797749979},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":4.123105625617661}}}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"110":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"39":{"tf":1.0},"65":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"74":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":8,"docs":{"109":{"tf":1.4142135623730951},"114":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"80":{"tf":4.242640687119285},"82":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"s":{"df":7,"docs":{"68":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"f":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"i":{"d":{"df":2,"docs":{"81":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"110":{"tf":1.0},"87":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":6,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"37":{"tf":1.0},"87":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"#":{"2":{"7":{"8":{"0":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"8":{"df":1,"docs":{"62":{"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"28":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"32":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"46":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"41":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"33":{"tf":1.0},"41":{"tf":1.4142135623730951}},"e":{"=":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"c":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"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":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"&":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":2,"docs":{"33":{"tf":1.0},"43":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":40,"docs":{"0":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"133":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":2.23606797749979},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":2.23606797749979},"26":{"tf":1.0},"29":{"tf":2.6457513110645907},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.7320508075688772},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":2.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"81":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}},"1":{"df":1,"docs":{"84":{"tf":1.0}}},"2":{"df":1,"docs":{"84":{"tf":1.0}}},"df":9,"docs":{"28":{"tf":1.0},"29":{"tf":1.0},"78":{"tf":2.6457513110645907},"80":{"tf":3.4641016151377544},"81":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"89":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}}}},"n":{"df":25,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.7320508075688772},"19":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":1.7320508075688772},"25":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"51":{"tf":2.449489742783178},"7":{"tf":1.7320508075688772},"8":{"tf":1.0},"9":{"tf":2.0}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":3,"docs":{"63":{"tf":1.0},"67":{"tf":2.0},"93":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":3.0},"111":{"tf":1.0},"35":{"tf":1.0},"80":{"tf":1.0},"96":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":2.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"110":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"11":{"tf":2.0},"129":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.7320508075688772},"21":{"tf":1.0},"22":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"35":{"tf":2.449489742783178},"36":{"tf":1.7320508075688772},"45":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":2.23606797749979},"69":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":11,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"45":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":4,"docs":{"76":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":2.449489742783178}}}}}},">":{"<":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"80":{"tf":2.6457513110645907}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"110":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"110":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"109":{"tf":2.0},"40":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":17,"docs":{"104":{"tf":1.0},"109":{"tf":2.23606797749979},"113":{"tf":1.0},"114":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.4142135623730951},"87":{"tf":2.0},"88":{"tf":1.7320508075688772},"92":{"tf":1.0}},"n":{"df":1,"docs":{"113":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"32":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"df":2,"docs":{"35":{"tf":1.0},"53":{"tf":1.0}}}},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"124":{"tf":1.0}}}}}},"df":1,"docs":{"46":{"tf":1.0}}}}}},"n":{"d":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"74":{"tf":1.0},"80":{"tf":1.7320508075688772},"87":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772}}}}}},"t":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"df":13,"docs":{"110":{"tf":1.0},"113":{"tf":1.4142135623730951},"15":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"51":{"tf":1.0}}}}}},"f":{"c":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"?":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"80":{"tf":2.0}}}}}},"df":1,"docs":{"80":{"tf":3.4641016151377544}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"114":{"tf":2.0}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"109":{"tf":1.0},"28":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":1.0},"53":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":9,"docs":{"104":{"tf":1.7320508075688772},"113":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"44":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"67":{"tf":2.449489742783178},"69":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"63":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.4142135623730951}},"i":{"df":2,"docs":{"45":{"tf":1.0},"84":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"109":{"tf":1.0},"81":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":5,"docs":{"0":{"tf":1.0},"133":{"tf":1.0},"51":{"tf":1.4142135623730951},"69":{"tf":1.0},"80":{"tf":1.7320508075688772}}}}},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":1,"docs":{"84":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"102":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"80":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":6,"docs":{"16":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"22":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}},"i":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0}}}},"v":{"df":1,"docs":{"109":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"109":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":2.23606797749979}}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"51":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":15,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"106":{"tf":2.0},"109":{"tf":4.795831523312719},"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"113":{"tf":2.0},"114":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":2.449489742783178},"90":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"[":{"0":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.0}}}},"c":{"df":2,"docs":{"35":{"tf":1.0},"76":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"80":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":6,"docs":{"109":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"54":{"tf":1.0}},"i":{"df":5,"docs":{"106":{"tf":2.0},"74":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"44":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"c":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"109":{"tf":2.0},"63":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"16":{"tf":1.0},"22":{"tf":1.0}}}}}},"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":16,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.7320508075688772},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"4":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"t":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":6,"docs":{"106":{"tf":1.4142135623730951},"109":{"tf":2.23606797749979},"116":{"tf":1.0},"80":{"tf":2.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":5,"docs":{"110":{"tf":1.4142135623730951},"114":{"tf":1.0},"69":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":2.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"72":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":2.23606797749979},"88":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"35":{"tf":1.7320508075688772},"45":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":4,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"108":{"tf":1.0},"29":{"tf":2.8284271247461903},"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"104":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":4,"docs":{"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"[":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"]":{"!":{"=":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"87":{"tf":1.0}}}}}}},":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},">":{"<":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"51":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.7320508075688772},"80":{"tf":3.872983346207417},"81":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":2,"docs":{"105":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.7320508075688772}}}}}}},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":2.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":2.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"63":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":16,"docs":{"1":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"63":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":2.449489742783178},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":2.0},"89":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"51":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"g":{"df":2,"docs":{"82":{"tf":1.0},"87":{"tf":1.4142135623730951}},"o":{"df":1,"docs":{"87":{"tf":1.0}}},"r":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}}},"df":2,"docs":{"82":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"w":{"c":{"'":{"df":1,"docs":{"88":{"tf":1.0}}},"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"114":{"tf":1.0},"45":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"y":{"b":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"104":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"80":{"tf":2.0},"87":{"tf":2.6457513110645907},"88":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":9,"docs":{"103":{"tf":1.4142135623730951},"110":{"tf":1.0},"37":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":1,"docs":{"32":{"tf":1.0}},"l":{"df":3,"docs":{"45":{"tf":1.0},"61":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"106":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":6,"docs":{"0":{"tf":1.0},"106":{"tf":1.0},"45":{"tf":1.0},"80":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":1,"docs":{"105":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":4,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"35":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"133":{"tf":2.0},"54":{"tf":1.7320508075688772},"80":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":4,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"65":{"tf":1.7320508075688772},"80":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"72":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"80":{"tf":1.0},"88":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"/":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"109":{"tf":3.3166247903554},"110":{"tf":1.0},"114":{"tf":1.0},"45":{"tf":1.4142135623730951},"53":{"tf":1.0},"80":{"tf":3.1622776601683795},"92":{"tf":1.0}},"e":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},">":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"2":{"df":1,"docs":{"109":{"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":{"109":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"a":{"d":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}},"df":1,"docs":{"109":{"tf":3.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"40":{"tf":1.0},"43":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"t":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}},"df":22,"docs":{"15":{"tf":2.0},"16":{"tf":2.6457513110645907},"17":{"tf":2.6457513110645907},"18":{"tf":4.0},"19":{"tf":3.7416573867739413},"20":{"tf":4.242640687119285},"21":{"tf":2.0},"22":{"tf":2.6457513110645907},"23":{"tf":2.6457513110645907},"24":{"tf":4.0},"25":{"tf":3.7416573867739413},"26":{"tf":4.242640687119285},"27":{"tf":1.7320508075688772},"28":{"tf":2.0},"29":{"tf":2.0},"30":{"tf":1.7320508075688772},"51":{"tf":2.0},"78":{"tf":2.6457513110645907},"80":{"tf":3.4641016151377544},"81":{"tf":2.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"]":{"(":{"#":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"x":{"df":0,"docs":{},"t":{"(":{"*":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"49":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":2,"docs":{"110":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"84":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"df":0,"docs":{}}},"k":{"df":2,"docs":{"108":{"tf":1.0},"88":{"tf":1.0}}}},"r":{"d":{"df":4,"docs":{"110":{"tf":1.0},"28":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}}},"a":{"d":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":1,"docs":{"88":{"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.7320508075688772}},"}":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"!":{"=":{"!":{"$":{"df":0,"docs":{},"{":{"_":{"_":{"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":0,"docs":{},"e":{"df":0,"docs":{},"}":{"!":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"!":{"=":{"!":{"$":{"df":0,"docs":{},"{":{"_":{"_":{"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":0,"docs":{},"e":{"df":0,"docs":{},"}":{"!":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"?":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"82":{"tf":1.0},"84":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"110":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":7,"docs":{"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"116":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"49":{"tf":1.0},"80":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":8,"docs":{"102":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"46":{"tf":1.0},"80":{"tf":2.23606797749979},"84":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"123":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":12,"docs":{"106":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"53":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.4142135623730951},"91":{"tf":1.0},"96":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.7320508075688772}}}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":2,"docs":{"115":{"tf":1.0},"120":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"32":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"35":{"tf":1.0}}}}},"o":{"(":{"df":0,"docs":{},"i":{".":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"p":{"df":2,"docs":{"105":{"tf":1.0},"87":{"tf":1.0}},"i":{"c":{"df":2,"docs":{"123":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"!":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":7,"docs":{"33":{"tf":2.449489742783178},"34":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":2.449489742783178},"42":{"tf":2.0},"43":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951}}},"k":{"df":2,"docs":{"0":{"tf":1.0},"4":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":5,"docs":{"67":{"tf":1.0},"80":{"tf":2.8284271247461903},"82":{"tf":1.4142135623730951},"84":{"tf":2.23606797749979},"87":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"114":{"tf":2.0}}}},"i":{"df":1,"docs":{"88":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":8,"docs":{"109":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"d":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"45":{"tf":1.0},"53":{"tf":1.0},"80":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":11,"docs":{"109":{"tf":2.23606797749979},"15":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"38":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"69":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":19,"docs":{"102":{"tf":1.7320508075688772},"103":{"tf":1.0},"104":{"tf":2.449489742783178},"106":{"tf":2.23606797749979},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"29":{"tf":2.0},"38":{"tf":2.0},"52":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":2.23606797749979},"84":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"88":{"tf":3.0},"89":{"tf":1.0},"92":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"c":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"u":{"df":2,"docs":{"19":{"tf":1.0},"25":{"tf":1.0}},"i":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"42":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.0}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"35":{"tf":1.0}}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}},"r":{"df":2,"docs":{"45":{"tf":1.0},"76":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"132":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"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":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"67":{"tf":1.0},"68":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"47":{"tf":2.0},"49":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"127":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0}},"e":{"=":{"1":{"df":2,"docs":{"16":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"116":{"tf":1.7320508075688772},"51":{"tf":1.0},"7":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"74":{"tf":1.4142135623730951},"84":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"114":{"tf":1.0},"92":{"tf":1.0}}}},"df":41,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"116":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":2.0},"20":{"tf":3.1622776601683795},"26":{"tf":3.1622776601683795},"27":{"tf":1.0},"29":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"41":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"45":{"tf":2.0},"53":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":2.0},"80":{"tf":4.58257569495584},"81":{"tf":2.0},"82":{"tf":1.0},"84":{"tf":2.449489742783178},"85":{"tf":1.7320508075688772},"87":{"tf":2.6457513110645907},"88":{"tf":2.23606797749979},"91":{"tf":1.0},"92":{"tf":2.0},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":4,"docs":{"80":{"tf":2.0},"82":{"tf":1.0},"87":{"tf":3.3166247903554},"88":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":3,"docs":{"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"v":{"1":{"4":{".":{"1":{"9":{".":{"0":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"1":{"8":{".":{"0":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"87":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":5,"docs":{"103":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"43":{"tf":1.0},"85":{"tf":1.0}}}},"r":{"df":1,"docs":{"109":{"tf":1.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"106":{"tf":1.0},"29":{"tf":1.4142135623730951},"33":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"13":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"13":{"tf":2.23606797749979},"46":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0}}}}},"u":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"i":{"a":{"df":8,"docs":{"109":{"tf":2.0},"110":{"tf":1.0},"111":{"tf":1.0},"13":{"tf":1.0},"43":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"42":{"tf":1.4142135623730951},"43":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"109":{"tf":1.0},"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"32":{"tf":1.0}}},"/":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"32":{"tf":1.0},"38":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":4,"docs":{"11":{"tf":1.0},"32":{"tf":1.7320508075688772},"37":{"tf":1.0},"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"75":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"78":{"tf":2.449489742783178},"80":{"tf":7.810249675906654},"87":{"tf":1.7320508075688772}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}}}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"85":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"4":{"tf":1.0},"80":{"tf":1.7320508075688772},"84":{"tf":2.0},"96":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"33":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951}}}},"t":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"92":{"tf":1.7320508075688772},"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":0,"docs":{}},"y":{"df":9,"docs":{"0":{"tf":1.0},"133":{"tf":1.0},"41":{"tf":1.0},"5":{"tf":1.7320508075688772},"50":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.0},"85":{"tf":1.0},"87":{"tf":1.7320508075688772}}}},"df":1,"docs":{"32":{"tf":1.0}},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.0}}}},"r":{"df":1,"docs":{"80":{"tf":1.0}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"/":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"5":{"tf":1.4142135623730951}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"'":{"df":5,"docs":{"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"78":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.4142135623730951}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"87":{"tf":1.0}}}},"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"[":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"85":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}}}},"df":64,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":2.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":2.6457513110645907},"110":{"tf":2.23606797749979},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":2.6457513110645907},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"133":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":3.1622776601683795},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":3.1622776601683795},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"76":{"tf":2.23606797749979},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"80":{"tf":4.123105625617661},"81":{"tf":2.23606797749979},"82":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"84":{"tf":2.23606797749979},"85":{"tf":2.23606797749979},"86":{"tf":1.0},"87":{"tf":3.605551275463989},"88":{"tf":3.3166247903554},"89":{"tf":2.0},"90":{"tf":2.0},"91":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"97":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"125":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"55":{"tf":1.0},"57":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"l":{"df":3,"docs":{"43":{"tf":1.0},"6":{"tf":1.0},"80":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"73":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"106":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"88":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"47":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"114":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"38":{"tf":1.0},"74":{"tf":1.0},"84":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"18":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"76":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"d":{"df":5,"docs":{"109":{"tf":1.4142135623730951},"114":{"tf":1.0},"73":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":12,"docs":{"0":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.4142135623730951},"4":{"tf":1.0},"42":{"tf":1.0},"6":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"30":{"tf":1.0},"35":{"tf":1.0}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"14":{"tf":1.7320508075688772},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"88":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"s":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"38":{"tf":1.4142135623730951}},"i":{"c":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"d":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"76":{"tf":1.0},"88":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"109":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"67":{"tf":1.0},"87":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"x":{".":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"z":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}}},"8":{"6":{"_":{"6":{"4":{"df":2,"docs":{"47":{"tf":2.0},"49":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"40":{"tf":1.0},"45":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"18":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"83":{"tf":1.0}},"x":{"df":1,"docs":{"104":{"tf":1.0}},"x":{"df":1,"docs":{"75":{"tf":1.0}},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"v":{"df":1,"docs":{"51":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}}},"z":{"df":3,"docs":{"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"title":{"root":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"128":{"tf":1.0},"131":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}},"t":{"df":1,"docs":{"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"133":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"28":{"tf":1.0}}}}},"df":1,"docs":{"56":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"38":{"tf":1.0},"78":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"61":{"tf":1.0},"71":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"57":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":4,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"118":{"tf":1.0},"8":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"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":{"106":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"2":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"53":{"tf":1.0},"79":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"64":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"3":{"tf":1.0},"59":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}},"n":{"df":1,"docs":{"131":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"133":{"tf":1.0}}}}},"df":1,"docs":{"58":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"107":{"tf":1.0}}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"73":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"3":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"6":{"tf":1.0},"64":{"tf":1.0},"77":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"92":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"76":{"tf":1.0},"83":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"13":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":3,"docs":{"3":{"tf":1.0},"4":{"tf":1.0},"59":{"tf":1.0}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"127":{"tf":1.0},"55":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":9,"docs":{"100":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}}},"l":{"d":{"b":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"65":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":1,"docs":{"100":{"tf":1.0}}}}},"m":{"a":{"c":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.0}}}}},"s":{"c":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"36":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":8,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"df":1,"docs":{"80":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"8":{"tf":1.0}}}},"df":4,"docs":{"17":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0}},"j":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"112":{"tf":1.0},"69":{"tf":1.0},"88":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"76":{"tf":1.0},"93":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}}}}}}},"x":{"c":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"34":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"65":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":2,"docs":{"52":{"tf":1.0},"62":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"37":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"92":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"40":{"tf":1.0},"44":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"120":{"tf":1.0},"66":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"115":{"tf":1.0},"62":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"51":{"tf":1.0},"74":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"v":{"df":1,"docs":{"105":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"128":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"19":{"tf":1.0},"25":{"tf":1.0},"60":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"7":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"11":{"tf":1.0},"129":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"11":{"tf":1.0},"12":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"63":{"tf":1.0},"72":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"61":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"133":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"115":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"33":{"tf":1.0},"41":{"tf":1.0}}},"k":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"114":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"106":{"tf":1.0},"81":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"116":{"tf":1.0}}},"s":{"df":1,"docs":{"81":{"tf":1.0}}}},"v":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"32":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"130":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"2":{"tf":1.0},"30":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"131":{"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":"AND","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}}); \ No newline at end of file +Object.assign(window.search, {"doc_urls":["getting-started.html#getting-started","getting-started.html#asking-questions","getting-started.html#what-should-i-work-on","getting-started.html#good-first-issue","getting-started.html#tracking-issue","getting-started.html#other-ways-to-contribute","about-this-guide.html#about-this-guide","building/intro.html#how-to-build-and-run-the-compiler","building/intro.html#install-nodejs-dependencies","building/intro.html#building-rspack","building/prerequisites.html#prerequisites","building/prerequisites.html#setup-rust","building/prerequisites.html#setup-nodejs","building/prerequisites.html#install-nodejs","building/suggested.html#suggested-workflows","testing/intro.html#testing","testing/intro.html#rust-testing","testing/intro.html#node-testing","testing/intro.html#webpack-testing","testing/intro.html#rspack-testing","testing/intro.html#node-testing-suite-overview","testing/intro.html#testing","testing/intro.html#rust-testing","testing/intro.html#node-testing","testing/intro.html#webpack-testing","testing/intro.html#rspack-testing","testing/intro.html#node-testing-suite-overview","testing/e2e.html#e2e","testing/e2e.html#cases","testing/e2e.html#fixtures","testing/e2e.html#how-it-works","debugging/intro.html#debugging","debugging/intro.html#debugging-with-vscode","debugging/intro.html#tracing","debugging/intro.html#oxc_resolver","debugging/intro.html#rust-lldb","debugging/mix-debug.html#mixed-debugging-between-javascript-and-rust","debugging/mix-debug.html#prerequisites","debugging/mix-debug.html#configure-launchjson-in-vscode","debugging/mix-debug.html#debugging-attempt","profiling/intro.html#profiling","profiling/intro.html#tracing","profiling/intro.html#chrome","profiling/intro.html#terminal","profiling/intro.html#nodejs-profiling","profiling/intro.html#mac-xcode-instruments","releasing/intro.html#releasing","releasing/intro.html#latest-full-release","releasing/intro.html#nightly","releasing/intro.html#canary","contributing/intro.html#intro","contributing/intro.html#sending-a-pull-request","contributing/intro.html#format-of-pr-titles","contributing/repro.html#minimal-reproducible-example","contributing/team.html#about-the-team","contributing/managing-labels.html#managing-labels","contributing/managing-labels.html#c","contributing/managing-labels.html#contribution-welcome","contributing/managing-labels.html#g","contributing/managing-labels.html#good-first-issue","architecture/rspack/intro.html#rspack","architecture/rspack/intro.html#table-of-contents","architecture/rspack/loader.html#related-prs","architecture/rspack/loader.html#summary","architecture/rspack/loader.html#guide-level-explanation","architecture/rspack/loader.html#pitching-loader","architecture/rspack/loader.html#reference-level-explanation","architecture/rspack/loader.html#actor-of-loader-execution","architecture/rspack/loader.html#passing-options","architecture/rspack/loader.html#optimization-for-pitching","architecture/webpack/intro.html#webpack","architecture/webpack/intro.html#table-of-contents","architecture/webpack/loader.html#summary","architecture/webpack/loader.html#glossary","architecture/webpack/loader.html#request-related","architecture/webpack/loader.html#resource-related","architecture/webpack/loader.html#others-but-also-important-to-note","architecture/webpack/loader.html#guide-level-explanation","architecture/webpack/loader.html#loader-configuration","architecture/webpack/loader.html#examples","architecture/webpack/loader.html#vue1-to-n","architecture/webpack/loader.html#use-natively-supported-module-types","architecture/webpack/loader.html#svgr","architecture/webpack/loader.html#scheme-imports","architecture/webpack/loader.html#asset-transform-and-rename","architecture/webpack/loader.html#ast-reuse","architecture/webpack/loader.html#reference-level-explanation","architecture/webpack/loader.html#loader-composability","architecture/webpack/loader.html#performance-optimizations","architecture/webpack/loader.html#references","architecture/webpack/dependency.html#summary","architecture/webpack/dependency.html#glossary","architecture/webpack/dependency.html#high-level-presentations-of--dependencies","architecture/webpack/dependency.html#others","architecture/webpack/dependency.html#guide-level-explanation","architecture/webpack/dependency.html#dependency","architecture/webpack/dependency.html#contextdependency","architecture/webpack/dependency.html#reference-level-explanation","architecture/webpack/dependency.html#stakeholders-of--dependency","architecture/webpack/dependency.html#high-level","architecture/webpack/dependency.html#low-level","architecture/webpack/dependency.html#how--dependencies--affect-the-creation-of--module-graph-","architecture/webpack/dependency.html#duplicated-module-detection","architecture/webpack/dependency.html#module-resolution","architecture/webpack/dependency.html#module-dependency--in--modulegraph","architecture/webpack/dependency.html#resolving-a-module","architecture/webpack/dependency.html#different-types-of--module-dependencies","architecture/webpack/dependency.html#how--dependencies--affect-code-generation","architecture/webpack/dependency.html#presentational-dependency","architecture/webpack/dependency.html#template","architecture/webpack/dependency.html#runtime","architecture/webpack/dependency.html#hot-module-replacement","architecture/webpack/dependency.html#how--dependencies--affect-production-optimizations","architecture/webpack/dependency.html#constant-folding","architecture/webpack/dependency.html#tree-shaking--dce","architecture/webpack/dependency.html#things-related-to-persistent-cache","architecture/webpack/dependency.html#wrap-it-up","architecture/webpack/dependency.html#make","architecture/webpack/dependency.html#dependencies-after-make","architecture/webpack/dependency.html#seal","architecture/webpack/dependency.html#references","workflows/meetings.html#meetings","workflows/meetings.html#tuesday-meeting","workflows/meetings.html#thursday-meeting","workflows/releases.html#releases","workflows/releases.html#release-cycle","workflows/misc.html#misc","workflows/misc.html#need-documentation-label","appendix/learning-resources.html#appendix-a-learning-resources","appendix/learning-resources.html#rust","appendix/learning-resources.html#webpack","appendix/fun.html#appendix-z-fun-stuff","appendix/fun.html#motto","appendix/fun.html#team-building-game"],"index":{"documentStore":{"docInfo":{"0":{"body":22,"breadcrumbs":4,"title":2},"1":{"body":10,"breadcrumbs":4,"title":2},"10":{"body":0,"breadcrumbs":4,"title":1},"100":{"body":2,"breadcrumbs":4,"title":2},"101":{"body":0,"breadcrumbs":7,"title":5},"102":{"body":68,"breadcrumbs":5,"title":3},"103":{"body":67,"breadcrumbs":4,"title":2},"104":{"body":128,"breadcrumbs":5,"title":3},"105":{"body":27,"breadcrumbs":4,"title":2},"106":{"body":157,"breadcrumbs":6,"title":4},"107":{"body":0,"breadcrumbs":6,"title":4},"108":{"body":28,"breadcrumbs":4,"title":2},"109":{"body":453,"breadcrumbs":3,"title":1},"11":{"body":11,"breadcrumbs":5,"title":2},"110":{"body":144,"breadcrumbs":3,"title":1},"111":{"body":49,"breadcrumbs":5,"title":3},"112":{"body":0,"breadcrumbs":6,"title":4},"113":{"body":91,"breadcrumbs":4,"title":2},"114":{"body":92,"breadcrumbs":5,"title":3},"115":{"body":1,"breadcrumbs":6,"title":4},"116":{"body":36,"breadcrumbs":4,"title":2},"117":{"body":2,"breadcrumbs":3,"title":1},"118":{"body":2,"breadcrumbs":4,"title":2},"119":{"body":2,"breadcrumbs":3,"title":1},"12":{"body":0,"breadcrumbs":5,"title":2},"120":{"body":1,"breadcrumbs":3,"title":1},"121":{"body":0,"breadcrumbs":2,"title":1},"122":{"body":4,"breadcrumbs":3,"title":2},"123":{"body":5,"breadcrumbs":3,"title":2},"124":{"body":15,"breadcrumbs":2,"title":1},"125":{"body":19,"breadcrumbs":3,"title":2},"126":{"body":0,"breadcrumbs":2,"title":1},"127":{"body":21,"breadcrumbs":4,"title":3},"128":{"body":0,"breadcrumbs":6,"title":3},"129":{"body":0,"breadcrumbs":4,"title":1},"13":{"body":61,"breadcrumbs":5,"title":2},"130":{"body":0,"breadcrumbs":4,"title":1},"131":{"body":0,"breadcrumbs":8,"title":4},"132":{"body":6,"breadcrumbs":5,"title":1},"133":{"body":26,"breadcrumbs":7,"title":3},"14":{"body":0,"breadcrumbs":6,"title":2},"15":{"body":9,"breadcrumbs":2,"title":1},"16":{"body":19,"breadcrumbs":3,"title":2},"17":{"body":11,"breadcrumbs":3,"title":2},"18":{"body":92,"breadcrumbs":3,"title":2},"19":{"body":49,"breadcrumbs":3,"title":2},"2":{"body":0,"breadcrumbs":3,"title":1},"20":{"body":117,"breadcrumbs":5,"title":4},"21":{"body":9,"breadcrumbs":3,"title":1},"22":{"body":19,"breadcrumbs":4,"title":2},"23":{"body":11,"breadcrumbs":4,"title":2},"24":{"body":92,"breadcrumbs":4,"title":2},"25":{"body":49,"breadcrumbs":4,"title":2},"26":{"body":117,"breadcrumbs":6,"title":4},"27":{"body":10,"breadcrumbs":3,"title":1},"28":{"body":46,"breadcrumbs":3,"title":1},"29":{"body":133,"breadcrumbs":3,"title":1},"3":{"body":18,"breadcrumbs":5,"title":3},"30":{"body":40,"breadcrumbs":3,"title":1},"31":{"body":0,"breadcrumbs":2,"title":1},"32":{"body":41,"breadcrumbs":3,"title":2},"33":{"body":43,"breadcrumbs":2,"title":1},"34":{"body":9,"breadcrumbs":2,"title":1},"35":{"body":104,"breadcrumbs":3,"title":2},"36":{"body":9,"breadcrumbs":8,"title":5},"37":{"body":38,"breadcrumbs":4,"title":1},"38":{"body":117,"breadcrumbs":6,"title":3},"39":{"body":12,"breadcrumbs":5,"title":2},"4":{"body":17,"breadcrumbs":4,"title":2},"40":{"body":23,"breadcrumbs":2,"title":1},"41":{"body":44,"breadcrumbs":2,"title":1},"42":{"body":33,"breadcrumbs":2,"title":1},"43":{"body":22,"breadcrumbs":2,"title":1},"44":{"body":42,"breadcrumbs":3,"title":2},"45":{"body":137,"breadcrumbs":4,"title":3},"46":{"body":19,"breadcrumbs":2,"title":1},"47":{"body":48,"breadcrumbs":4,"title":3},"48":{"body":29,"breadcrumbs":2,"title":1},"49":{"body":30,"breadcrumbs":2,"title":1},"5":{"body":38,"breadcrumbs":4,"title":2},"50":{"body":8,"breadcrumbs":3,"title":1},"51":{"body":115,"breadcrumbs":5,"title":3},"52":{"body":25,"breadcrumbs":5,"title":3},"53":{"body":58,"breadcrumbs":6,"title":3},"54":{"body":18,"breadcrumbs":2,"title":1},"55":{"body":13,"breadcrumbs":4,"title":2},"56":{"body":0,"breadcrumbs":3,"title":1},"57":{"body":0,"breadcrumbs":4,"title":2},"58":{"body":0,"breadcrumbs":3,"title":1},"59":{"body":0,"breadcrumbs":5,"title":3},"6":{"body":13,"breadcrumbs":2,"title":1},"60":{"body":4,"breadcrumbs":2,"title":1},"61":{"body":1,"breadcrumbs":3,"title":2},"62":{"body":2,"breadcrumbs":4,"title":2},"63":{"body":74,"breadcrumbs":3,"title":1},"64":{"body":14,"breadcrumbs":5,"title":3},"65":{"body":40,"breadcrumbs":4,"title":2},"66":{"body":0,"breadcrumbs":5,"title":3},"67":{"body":98,"breadcrumbs":5,"title":3},"68":{"body":21,"breadcrumbs":4,"title":2},"69":{"body":61,"breadcrumbs":4,"title":2},"7":{"body":7,"breadcrumbs":5,"title":3},"70":{"body":3,"breadcrumbs":2,"title":1},"71":{"body":2,"breadcrumbs":3,"title":2},"72":{"body":23,"breadcrumbs":3,"title":1},"73":{"body":16,"breadcrumbs":3,"title":1},"74":{"body":47,"breadcrumbs":4,"title":2},"75":{"body":79,"breadcrumbs":4,"title":2},"76":{"body":64,"breadcrumbs":5,"title":3},"77":{"body":0,"breadcrumbs":5,"title":3},"78":{"body":117,"breadcrumbs":4,"title":2},"79":{"body":0,"breadcrumbs":3,"title":1},"8":{"body":24,"breadcrumbs":5,"title":3},"80":{"body":983,"breadcrumbs":4,"title":2},"81":{"body":113,"breadcrumbs":7,"title":5},"82":{"body":75,"breadcrumbs":3,"title":1},"83":{"body":25,"breadcrumbs":4,"title":2},"84":{"body":228,"breadcrumbs":5,"title":3},"85":{"body":80,"breadcrumbs":4,"title":2},"86":{"body":8,"breadcrumbs":5,"title":3},"87":{"body":466,"breadcrumbs":4,"title":2},"88":{"body":383,"breadcrumbs":4,"title":2},"89":{"body":32,"breadcrumbs":3,"title":1},"9":{"body":20,"breadcrumbs":4,"title":2},"90":{"body":22,"breadcrumbs":3,"title":1},"91":{"body":16,"breadcrumbs":3,"title":1},"92":{"body":57,"breadcrumbs":6,"title":4},"93":{"body":17,"breadcrumbs":3,"title":1},"94":{"body":0,"breadcrumbs":5,"title":3},"95":{"body":32,"breadcrumbs":3,"title":1},"96":{"body":57,"breadcrumbs":3,"title":1},"97":{"body":11,"breadcrumbs":5,"title":3},"98":{"body":0,"breadcrumbs":4,"title":2},"99":{"body":2,"breadcrumbs":4,"title":2}},"docs":{"0":{"body":"We are grateful for your interest in contributing to Rspack! Every single contribution counts and helps us take Rspack to the next level. Asking Questions What should I work on? Good First Issue Tracking Issue Other ways to contribute","breadcrumbs":"Getting started » Getting Started","id":"0","title":"Getting Started"},"1":{"body":"If you have any questions, please do not hesitate to ask in either the Discord support channel or on the Github discussion board .","breadcrumbs":"Getting started » Asking Questions","id":"1","title":"Asking Questions"},"10":{"body":"","breadcrumbs":"Building and running » Prerequisites » Prerequisites","id":"10","title":"Prerequisites"},"100":{"body":"image-20220919171841624","breadcrumbs":"webpack » dependency » Low-level","id":"100","title":"Low-level"},"101":{"body":"","breadcrumbs":"webpack » dependency » How dependencies affect the creation of module graph ?","id":"101","title":"How dependencies affect the creation of module graph ?"},"102":{"body":"Each module will have its own identifier, for NormalModule, you can find this in NormalModule#identifier. If the identifier will be duplicated if inserted in this._module, then webpack will directly skip the remaining build process. [source] Basically, an NormalModule identifier contains these parts: type [string]: The module type of a module. If the type of the module is javascript/auto, this field can be omitted request [string]: Request to the module. All loaders whether it's inline or matched by a config will be stringified. If inline match resource exists, inline loaders will be executed before any normal-loaders after pre-loaders. A module with a different loader passed through will be treated as a different module regardless of its path. layer: applied if provided","breadcrumbs":"webpack » dependency » Duplicated module detection","id":"102","title":"Duplicated module detection"},"103":{"body":"getResolve is a loader API on the LoaderContext. Loader developers can pass dependencyType to its option which indicates the category of the module dependency that will be created. Values like esm can be passed, then webpack will use type esm to resolve the dependency. The resolved dependencies are automatically added to the current module. This is driven by the internal plugin system of enhanced-resolve. Internally, enhanced-resolve uses plugins to handle the dependency registration like FileExistsPlugin [source] to detect whether a file is located on the file system or will add this file to a list of missingDependency and report in respect of the running mode of webpack. The collecting end of Webpack is generated by the getResolveContext in NormalModule [source]","breadcrumbs":"webpack » dependency » Module resolution","id":"103","title":"Module resolution"},"104":{"body":"Here's a module graph with esm import between modules: image-20220919172119861 The dependency type introduced by import or require is a derived dependency: ModuleDependency . A ModuleDependency contains three important fields. category: used to describe the category of dependency. e.g. \"esm\" | \"commonjs\" request: see the explanation above. userRequest: Resource and its inline loader syntax will be stringified and applied, but loaders in module.rules will be omitted. It's also good to note a field we will talk about later: assertions: assertions in import xx from \"foo.json\" assert { type: \"json\" } More fields can be found in abstract class of Dependency and ModuleDependency . source: Dependency source: ModuleDependency // null -> index.js EntryDependency { category: \"esm\", request: \"./index.js\", type: \"entry\", _parentModule: undefined\n} // index.js -> foo.js HarmonyImportSideEffectDependency { category: \"esm\", request: \"./foo\", type: \"harmony side effect evaluation\", _parentModule: NormalModule { identifier: \"index.js\" }\n} // index.js -> bar.js HarmonyImportSideEffectDependency { category: \"esm\", request: \"./bar\", type: \"harmony side effect evaluation\", _parentModule: NormalModule { identifier: \"index.js\" }\n} // bar.js -> foo.js\nHarmonyImportSideEffectDependency { category: \"esm\", request: \"./foo\", type: \"harmony side effect evaluation\", _parentModule: NormalModule { identifier: \"bar.js\" }\n}","breadcrumbs":"webpack » dependency » Module dependency in ModuleGraph","id":"104","title":"Module dependency in ModuleGraph"},"105":{"body":"ModuleDependencies with different dependency category such as esm or commonjs will affect the resolving part. For ECMAScript modules, they may prefer \"module\" to \"main\", and for CommonJS modules, they may use \"main\" in package.json. On top of that, conditional exports are also necessary to be taken into account. doc","breadcrumbs":"webpack » dependency » Resolving a module","id":"105","title":"Resolving a module"},"106":{"body":"ESM-related derived types There are a few of ModuleDependencies introduced in ESM imports. A full list of each derived type can be reached at [source] Import HarmonyImportDependency The basic type of harmony-related module dependencies are below. [source] HarmonyImportSideEffectDependency import { foo, bar } from \"./module\"\nimport * as module from \"./module\"\nimport foo from \"./module\"\nimport \"./module\" Every import statement will come with a HarmonyImportSideEffectDependency, no matter how the specifiers look like. The speicifier will be handled by HarmonyImportSpecifierDendency below. The field assertions will be stored if any import assertions exist for later consumption. The field category will be used as dependencyType to resolve modules. HarmonyImportSpecifierDependency import { foo, bar } from \"./module\"\nimport * as module from \"./module\"\nimport foo from \"./module\" Example: import { foo, bar } from \"./module\" console.log(foo, bar) Specifier will be mapped into a specifier dependency if and only if it is used. JavaScript parser will first tag each variable [source] , and then create corresponding dependencies on each reading of dependency. [source] and finally be replaced to the generated importVar. Export(They are not module dependencies to be actual, but I placed here for convenience) HarmonyExportHeaderDependency PresentationalDependency export const foo = \"foo\";\nexport default \"foo\"; This is a presentational dependency . We will take more time on this later. HarmonyExportSpecifierDependency export const foo = \"foo\"; // `foo` is a specifier HarmonyExportSpecifierDependency { id: string; name: string;\n} HarmonyExportExpressionDependency export default \"foo\"; // \"foo\" is an expression HarmonyExportExpressionDependency { range: [number, number] // range of the expression rangeStatement: [number, number] // range of the whole statement\n}","breadcrumbs":"webpack » dependency » Different types of module dependencies","id":"106","title":"Different types of module dependencies"},"107":{"body":"","breadcrumbs":"webpack » dependency » How dependencies affect code generation","id":"107","title":"How dependencies affect code generation"},"108":{"body":"A type of dependency that only affects code presentation. ConstDependency ConstDependency { expression: string range: [number, number] runtimeRequirements: Set | null\n} You can think of the passed expression as a replacement for the corresponding range. For the real world example, you can directly refer to Constant Folding .","breadcrumbs":"webpack » dependency » Presentational dependency","id":"108","title":"Presentational dependency"},"109":{"body":"Remember the fact that Webpack is an architecture wrapped around source code modifications. Template is the solution that helps Webpack to do the real patch on the source code. Each dependency has its associated template which affects a part of the code generation scoped per dependency. In other words, the effect of each template is strictly scoped to its associated dependency. image-20220919173300220 There are three types of modification: source fragments runtimeRequirements A boilerplate of the dependency template looks like this: class SomeDependency {} SomeDependency.Template = class SomeDependencyTemplate { /** * @param {Dependency} dependency the dependency for which the template should be applied * @param {ReplaceSource} source the current replace source which can be modified * @param {DependencyTemplateContext} templateContext the context object * @returns {void} */ apply(dependency, source, templateContext) { // do code mod here }\n} There are three parameters in the function signature: dependency: The associated dependency of this template source: The source code represent in ReplaceSource, which can be used to replace a snippet of code with a new one, given the start and end position templateContext: A context of template, which stores the corresponding module, InitFragments, moduleGraph, runtimeRequirements, etc. (not important in this section) Source Again, given an example of ConstDependency , even if you don't have an idea what it is, it doesn't matter. We will cover this in the later sections. The associated template modifies the code with Source(ReplaceSource to be more specific): ConstDependency.Template = class ConstDependencyTemplate extends ( NullDependency.Template\n) { apply(dependency, source, templateContext) { const dep = /** @type {ConstDependency} */ (dependency); // not necessary code is removed for clearer demonstration if (dep.runtimeRequirements) { for (const req of dep.runtimeRequirements) { templateContext.runtimeRequirements.add(req); } } source.replace(dep.range[0], dep.range[1] - 1, dep.expression); }\n}; runtimeRequirements As you can see from the Source section above, there is another modification we talked about: runtimeRequirements, It adds runtime requirements for the current compilation. We will explain more in the later sections. Fragments Essentially, a fragment is a pair of code snippet that to be wrapped around each module source. Note the wording \"wrap\", it could contain two parts content and endContent [source] . To make it more illustrative, see this: The order of the fragment comes from two parts: The stage of a fragment: if the stage of two fragments is different, then it will be replaced corresponding to the order define by the stage If two fragments share the same order, then it will be replaced in position order. [source] A real-world example import { foo } from \"./foo\" foo() Given the example above, here's the code to generate a dependency that replaces import statement with __webpack_require__. // some code is omitted for cleaner demonstration\nparser.hooks.import.tap( \"HarmonyImportDependencyParserPlugin\", (statement, source) => { const clearDep = new ConstDependency( \"\", statement.range ); clearDep.loc = statement.loc; parser.state.module.addPresentationalDependency(clearDep); const sideEffectDep = new HarmonyImportSideEffectDependency( source ); sideEffectDep.loc = statement.loc; parser.state.module.addDependency(sideEffectDep); return true; }\n); Webpack will create two dependencies ConstDependency and HarmonyImportSideEffectDependency while parsing [source] . Let me focus on HarmonyImportSideEffectDependency more, since it uses Fragment to do some patch. // some code is omitted for cleaner demonstration\nHarmonyImportSideEffectDependency.Template = class HarmonyImportSideEffectDependencyTemplate extends ( HarmonyImportDependency.Template\n) { apply(dependency, source, templateContext) { super.apply(dependency, source, templateContext); }\n}; As you can see in its associated template [source] , the modification to the code is made via its superclass HarmonyImportDependency.Template [source] . // some code is omitted for cleaner demonstration\nHarmonyImportDependency.Template = class HarmonyImportDependencyTemplate extends ( ModuleDependency.Template\n) { apply(dependency, source, templateContext) { const dep = /** @type {HarmonyImportDependency} */ (dependency); const { module, chunkGraph, moduleGraph, runtime } = templateContext; const referencedModule = connection && connection.module; const moduleKey = referencedModule ? referencedModule.identifier() : dep.request; const key = `harmony import ${moduleKey}`; // 1 const importStatement = dep.getImportStatement(false, templateContext); // 2 templateContext.initFragments.push( new ConditionalInitFragment( importStatement[0] + importStatement[1], InitFragment.STAGE_HARMONY_IMPORTS, dep.sourceOrder, key, // omitted for cleaner code ) ); }\n} As you can see from the simplified source code above, the actual patch made to the generated code is via templateContext.initFragments(2). The import statement generated from dependency looks like this. /* harmony import */ var _foo__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./foo */ \"./src/foo.js\"); //(1) Note, the real require statement is generated via initFragments , ConditionalInitFragment to be specific. Don't be afraid of the naming, for more information you can see the (background)[https://github.com/webpack/webpack/pull/11802] of this fragment , which let's webpack to change it from InitFragment to ConditionalInitFragment. How does webpack solve the compatibility issue? For ESM modules, webpack will additionally call a helper to define _esModule on exports as an hint: __webpack_require__.r(__webpack_exports__); The call of a helper is always placed ahead of any require statements. Probably you have already get this as the stage of STAGE_HARMONY_EXPORTS has high priority than STAGE_HARMONY_IMPORTS. Again, this is achieved via initFragments. The logic of the compatibility helper is defined in this file, you can check it out.","breadcrumbs":"webpack » dependency » Template","id":"109","title":"Template"},"11":{"body":"Install Rust using rustup . If you are using VSCode, we recommend installing the rust-analyzer extension.","breadcrumbs":"Building and running » Prerequisites » Setup Rust","id":"11","title":"Setup Rust"},"110":{"body":"Runtime generation is based on the previously collected runtimeRequirements in different dependency templates and is done after the code generation of each module. Note: it's not after the renderManifest, but it's after the code generation of each module. image-20220919173829765 In the first iteration of collection, Sets of runtimeRequirements are collected from the module's code generation results and added to each ChunkGraphModule. In the second iteration of collection, the collected runtimeRequirements are already stored in ChunkGraphModule, so Webpack again collects them from there and stores the runtimes required by each chunk of ChunkGraphChunk. It's kind of the hoisting procedure of the required runtimes. Finally, also known as the third iteration of collection, Webpack hoists runtimeRequirements from those chunks that are referenced by the entry chunk and get it hoisted on the ChunkGraphChunk using a different field named runtimeRequirementsInTree which indicates not only does it contains the runtime requirements by the chunk but also it's children runtime requirements. image-20220919174132772 The referenced source code you can be found it here and these steps are basically done in processRuntimeRequirements. This let me recall the linking procedure of a rollup-like bundler. Anyway, after this procedure, we can finally generate runtime modules . Actually, I lied here, huge thanks to the hook system of Webpack, the creation of runtime modules is done in this method via calls to runtimeRequirementInTree [source] . No doubt, this is all done in the seal step. After that, webpack will process each chunk and create a few code generation jobs, and finally, emit assets.","breadcrumbs":"webpack » dependency » Runtime","id":"110","title":"Runtime"},"111":{"body":"Changes made via hot module replacement is mostly come from HotModuleReplacementPlugin. Given the code below: if (module.hot) { module.hot.accept(...)\n} Webpack will replace expressions like module.hot and module.hot.accept, etc with ConstDependency as the presentationalDependency as I previously talked about. [source] With the help of a simple expression replacement is not enough, the plugin also introduce additional runtime modules for each entries. [source] The plugin is quite complicated, and you should definitely checkout what it actually does, but for things related to dependency, it's enough.","breadcrumbs":"webpack » dependency » Hot module replacement","id":"111","title":"Hot module replacement"},"112":{"body":"","breadcrumbs":"webpack » dependency » How dependencies affect production optimizations","id":"112","title":"How dependencies affect production optimizations"},"113":{"body":"The logic is defined in ConstPlugin : [source] Constant folding is a technique that used as an optimization for optimization. For example: Source if (process.env.NODE_ENV === \"development\") { ...\n} else { ...\n} Generated if (true) { ...\n} With mode set to \"development\", webpack will \"fold\" the expression process.env.NODE_ENV === \"development\" into an expression of \"true\" as you can see for the code generation result. In the make procedure of webpack, Webpack internally uses an JavaScriptParser for JavaScript parsing. If an ifStatement is encountered, Webpack creates a corresponding ConstDependency. Essentially, for the ifStatement, the ConstDependency looks like this : ConstDependency { expression: \"true\", range: [start, end] // range to replace\n} It's almost the same with else branch, if there is no side effects (refer to source code for more detail), Webpack will create another ConstDependency with expression set to \"\", which in the end removes the else branch. In the seal procedure of Webpack, the record of the dependency will be applied to the original source code and generate the final result as you may have already seen above.","breadcrumbs":"webpack » dependency » Constant folding","id":"113","title":"Constant folding"},"114":{"body":"Tree-shaking is a technique of a bundle-wise DCE(dead code elimination). In the following content, I will use tree-shaking as a wording for bundle-wise and DCE for module-wise code elimination. (I know it's not quite appropriate, but you get the point) Here's an example: // webpack configuration\nmodule.exports = { optimization: { usedExports: true }\n} image-20220919182656468 image-20220919190553215 image-20220919190925073 As you can see from the red square, the initFragment is generated based on the usage of the exported symbol in the HarmonyExportSpecifierDependency [source] If foo is used in the graph, then the generated result will be this: /* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"foo\": function() { return /* binding */ foo; }\n/* harmony export */ });\nconst foo = \"foo\"; In the example above, the foo is not used, so it will be excluded in the code generation of the template of HarmonyExportSpecifierDependency and it will be dead-code-eliminated in later steps. For terser plugin, it eliminates all unreachable code in processAssets [source] .","breadcrumbs":"webpack » dependency » Tree shaking & DCE","id":"114","title":"Tree shaking & DCE"},"115":{"body":"TODO","breadcrumbs":"webpack » dependency » Things related to Persistent cache","id":"115","title":"Things related to Persistent cache"},"116":{"body":"Let's wrap everything up in a simple example! Isn't it exciting? image-20220919223228146 Given a module graph that contains three modules, the entry point of this bundle is index.js. To not make this example too complicated, we use normal import statements to reference each module (i.e: only one chunk that bundles everything will be created).","breadcrumbs":"webpack » dependency » Wrap it up!","id":"116","title":"Wrap it up!"},"117":{"body":"image-20220919223558327","breadcrumbs":"webpack » dependency » Make","id":"117","title":"Make"},"118":{"body":"image-20220919223720739","breadcrumbs":"webpack » dependency » Dependencies after make","id":"118","title":"Dependencies after make"},"119":{"body":"image-20220920180915326","breadcrumbs":"webpack » dependency » seal","id":"119","title":"seal"},"12":{"body":"","breadcrumbs":"Building and running » Prerequisites » Setup Node.js","id":"12","title":"Setup Node.js"},"120":{"body":"TODO","breadcrumbs":"webpack » dependency » References","id":"120","title":"References"},"121":{"body":"","breadcrumbs":"Meetings » Meetings","id":"121","title":"Meetings"},"122":{"body":"Go through the iteration plan","breadcrumbs":"Meetings » Tuesday meeting","id":"122","title":"Tuesday meeting"},"123":{"body":"Go through any topics that need to be discussed","breadcrumbs":"Meetings » Thursday meeting","id":"123","title":"Thursday meeting"},"124":{"body":"0.1.0 -> 0.1.1 is a patch release. 0.1.0 -> 0.2.0 is a minor release. 0.1.0 -> 1.0.0 is a major release. See details at semver.org","breadcrumbs":"Releases » Releases","id":"124","title":"Releases"},"125":{"body":"Patch releases are released Tuesday per week. Minor releases are released as needed. Major releases are released as needed. See milestones to follow our release plan.","breadcrumbs":"Releases » Release Cycle","id":"125","title":"Release Cycle"},"126":{"body":"","breadcrumbs":"Misc » Misc","id":"126","title":"Misc"},"127":{"body":"This is used for reminding ourselves to update the Rspack website for a new feature. When a PR is merged with the \"need documentation\" label, rspack-bot will create a corresponding PR in the rspack-website repo.","breadcrumbs":"Misc » \"need documentation\" label","id":"127","title":"\"need documentation\" label"},"128":{"body":"","breadcrumbs":"Appendix A: Learning resources » Appendix A: Learning resources","id":"128","title":"Appendix A: Learning resources"},"129":{"body":"","breadcrumbs":"Appendix A: Learning resources » Rust","id":"129","title":"Rust"},"13":{"body":"We recommend using the LTS version of Node.js 16. You can check your currently used Node.js version with the following command: node -v\n#v16.18.0 If you do not have Node.js installed in your current environment, you can use nvm or fnm to install it. Here is an example of how to install the Node.js 16 LTS version via nvm: # Install the LTS version of Node.js 16\nnvm install 16 --lts # Make the newly installed Node.js 16 as the default version\nnvm alias default 16 # Switch to the newly installed Node.js 16\nnvm use 16","breadcrumbs":"Building and running » Prerequisites » Install Node.js","id":"13","title":"Install Node.js"},"130":{"body":"","breadcrumbs":"Appendix A: Learning resources » Webpack","id":"130","title":"Webpack"},"131":{"body":"","breadcrumbs":"Appendix Z: Fun stuff » Appendix Z: Fun stuff","id":"131","title":"Appendix Z: Fun stuff"},"132":{"body":"Question webpack, understand webpack, become webpack","breadcrumbs":"Appendix Z: Fun stuff » Motto","id":"132","title":"Motto"},"133":{"body":"Despite being located across different cities, the rspack team has found an enjoyable way to bond when we meet in person. We play a team building game where we ask each other webpack questions. @hardfist hasn't lost a single game yet.","breadcrumbs":"Appendix Z: Fun stuff » Team building game","id":"133","title":"Team building game"},"14":{"body":"","breadcrumbs":"Building and running » Suggested Workflows » Suggested Workflows","id":"14","title":"Suggested Workflows"},"15":{"body":"We currently have two sets of test suites, one for Rust and one for Node.js.","breadcrumbs":"Testing » Testing","id":"15","title":"Testing"},"16":{"body":"cargo test will run all the rust side tests, which includes standalone tests for core functionality and plugins. UPDATE=1 cargo test will automatically update the failed snapshot","breadcrumbs":"Testing » Rust Testing","id":"16","title":"Rust Testing"},"17":{"body":"We are maintaining two test suites for Node Testing in Rspack, Rspack Testing and Webpack Testing","breadcrumbs":"Testing » Node Testing","id":"17","title":"Node Testing"},"18":{"body":"We copy the whole webpack test suites into webpack-test folder to check the compatibility with webpack. If you add features or fix bugs we recommend you check whether this feature or bug is covered in webpack test suites first. If it's covered and testable in Webpack Testing, you can enable specific test case by setting return value to true in test.filter.js in this case folder to enable this case. See more details in https://github.com/web-infra-dev/rspack/blob/main/webpack-test/README.md, Please note that don't modify original test code in Webpack Testing, if you find difficulties in running test suites without modifying original code, you can copy this test code in the following [Rspack Testing](#Rspack Testing). Run Tests # In root path\n./x build -a # build binding and js part\n./x test webpack # run webpack test suites","breadcrumbs":"Testing » Webpack Testing","id":"18","title":"Webpack Testing"},"19":{"body":"We maintain test suites in Rspack Testing which is not coverable or need to be modified in Webpack Testing. The test suites lies in rspack-test . This folder structure is similar with Webpack Testing. Run Tests # In root path\n./x build -a\n./x test js Or only test the package that you made the changes: # In the Node.js package path\npnpm run build && pnpm run test To update snapshots: pnpm --filter '@rspack/*' test -- -u","breadcrumbs":"Testing » Rspack Testing","id":"19","title":"Rspack Testing"},"2":{"body":"","breadcrumbs":"Getting started » What should I work on?","id":"2","title":"What should I work on?"},"20":{"body":"We use jest for Node.js tests, The most important test cases are the case in the packages/rspack. most of these cases comes from webpack https://github.com/webpack/webpack/tree/main/test because we want to make sure that Rspack can work as same as webpack. There are three kinds of integration cases in @rspack/core. case.test.ts Cases are used to test normal build behavior, we use these cases to test against bundler core functionality, like entry, output, module resolve, etc. it will first build your test file to test whether the input could be compiled successfully, then it will use the bundled test file to run test cases in the test file to test bundler's all kinds of behavior. configCase.test.ts Cases are used to test custom build behavior, you could use custom webpack.config.js to override default build behavior, you can use these cases to test against behavior related to specific config. statsTestCase.test.ts Cases are used to test your stats, By Default we will use jest's snapshot to snapshot your stats, and we highly recommend to avoid snapshot except statsCase. you can use statsCase to test behaviors like code splitting | bundle splitting, which is hard to test by just running code.","breadcrumbs":"Testing » Node Testing Suite Overview","id":"20","title":"Node Testing Suite Overview"},"21":{"body":"We currently have two sets of test suites, one for Rust and one for Node.js.","breadcrumbs":"Testing » intro » Testing","id":"21","title":"Testing"},"22":{"body":"cargo test will run all the rust side tests, which includes standalone tests for core functionality and plugins. UPDATE=1 cargo test will automatically update the failed snapshot","breadcrumbs":"Testing » intro » Rust Testing","id":"22","title":"Rust Testing"},"23":{"body":"We are maintaining two test suites for Node Testing in Rspack, Rspack Testing and Webpack Testing","breadcrumbs":"Testing » intro » Node Testing","id":"23","title":"Node Testing"},"24":{"body":"We copy the whole webpack test suites into webpack-test folder to check the compatibility with webpack. If you add features or fix bugs we recommend you check whether this feature or bug is covered in webpack test suites first. If it's covered and testable in Webpack Testing, you can enable specific test case by setting return value to true in test.filter.js in this case folder to enable this case. See more details in https://github.com/web-infra-dev/rspack/blob/main/webpack-test/README.md, Please note that don't modify original test code in Webpack Testing, if you find difficulties in running test suites without modifying original code, you can copy this test code in the following [Rspack Testing](#Rspack Testing). Run Tests # In root path\n./x build -a # build binding and js part\n./x test webpack # run webpack test suites","breadcrumbs":"Testing » intro » Webpack Testing","id":"24","title":"Webpack Testing"},"25":{"body":"We maintain test suites in Rspack Testing which is not coverable or need to be modified in Webpack Testing. The test suites lies in rspack-test . This folder structure is similar with Webpack Testing. Run Tests # In root path\n./x build -a\n./x test js Or only test the package that you made the changes: # In the Node.js package path\npnpm run build && pnpm run test To update snapshots: pnpm --filter '@rspack/*' test -- -u","breadcrumbs":"Testing » intro » Rspack Testing","id":"25","title":"Rspack Testing"},"26":{"body":"We use jest for Node.js tests, The most important test cases are the case in the packages/rspack. most of these cases comes from webpack https://github.com/webpack/webpack/tree/main/test because we want to make sure that Rspack can work as same as webpack. There are three kinds of integration cases in @rspack/core. case.test.ts Cases are used to test normal build behavior, we use these cases to test against bundler core functionality, like entry, output, module resolve, etc. it will first build your test file to test whether the input could be compiled successfully, then it will use the bundled test file to run test cases in the test file to test bundler's all kinds of behavior. configCase.test.ts Cases are used to test custom build behavior, you could use custom webpack.config.js to override default build behavior, you can use these cases to test against behavior related to specific config. statsTestCase.test.ts Cases are used to test your stats, By Default we will use jest's snapshot to snapshot your stats, and we highly recommend to avoid snapshot except statsCase. you can use statsCase to test behaviors like code splitting | bundle splitting, which is hard to test by just running code.","breadcrumbs":"Testing » intro » Node Testing Suite Overview","id":"26","title":"Node Testing Suite Overview"},"27":{"body":"The packages/playground provides e2e testing feature. We use playwright as the e2e testing framework.","breadcrumbs":"Testing » E2E » E2E","id":"27","title":"E2E"},"28":{"body":"The entry point of a test case is a file ending with .test.ts, and the parent directory of this file is the project directory. Here are some rules about test cases: The project directory must contain rspack.config.js to start the dev server. The project directory can contain multi *.test.ts. All test cases share dependencies, so just add dependencies in packages/playground/package.json. The cases folder should contain the category folders and then is the project folders. In principle, there should be no third-level directory.","breadcrumbs":"Testing » E2E » Cases","id":"28","title":"Cases"},"29":{"body":"The fixtures is a feature of playwright, in short it provides a variable that is generated in before{Each|All} and destroyed in after{Each|All}. More information see test-fixtures Here are some rules when defining a new fixture: Private fixtures should start with _ and are used only in the current file. A file only provides fixtures with the same name. A file can only provide one option and starts with default Register fixtures in fixtures/index.ts and export only necessary variables and types. Here are some existing fixtures: pathInfo This fixture will generate test environment, and calculate the PathInfo. type PathInfo = { // test file path testFile: string; // project dir testProjectDir: string // temporary project directory to be copied into tempProjectDir: string\n} rspack This fixture will start the rspack dev server and provide some useful methods. type Rspack = { // rspack running project directory projectDir: string // rspack compiler compiler: Compiler // rspack dev server devServer: DevServer // waiting for rspack build finish waitingForBuild: () => Promise // waiting for hmr finish, the poll function is used to check waitingForHmr: (poll: () => Promise) => Promise\n} fileAction This fixture will provide file change operations. type fileAction = { updateFile(relativePath: string, fn: (content: string) => string): void deleteFile(relativePath: string): void\n}","breadcrumbs":"Testing » E2E » Fixtures","id":"29","title":"Fixtures"},"3":{"body":"If you are looking to dive into the codebase and get started, we recommend checking out our issue list labeled with good first issue . This will help you get acquainted with the project and start contributing.","breadcrumbs":"Getting started » Good First Issue","id":"3","title":"Good First Issue"},"30":{"body":"playwright scan all test case and allocates a worker to run each case. pathInfo copy the project directory corresponding to the current case to temp/${worker_index}. rspack rewrite dev server port to 8000 + worker_index and start compiler and dev server in temp/${worker_index}. run current tests. rspack close dev server and compiler. pathInfo clear temp/${worker_index}","breadcrumbs":"Testing » E2E » How it works","id":"30","title":"How it works"},"31":{"body":"","breadcrumbs":"Debugging » Debugging","id":"31","title":"Debugging"},"32":{"body":"Install go install github.com/go-delve/delve/cmd/dlv@latest Install VSCode extension rust-analyzer and CodeLLDB build @rspack/cli and napi binding by run pnpm install && pnpm -w build:cli:debug In VSCode's Run and Debug tab, select debug-rspack to start debugging the initial launch of @rspack/cli. This task can be configured in .vscode/launch.json, which launches the Node and Rust debugger together.","breadcrumbs":"Debugging » Debugging with VSCode","id":"32","title":"Debugging with VSCode"},"33":{"body":"tracing is used to instrumenting Rspack. The supported tracing levels for release builds are INFO, WARN and ERROR debug builds are TRACE, DEBUG, INFO, WARN and ERROR Use the RSPACK_PROFILE environment variable for displaying trace information RSPACK_PROFILE=TRACE=layer=logger rspack build\n# filter for an event\nRSPACK_PROFILE='TRACE=layer=logger&filter=rspack_core::compiler::compilation' rspack build\n# disable ansi color escape codes\nNO_COLOR=1 RSPACK_PROFILE=TRACE=layer=logger rspack build","breadcrumbs":"Debugging » Tracing","id":"33","title":"Tracing"},"34":{"body":"oxc_resolver emits some tracing information for debugging purposes. RSPACK_PROFILE='TRACE=filter=oxc_resolver=trace&layer=logger' rspack build","breadcrumbs":"Debugging » oxc_resolver","id":"34","title":"oxc_resolver"},"35":{"body":"rust-lldb can be used to get panic information from debug builds rust-lldb -- node /path/to/rspack build Once it launches, press r for running the program. For example, examples/arco-pro crashes without any information before this fix : rspack/examples/arco-pro ❯ node ../../packages/rspack-cli/bin/rspack build\nRspack ██████████████████████░░░░░░░░░░░░░░░░░░ 56% building ./pages/welcome\nzsh: bus error node ../../packages/rspack-cli/bin/rspack build Using rust-lldb rspack/examples/arco-pro ❯ rust-lldb -- node ../../packages/rspack-cli/bin/rspack build Press r and it prints: Process 23110 stopped\n* thread #10, name = 'tokio-runtime-worker', stop reason = EXC_BAD_ACCESS (code=2, address=0x70000cc66560) frame #0: 0x0000000140d0db4b rspack.darwin-x64.node`swc_ecma_parser::parser::expr::ops::_$LT$impl$u20$swc_ecma_parser..parser..Parser$LT$I$GT$$GT$::parse_unary_expr::h29f49330a806839c(self=0x0000000000000000) at ops.rs:244 241 /// Parse unary expression and update expression. 242 /// 243 /// spec: 'UnaryExpression'\n-> 244 pub(in crate::parser) fn parse_unary_expr(&mut self) -> PResult> { 245 trace_cur!(self, parse_unary_expr); 246 let start = cur_pos!(self); 247\nTarget 0: (node) stopped.","breadcrumbs":"Debugging » rust-lldb","id":"35","title":"rust-lldb"},"36":{"body":"This discussion aims to illustrate the method for mixed debugging between JavaScript and Rust.","breadcrumbs":"Debugging » Mixed debug » Mixed Debugging Between JavaScript and Rust","id":"36","title":"Mixed Debugging Between JavaScript and Rust"},"37":{"body":"To illustrate this process, I'll use an example. Let's start by introduce the environment and example I have used. System: macos IDE: vscode Debugging target: rspack build ${projectRoot}/basic Firstly, you need to build rspack in debug mode. To do this, execute the following commands in the project's root directory: npm run build:binding:debug\nnpm run build:js","breadcrumbs":"Debugging » Mixed debug » Prerequisites","id":"37","title":"Prerequisites"},"38":{"body":"It's necessary to configure two debug configurations within in .vscode/launch.json. attach for node: { \"name\": \"attach:node”, \"request\": \"attach\", // refer: https://code.visualstudio.com/docs/editor/debugging#_launch-versus-attach-configurations \"type\": \"node\", // `9229` is the default port of message \"port\": 9229\n} and launch for lldb { \"name\": \"launch:rust-from-node\", \"request\": \"launch”, \"type\": \"lldb\", // it means we use `lldb` to launch the binary file of `node` \"program\": \"node”, \"args\": [ \"--inspect\", \"--enable-source-maps\", \"${workspaceFolder}/packages/rspack-cli/bin/rspack\", \"build\", \"-c\", \"${workspaceFolder}/examples/basic/rspack.config.js\", ], // `cwd` is just for repack find the correctly entry. \"cwd\": \"${workspaceFolder}/examples/basic/\"\n} Next, we can utilize compounds to amalgamate the two commands: { \"name\": \"mix-debug\", \"configurations\": [ \"attach:node\", \"launch:rust-from-node\" ]\n} Finally, your launch.json should appear as follows: { \"configurations\": [ { \"name\": \"attach:node\", \"request\": \"attach\", \"type\": \"node\", \"port\": 9229 }, { \"name\": \"launch:rust-from-node\", \"request\": \"launch\", \"type\": \"lldb\", \"program\": \"node\", \"args\": [ \"--inspect\", \"--enable-source-maps\", \"${workspaceFolder}/packages/rspack-cli/bin/rspack\", \"build\", \"-c\", \"${workspaceFolder}/examples/basic/rspack.config.js\", ], \"cwd\": \"${workspaceFolder}/examples/basic/\" } ], \"compounds\": [ { \"name\": \"mix-debug\", \"configurations\": [ \"attach:node\", \"launch:rust-from-node\" ] } ]\n}","breadcrumbs":"Debugging » Mixed debug » Configure launch.json in vscode","id":"38","title":"Configure launch.json in vscode"},"39":{"body":"Next, we can introduce some breakpoints and commence debugging. The result appears as follows: Your browser does not support the video tag.","breadcrumbs":"Debugging » Mixed debug » Debugging Attempt","id":"39","title":"Debugging Attempt"},"4":{"body":"If you are interested in understanding our project's direction and want to work on issues that are aligned with our priorities, our tracking issues list provides an overview of our progress and current goals.","breadcrumbs":"Getting started » Tracking Issue","id":"4","title":"Tracking Issue"},"40":{"body":"In this section, we'll explore how to profile Rspack for identifying bottlenecks. By examining where Rspack spends its time, we can gain insights into how to improve performance. Tracing Chrome Terminal Nodejs Profiling Mac Xcode Instruments","breadcrumbs":"Profiling » Profiling","id":"40","title":"Profiling"},"41":{"body":"tracing is used to instrumenting Rspack. The supported tracing levels for release builds are INFO, WARN and ERROR debug builds are TRACE, DEBUG, INFO, WARN and ERROR Two ways to enable tracing: if you are using @rspack/cli, you can enable it by RSPACK_PROFILE environment variable. if you are using @rspack/core without @rspack/cli, you can enable it by experimental_registerGlobalTrace and experimental_cleanupGlobalTrace, checkout how we implement RSPACK_PROFILE in @rspack/cli with these two function for more details.","breadcrumbs":"Profiling » Tracing","id":"41","title":"Tracing"},"42":{"body":"tracing-chrome is supported for viewing tracing information graphically. Setting the environment variable RSPACK_PROFILE=TRACE=layer=chrome before running Rspack, for example RSPACK_PROFILE=TRACE=layer=chrome rspack build produces a trace file (.rspack-profile-${timestamp}/trace.json) in the current working directory. The JSON trace file can be viewed in either chrome://tracing or ui.perfetto.dev .","breadcrumbs":"Profiling » Chrome","id":"42","title":"Chrome"},"43":{"body":"Granular tracing event values can be viewed inside the terminal via RSPACK_PROFILE=TRACE=layer=logger, for example RSPACK_PROFILE=TRACE=layer=logger rspack build will print the options passed to Rspack as well as each individual tracing event.","breadcrumbs":"Profiling » Terminal","id":"43","title":"Terminal"},"44":{"body":"If we find that the performance bottleneck is on the JS side (e.g. js loader), then we need to further analyse the js side, and we can use Nodejs Profiling to analyse. for example node --cpu-prof {rspack_bin_path} -c rspack.config.js or RSPACK_PROFILE=JSCPU rspack build this will generates a cpu profile like CPU.20230522.154658.14577.0.001.cpuprofile, and we can use speedscope to visualize the profile, for example npm install -g speedscope\nspeedscope CPU.20230522.154658.14577.0.001.cpuprofile","breadcrumbs":"Profiling » Nodejs Profiling","id":"44","title":"Nodejs Profiling"},"45":{"body":"Xcode instruments can be used to produce a CPU profile if you are on a Mac. To install Xcode Instruments, simply install the Command Line Tools: xcode-select --install For normal Rust builds, cargo instruments can be used as the glue for profiling and creating the trace file. Since Rspack takes quite a while to build, you can use the following procedure without invoking cargo instruments. It has the same effect. In crates/node_binding/Cargo.toml, turn on debug symbols and disable symbol stripping in the [profile.release] section [profile.release]\ndebug = 1 # debug info with line tables only\nstrip = false # do not strip symbols Then build the project pnpm run build:cli:release The final binary is located at packages/rspack-cli/bin/rspack once the project is built. Under the hood, cargo instruments invokes the xcrun command, which means we can run the following in our own project that uses Rspack. xcrun xctrace record --template 'Time Profile' --output . --launch -- /path/to/rspack/packages/rspack-cli/bin/rspack build It produces the following output Starting recording with the Time Profiler template. Launching process: rspack.\nCtrl-C to stop the recording\nTarget app exited, ending recording...\nRecording completed. Saving output file...\nOutput file saved as: Launch_rspack_2023-04-24_11.32.06_9CFE3A63.trace We can open the trace file by open Launch_rspack_2023-04-24_11.32.06_9CFE3A63.trace","breadcrumbs":"Profiling » Mac Xcode Instruments","id":"45","title":"Mac Xcode Instruments"},"46":{"body":"All releases are automated through GitHub actions. All published releases of @rspack/cli can be found on the npm versions page . They are tagged as latest with semver version x.y.z nightly canary","breadcrumbs":"Releasing » Releasing","id":"46","title":"Releasing"},"47":{"body":"The full release workflow is currently triggered manually every Tuesday with full release notes. The following 9 targets are built x86_64-unknown-linux-gnu aarch64-unknown-linux-gnu x86_64-unknown-linux-musl aarch64-unknown-linux-musl i686-pc-windows-msvc x86_64-pc-windows-msvc aarch64-pc-windows-msvc x86_64-apple-darwin aarch64-apple-darwin","breadcrumbs":"Releasing » Latest Full Release","id":"47","title":"Latest Full Release"},"48":{"body":"The nightly release workflow is triggered every day at UTC 16:00:07, which is 00:07 AM Beijing Time (offset with an odd minute to avoid cron jobs firing off at the same time). The nightly build fully replicates the full release build for catching errors early.","breadcrumbs":"Releasing » Nightly","id":"48","title":"Nightly"},"49":{"body":"Commenting on a PR with the text !canary triggers the canary release workflow . Only contributors have the permission to publish canary releases. The canary release only builds three targets for quicker feedback aarch64-apple-darwin x86_64-apple-darwin x86_64-unknown-linux-gnu","breadcrumbs":"Releasing » Canary","id":"49","title":"Canary"},"5":{"body":"We are always looking for contributors, and that goes beyond just our main repository. Check out these other ways to get involved and start making a difference today. The documentation website is at web-infra-dev/rspack-website This dev guide is at web-infra-dev/rspack-dev-guide Community packages is at https://github.com/rspack-contrib As a reminder, all contributors are expected to follow our Code of Conduct .","breadcrumbs":"Getting started » Other ways to contribute","id":"5","title":"Other ways to contribute"},"50":{"body":"Thank you for your interest in contributing to Rspack! There are many ways to contribute, and we appreciate all of them.","breadcrumbs":"Contribution procedures » Intro","id":"50","title":"Intro"},"51":{"body":"Fork the Rspack repository into your own GitHub account. Clone the repository to your local. Checkout a new branch from main. Set up the development environment, you can read the \"Setup Development Environment\" section below to learn about it. If you've fixed a bug or added code that should be tested, then add some tests. Make sure all the tests pass, you can read the \"Testing\" section below to learn about it. Run pnpm run lint:js and pnpm run lint:rs to check the code style. If you've changed some Node.js packages, you should add a new changeset . Run pnpm run changeset, select the changed packages and add the changeset info. If you've changed some Rust packages, you should add a new changeset for @rspack/binding package. Submit the Pull Request, make sure all CI runs pass. The maintainers will review your Pull Request soon. When submitting a Pull Request, please note the following: Keep your PRs small enough, so that each PR only addresses a single issue or adds a single feature. Please include an appropriate description in the PR, and link related issues.","breadcrumbs":"Contribution procedures » Sending a Pull Request","id":"51","title":"Sending a Pull Request"},"52":{"body":"The format of PR titles follow Conventional Commits. A example feat(ui): Add `Button` component\n^ ^ ^\n| | |__ Subject\n| |_______ Scope\n|____________ Type Your PR must have a Type Optionally have a Scope Scope should be lower case must have a Subject","breadcrumbs":"Contribution procedures » Format of PR titles","id":"52","title":"Format of PR titles"},"53":{"body":"The rspack repro template can be used to create a minimal reproducible example. A minimal reproducible example (MRE) is a code that is: Short Self-contained Demonstrates the problem being encountered An MRE is essential because it allows us to quickly understand and reproduce your issue. This, in turn, increases the likelihood of getting a helpful and accurate response in a shorter amount of time. It is important to note that an MRE should not include extraneous code related to unrelated functionality, and should instead focus solely on the problem at hand. Please see also How to create a Minimal, Reproducible Example from Stackoverflow.","breadcrumbs":"Minimal reproducible example » Minimal reproducible example","id":"53","title":"Minimal reproducible example"},"54":{"body":"If you need guidance or assistance with a specific area of the project, check out the CODEOWNERS file on GitHub. This file lists the preferred person to contact for each area.","breadcrumbs":"About the team » About the team","id":"54","title":"About the team"},"55":{"body":"This page explains the meanings of Rspack repository's labels. C Contribution welcome G Good first issue","breadcrumbs":"Managing labels » Managing labels","id":"55","title":"Managing labels"},"56":{"body":"","breadcrumbs":"Managing labels » C","id":"56","title":"C"},"57":{"body":"","breadcrumbs":"Managing labels » Contribution welcome","id":"57","title":"Contribution welcome"},"58":{"body":"","breadcrumbs":"Managing labels » G","id":"58","title":"G"},"59":{"body":"","breadcrumbs":"Managing labels » Good first issue","id":"59","title":"Good first issue"},"6":{"body":"This guide is meant to help document how Rspack works, as well as to help new contributors get involved in Rspack development.","breadcrumbs":"About this guide » About this guide","id":"6","title":"About this guide"},"60":{"body":"This is the architecture of current rspack implementation","breadcrumbs":"rspack » rspack","id":"60","title":"rspack"},"61":{"body":"loader","breadcrumbs":"rspack » Table of Contents","id":"61","title":"Table of Contents"},"62":{"body":"rspack#2780 rspack#2808","breadcrumbs":"rspack » loader » Related PRs","id":"62","title":"Related PRs"},"63":{"body":"The old architecture is a quite simple version, which only supports loaders for normal stage. Pitching loader does not put into consideration. The basic concept of the old version is to convert the normal loader to a native function which can be called from the Rust side. Furthermore, for performance reason, Rspack also composes loaders from the JS side to mitigate the performance issue of Node/Rust communications. In this new architecture, loaders will not be converted directly into native functions. Instead, it is almost the same with how webpack's loader-runner resolves its loaders, by leveraging the identifier. Every time Rspack wants to invoke a JS loader, the identifiers will be passed to the handler passed by Node side to process. The implementation also keeps the feature of composing JS loaders for performance reason.","breadcrumbs":"rspack » loader » Summary","id":"63","title":"Summary"},"64":{"body":"The refactor does not introduce any other breaking changes. So it's backwards compatible. The change of the architecture also help us to implement pitching loader with composability.","breadcrumbs":"rspack » loader » Guide-level explanation","id":"64","title":"Guide-level explanation"},"65":{"body":"Pitching loader is a technique to change the loader pipeline flow. It is usually used with inline loader syntax for creating another loader pipeline. style-loader, etc and other loaders which might consume the evaluated result of the following loaders may use this technique. There are other technique to achieve the same ability, but it's out of this article's topic. See Pitching loader for more detail.","breadcrumbs":"rspack » loader » Pitching loader","id":"65","title":"Pitching loader"},"66":{"body":"","breadcrumbs":"rspack » loader » Reference-level explanation","id":"66","title":"Reference-level explanation"},"67":{"body":"In the original implementation of loader, Rspack will convert the normal loaders in the first place, then pass it to the Rust side. In the procedure of building modules, these loaders will be called directly: Old architecture The loader runner is only on the Rust side and execute the loaders directly from the Rust side. This mechanism has a strong limit for us to use webpack's loader-runner for composed loaders. In the new architecture, we will delegate the loader request from the Rust core to a dispatcher located on the JS side. The dispatcher will normalize the loader and execute these using a modified version of webpack's loader-runner: image Loader functions for pitch or normal will not be passed to the Rust side. Instead, each JS loader has its identifier to uniquely represent each one. If a module requests a loader for processing the module, Rspack will pass identifier with options to the JS side to instruct the Webpack like loader-runner to process the transform. This also reduces the complexity of writing our own loader composer.","breadcrumbs":"rspack » loader » Actor of loader execution","id":"67","title":"Actor of loader execution"},"68":{"body":"Options will normally be converted to query, but some of the options contain fields that cannot be serialized, Rspack will reuse the loader ident created by webpack to uniquely identify the option and restore it in later loading process.","breadcrumbs":"rspack » loader » Passing options","id":"68","title":"Passing options"},"69":{"body":"As we had known before, each loader has two steps, pitch and normal. For a performance friendly interoperability, we must reduce the communication between Rust and JS as minimum as possible. Normally, the execution steps of loaders will look like this: image The execution order of the loaders above will looks like this: loader-A(pitch) loader-B(pitch) loader-C(pitch) loader-B(normal)\nloader-A(normal) The example above does not contain any JS loaders, but if, say, we mark these loaders registered on the JS side: image The execution order will not change, but Rspack will compose the step 2/3/4 together for only a single round communication.","breadcrumbs":"rspack » loader » Optimization for pitching","id":"69","title":"Optimization for pitching"},"7":{"body":"Please see prerequisites for setting up Rust and Node.js.","breadcrumbs":"Building and running » How to build and run the compiler","id":"7","title":"How to build and run the compiler"},"70":{"body":"This is the architecture of webpack implementation","breadcrumbs":"webpack » webpack","id":"70","title":"webpack"},"71":{"body":"loader dependency","breadcrumbs":"webpack » Table of Contents","id":"71","title":"Table of Contents"},"72":{"body":"Based on Webpack version: 5.73.0 . Explain how webpack loader works. Even though it's a little bit long and tedious, It's still a teeny-tiny peek at the loader system of Webpack.","breadcrumbs":"webpack » loader » Summary","id":"72","title":"Summary"},"73":{"body":"What's the meaning of a word used to describe a feature? Why does the Webpack introduce this and what's the background of introducing this? What kind of problem Webpack was facing at the time?","breadcrumbs":"webpack » loader » Glossary","id":"73","title":"Glossary"},"74":{"body":"import Styles from '!style-loader!css-loader?modules!./styles.css'; Inline loader syntax : The syntax that chains the loader together within the specifier, followed by the file requested. e.g. !style-loader!css-loader?modules!./style.css request: The request with inline loader syntax retained. Webpack will convert relative URLs and module requests to absolute URLs for loaders and files requested. e.g. !full-path-to-the-loader-separated-with-exclamation-mark!full-path-to-styles.css","breadcrumbs":"webpack » loader » Request Related","id":"74","title":"Request Related"},"75":{"body":"import xxx from \"./index.js?vue=true&style#some-fragment\" resource : The absolute path to the requested file with query and fragment retained but inline loader syntax removed. e.g. absolute-path-to-index-js.js?vue=true&style#some-fragment resourcePath : The absolute path to the requested file only. e.g. absolute-path-to-index-js.js resourceQuery : Query with question mark ? included. e.g. ?vue=true&style resourceFragment : e.g. #some-fragment inline match resource: Used to redirect the module.rules to another, which is able to adjust the loader chain. We will cover this later. Ref: related PR Webpack Doc1 Webpack Doc2 virtualResource: The proposed solution to support asset type changing(A sugar to inline matchResource, which can also affect the asset filename generation) See more: the background of this property","breadcrumbs":"webpack » loader » Resource Related","id":"75","title":"Resource Related"},"76":{"body":"Virtual Module: A kind of module that does not locate in the real file system. But you can still import it. To create a virtual module, you need to follow the spec and it's also worth noting that Node.js and Webpack both support it under the scheme of data:. Also known as, data: import. Doc to Node.js Module types with native support: Webpack supports the following module types native: 'javascript/auto' | 'javascript/dynamic' | 'javascript/esm' | 'json' | 'webassembly/sync' | 'webassembly/async' | 'asset' | 'asset/source' | 'asset/resource' | 'asset/inline', for those types you can use it without a loader . From webpack version 4.0+, webpack can understand more than javascript alone.","breadcrumbs":"webpack » loader » Others but also important to note","id":"76","title":"Others but also important to note"},"77":{"body":"","breadcrumbs":"webpack » loader » Guide-level explanation","id":"77","title":"Guide-level explanation"},"78":{"body":"The way that webpack controls what kind of module that each loader would apply is based on module.rules const MiniExtractCssPlugin = require(\"mini-extract-css-plugin\") module.exports = { module: { rules: [ { test: /\\.vue$/, use: [\"vue-loader\"] }, { test: /\\.css$/, use: [MiniExtractCssPlugin.loader, \"css-loader\"] } ] }, plugins: [new MiniExtractCssPlugin()]\n} Here is a simple option for the configuration of vue-loader. module.rules[number].test is a part rule to test whether a rule should be applied . For vue-loader alone, It's kind of confusing how webpack pass the result to the rule of css, we will cover this later. But for now, It's good to notice there is not only a test option alone to test if a rule should be applied . You can find it here for full conditions supported. Here're some examples of other conditions you can use. module.exports = { module: { rules: [ { test: /\\.vue$/, // of course, test if the file extension match `vue`. scheme: \"data\", // if the specifier of a request starts with `data:` resourceQuery: \"?raw\", // if the `resourceQuery` matches then the rule will be applied. For this example, it's a great idea to apply a `raw-loader` here. type: \"css\" // use webpack's native resource handling for css } ] }\n}","breadcrumbs":"webpack » loader » Loader configuration","id":"78","title":"Loader configuration"},"79":{"body":"","breadcrumbs":"webpack » loader » Examples","id":"79","title":"Examples"},"8":{"body":"Install Node.js dependencies via pnpm . # enable pnpm with corepack, only available on node >= `v14.19.0`\ncorepack enable # or install pnpm directly\nnpm install -g pnpm@7 # Install dependencies\npnpm install","breadcrumbs":"Building and running » Install Node.js dependencies","id":"8","title":"Install Node.js dependencies"},"80":{"body":"In a single file component(SFC) of Vue, there are commonly three blocks or more blocks( custom blocks ) contained. The basic idea of implementing this loader is to convert it into JavaScript / CSS and let webpack handle the chunk generation(e.g. Style should be generated into a separate .css file) ⬇️⬇️⬇️⬇️⬇️⬇️ Vue-loader will firstly turn into the *.vue file into something like that. import \"script-path-to-vue-sfc\";\nimport \"template-path-to-vue-sfc\";\nimport \"style-path-to-vue-sfc\"; You may find it weird how webpack handles these imports and build the transformed code. But if I change the code a little bit, you will find the idea. import \"script:path-to-vue-sfc\";\nimport \"template:path-to-vue-sfc\";\nimport \"style:path-to-vue-sfc\"; and if we tweak the configuration a little bit to this, webpack will know exactly how to work with these import statements. module.exports = { module: { rules: [ { test: /\\.vue$/, use: [\"vue-loader\"] }, { scheme: \"script\", use: [\"apply-your-javascript-loader\", \"vue-script-extract-loader\"] }, { scheme: \"template\", use: [\"apply-your-javascript-loader\", \"vue-template-extract-loader\"] }, { scheme: \"style\", use: [\"apply-your-style-loader\", \"vue-style-extract-loader\"] } ] }\n} We added a few loaders to handle the splitting. I know it's still kind of weird here, but please stick with me and we will find a better way out. vue-script-extract-loader: extract the script block from a SFC file. vue-style-extract-loader: extract the style block from a SFC file. vue-template-extract-loader: extract the template block from a SFC file and convert it into JavaScript. You will find it's really noisy only to transform a *.vue file, four loaders were introduced and I believe none of you would like to separate a simple loader into four. It's a real bummer! It will be great to use a single loader vue-loader alone. The current vue loader implementation uses resourceQuery to handle this. But how? Loader optimizations I We know that webpack uses a few conditions to handle whether a rule should be applied. Even with rule.test alone, the this.reousrceQuery is still available to loaderContext which developer could access it with this in any loader function(Don't worry if you still don't catch this. You will understand this after). Based on that, we change the rule to this: module.exports = { module: { rules: [ { test: /.vue$/, use: [\"vue-loader\"] } ] }\n} This indicates \"If an import specifier is encountered, please pass me to vue-loader\"! If you remember the import transformation above, we could adjust the transformation a little bit to this: Before import \"script-path-to-vue-sfc\";\nimport \"template-path-to-vue-sfc\";\nimport \"style-path-to-vue-sfc\"; After import \"path-to-vue-sfc.vue?script=true\";\nimport \"path-to-vue-sfc.vue?template=true\";\nimport \"path-to-vue-sfc.vue?style=true\"; These requests will match the test: /.vue$/ above flawlessly and in the loader we can handle like this: // pseudo code only for proofing of the concept\nconst compiler = require(\"some-vue-template-compiler\") const loader = function(source) { const { resourceQuery /* ?script=true or something else */, resourcePath /* path-to-vue-sfc.vue */ } = this if (resourceQuery === \"?script=true\") { return compiler.giveMeCodeofScriptBlock(this.resourcePath) // javascript code } else if (resourceQuery === \"?template=true\") { return compiler.giveMeCodeofTemplateBlock(this.resourcePath) // javascript code } else if (resourceQuery === \"?style=true\") { return compiler.giveMeCodeofStyleBlock(this.resourcePath) // style code } else { return ` import `${this.resourcePath}?script=true`; import `${this.resourcePath}?template=true`; import `${this.resourcePath}?style=true`; ` }\n} module.exports = loader You can see the loader for the example above will be used for four times. Encounter a *.vue file, transform the code to a few import statements For each import statement introduced in the first transformation, the loader will be used again as they share the same extension vue. Is this the end? No! Even if you wrote the code like this, it will still fail to load. For CSS: You haven't tell webpack a way to handle the CSS, remember the CSS part is required to go through the css-loader and then mini-css-extract(if you want to generate CSS for chunk) or style-loader(if you want to append it directly to the DOM). After all, you have to make the result of style to pass these loaders. For JS: You haven't transformed the code to any transpilers, It will be failed if your runtime doesn't support the syntax(maybe in TypeScript for example) and webpack internal acorn compiler does not have the ability to help you with that. Pass the code to the corresponding loaders We tweak the configuration a little bit again. module.exports = { module: { rules: [ { test: /.vue$/, use: [\"vue-loader\"] }, { test: /.css$/, use: [MiniCssExtractPlugin.loader, \"css-loader\"] }, { test: /.js$/, use: [\"babel-loader\"] } ] }\n} It looks a bit more like the \"normal\" Webpack configuration. Note that the rule.test is based on the file extension, so vue-loader did a little bit of hack here. // pseudo code only for proofing of the concept\nconst compiler = require(\"some-vue-template-compiler\") const loader = function(source) { const { resourceQuery /* ?script=true or something else */, resourcePath /* path-to-vue-sfc.vue */ } = this if (resourceQuery === \"?script=true\") { const code = compiler.giveMeCodeofScriptBlock(this.resourcePath) // javascript code this.resourcePath += \".js\" return code } else if (resourceQuery === \"?template=true\") { const code = compiler.giveMeCodeofTemplateBlock(this.resourcePath) // javascript code this.resourcePath += \".js\" return code } else if (resourceQuery === \"?style=true\") { const code = compiler.giveMeCodeofStyleBlock(this.resourcePath) // style code this.resourcePath += \".css\" // based on the `lang` in each script, the extension will be set accordingly. return code } else { return ` import `${this.resourcePath}?script=true`; import `${this.resourcePath}?template=true`; import `${this.resourcePath}?style=true`; ` }\n} module.exports = loader Webpack uses resourcePath to match a module.rules. So this hack will let webpack treat blocks accordingly as if they are real files with extensions of js | css |... . Finally! But this is only a proof of concept, for the real implementation. You should definitely check out the vue-loader yourself. Loader Optimization II Well done! We implemented a simple and rudimentary version of vue-loader. However, the real pain-in-the-ass part of this implementation is hacking the extension to match the configuration. But since almost every user would have other js | css files included in the project, so vue team decide to use this kind of strategy to reuse the user configuration. Except for hacking the extension, webpack then provided a more legit way to handle this kind of rule matching problem which is known as inline match resource (We covered it in the glossary part). inline match resource Webpack can do almost anything with an import specifier like the loader chaining we covered in the glossary part. Inline source match is another case. By taking the advantage of it, you can force an import statement to go through a module.rules by introducing the !=! syntax. For example, if we want to force a css file to go through a less loader, it will be look like this: module.exports = { module: { rules: [ { test: /.less$/, use: [\"style-loader\", \"css-loader\", \"less-loader\"] } ] }\n} // This import should be converted with a loader // treat the file as `less`\nimport \"./index.css.less!=!./index.css\" The slice before the !=! is a way to modify the extension of a single file and force it to match the module.rules and this transformation is often done in a loader, or you will make your application code specialized for Webpack only. After going through the basic example, let's see how we're going to optimize out the hack used in vue-loader. // pseudo code only for proofing of the concept\nconst compiler = require(\"some-vue-template-compiler\") const loader = function(source) { const { resourceQuery /* ?script=true or something else */, resourcePath /* path-to-vue-sfc.vue */ } = this if (resourceQuery === \"?vue=true&script=true\") { return compiler.giveMeCodeofScriptBlock(this.resourcePath) // javascript code } else if (resourceQuery === \"?vue=true&template=true\") { return compiler.giveMeCodeofTemplateBlock(this.resourcePath) // javascript code } else if (resourceQuery === \"?vue=true&style=true\") { return compiler.giveMeCodeofStyleBlock(this.resourcePath) // style code } else { return ` import `${this.resourcePath}.js!=!${this.resourcePath}?vue=true&script=true`; import `${this.resourcePath}.js!=!${this.resourcePath}?vue=true&template=true`; import `${this.resourcePath}.css!=!${this.resourcePath}?vue=true&style=true`; ` }\n} module.exports = loader Webpack will internally use the match resource part(before !=!) as the data to match loaders. In order to let vue-loader match the resource. We have two options: Loose test Inline loader syntax 1. Loose test module.exports = { module: { rules: [ { test: /\\.vue/, // original: `/\\.vue$/`, we removed the `$` to allow resources with `.vue` included to match this rule. use: [\"vue-loader\"] } ] }\n} We removed the $ to allow resources with .vue included matching this rule. Personally speaking, this is not a good idea, because a loose match might cause mismatches. 2. Inline loader syntax // vue-loader/index.js module.exports = function() { // ... code omitted return ` import `${this.resourcePath}.js!=!${__filename}!${this.resourcePath}?vue=true&script=true`; import `${this.resourcePath}.js!=!${__filename}!${this.resourcePath}?vue=true&template=true`; import `${this.resourcePath}.css!=!${__filename}!${this.resourcePath}?vue=true&style=true`; `\n} This technique is to take advantage of the inline loader syntax to force the loader to go through the vue loader. This tackles down the tangible mismatching ideally and we can still retain the test regex /\\.vue$/ as-is. Final art and conclusion Configuration module.exports = { module: { rules: [ { test: /\\.vue$/, use: [\"vue-loader\"] }, // ... other rules for js, or css, etc. ] } } Loader // pseudo code only for proofing of the concept\nconst compiler = require(\"some-vue-template-compiler\") const loader = function(source) { const { resourceQuery /* ?script=true or something else */, resourcePath /* path-to-vue-sfc.vue */ } = this if (resourceQuery === \"?vue=true&script=true\") { return compiler.giveMeCodeofScriptBlock(resourcePath) // javascript code } else if (resourceQuery === \"?vue=true&template=true\") { return compiler.giveMeCodeofTemplateBlock(resourcePath) // javascript code } else if (resourceQuery === \"?vue=true&style=true\") { return compiler.giveMeCodeofStyleBlock(resourcePath) // style code } else { return ` import `${this.resourcePath}.js!=!${__filename}!${resourcePath}?vue=true&script=true`; import `${this.resourcePath}.js!=!${__filename}!${resourcePath}?vue=true&template=true`; import `${this.resourcePath}.css!=!${__filename}!${resourcePath}?vue=true&style=true`; ` }\n} module.exports = loader Conclusion Vue-loader is quite complex. The basic needs of the loader are: Separate a *.vue file request into a number of parts. For each block, explicitly change the resource matching mechanism (using inline match resource ). The killer inline match resource not only gives us great composability with user-defined loaders, but also the ability to interact with webpack supported native types, and we will cover this part late. When requesting the vue-loader again for a block, the code of each block is returned and let webpack handle the changed matched resource(e.g. ./App.vue.css) with user-defined loaders (Webpack did this internally).","breadcrumbs":"webpack » loader » Vue(1 to n)","id":"80","title":"Vue(1 to n)"},"81":{"body":"We know that webpack only supports JavaScript in the old time, from the version of 4.0.0+( changelog ) Simplified pre-processor's configuration With the experimental support of CSS. A.K.A webpack knows how to handle CSS files natively. Before module.exports = { module: { rules: [ { test: /\\.less$/, use: [\"style-loader\", \"css-loader\", \"less-loader\"], type: \"javascript/auto\" // this field is a implicit one, if not defined, it will be set to `\"javascript/auto\"` } ] }\n} After module.exports = { module: { rules: [ { test: /\\.less$/, use: [\"less-loader\"], type: \"css\" } ] }, experiments: { css: true }\n} With experiments.css on, webpack can experimentally understand the parsing and generating of css files which gets rid of css-loader and style-loader. For the full list of natively supported Rule.type, you can find it here . Asset modules From webpack 4.0.0+ , assets are supported natively module.exports = { module: { rules: [ { test: /\\.(png|jpg)/, type: \"asset\" } ] }\n} Rule.type === \"asset\" indicates the asset will be automatically tested whether it's going to be inlined or emitted as a file on the real file system. The possible options are: 'asset' | 'asset/source' | 'asset/resource' | 'asset/inline'","breadcrumbs":"webpack » loader » Use natively supported module types","id":"81","title":"Use natively supported module types"},"82":{"body":"Webpack loader will read the source to a UTF-8 string by default. For SVG files, this would fit the webpack load defaults. // Proof of concept of svgr-loader\nmodule.exports = function(source) { if (this.resourceQuery === \"?svgr=true\") { // the real transform part let { code } = svgrTransformer.transform(source); return code } return `require(\"${this.resourcePath}.jsx!=!${__filename}!${this.resourcePath}?svgr=true\")` // the request part\n} Again here we use double-pass to firstly convert each request to the request part with inline match resource , and do the real request with query ?svgr=true, and let inline match resource handle the jsx conversion. Before that, we have to call a third-party jsx transformer, could be ESBuild for example, for which we cannot reuse other module.rules set by the user-side. Inline match resource saved our ass again!","breadcrumbs":"webpack » loader » Svgr","id":"82","title":"Svgr"},"83":{"body":"Supported in Webpack version 5.38.0 , doc: Rule.scheme // JavaScript\nimport x from \"data:text/javascript,export default 42\"\nconsole.log('x:',x); /* CSS */\n@import (\"data:text/css, body { background: #fff; }\"); Webpack handles data: imports for JavaScript internally.","breadcrumbs":"webpack » loader » Scheme imports","id":"83","title":"Scheme imports"},"84":{"body":"Asset : This is a general term for the images, fonts, media, and any other kind of files that are typically used in websites and other applications. These typically end up as individual files within the output but can also be inlined via things like the style-loader or url-loader . Originally posted at Webpack Glossary Default resource reading override Asset could be formatted in both text(*.svg) or binary (*.png / *.jpg). For loaders, webpack provides you an option raw to override the default and built-in resource reading strategy from UTF-8 string to Buffer: module.exports = function(source /* Buffer */ ) { // loader implementation\n} module.exports.raw = true Transform and rename Image there is a need to transform an asset formatted with png to jpg. There is two abilities that webpack needs to support: Handle the asset with raw content, or a Buffer. We can simply override the default resource reading behavior by exporting raw(covered before). Change the filename, and reuse the loader for both png and jpg Configuration module.exports = { module: { rules: [ { test: /\\.png/, use: [\"png-to-jpg-loader\"] // some png to jpg loader, we will implement this }, { test: /\\.jpg/, use: [\"jpg-optimizer\"] // some jpg optimizer, we will not covert this, type: \"asset/resource\" } ] }\n} Rule1: For files with extension png, we want to use a png to jpg loader, which will be covered in this article. Rule2: For files with extension jpg, we want to use a third-party jpg-optimizer, which will not be covered in this article. type: \"asset/resource\": As soon as all the loaders have gone through, we want webpack to emit the file as an external resource on the file system regardless of the file size(type: \"asset\" will automatically detect the size of an asset to determine whether an asset will be inline-included for dynamically imported from file system). For those jpg files converted from png, we want them to apply with the jpg-optimizer too(i.e. reuse the loaders defined in module.rules) Loader module.exports = function(source) { if (this.resourceQuery === \"?pngToJPG=true\") { return pngToJpg.transform(source) } return `require(\"${this.resourcePath}.jpg!=!${__filename}${this.resourcePath}?pngToJPG=true\")`\n} module.exports.raw = true We use double-pass again, firstly we convert the extension to .jpg which will apply the matched rules(in this case test: /\\.jpg/), after the transformation of png-to-jpg-loader. Generated asset module filename will be based on the inline match resource , which is xxxx.jpg in this case.","breadcrumbs":"webpack » loader » Asset transform and rename","id":"84","title":"Asset transform and rename"},"85":{"body":"Webpack provides a way to pass metadata(the forth parameter) among the chaining loaders doc . The most commonly used value is webpackAST which accepts an ESTree compatible(webpack internally uses acorn) AST, which hugely improves the performance since webpack instead of parsing the returned code to AST again, will directly use the AST(webpackAST) returned from a loader (But the work of a complete walking of an AST can not be omitted as it's necessary for webpack for do some analysis for its dependencies and will be only done once, so it is not a big overhead.) module.exports = function(source) { let ast = AcornParser.parse(source, { // options }) this.callback(null, '', null, { webpackAST: ast })\n} Good to note that only ESTree is compatible, so you cannot pass a CSS AST, or webpack will complain with \"webpackAst is unexpected for the CssParser\". It will be ok if you don't get this, let's move to the reference-level explanation for analysis in-depth.","breadcrumbs":"webpack » loader » AST reuse","id":"85","title":"AST reuse"},"86":{"body":"This is the reference-level explanation part of webpack's internal loader implementation.","breadcrumbs":"webpack » loader » Reference-level explanation","id":"86","title":"Reference-level explanation"},"87":{"body":"If you don't quite get this concept, you may refer to the Glossary and Example part of the Guide-level explanation first and pick up this as soon as you finished. The high-level idea of previously talked inline match resource is to let loader developers to customize the behavior of matching to match the pre-defined module.rules. It's an API to write composable loaders. But what does composition mean? For those users who are familiar with React hooks and Vue composable APIs, you may get this faster. Actually, webpack provides a lot of ways to help loader developers and users do the composition. User-defined loader flows module.exports = { module: { rules: [ { test: /\\.js$/, use: [\"babel-loader\"], type: \"javascript/auto\" }, { test: /\\.svg$/, use: [\"svgr-loader\", \"svgo-loader\"], } ] }\n} Webpack users can take the advantage of module.rules[number].use with a loader list for each request that matches the corresponding conditions. Note that I use the wording of request, not the file , which can include a request to data:text/javascript not the files on the real file system only. (In Parcel bundler, it's called pipelines , but this will not be covered in this article.) Apparently, user-declared loader flow is not able to cover up every case that a loader wants. You can see from the previous examples, vue-loader wants to split a file into many blocks, and remain the reference to it. svgr-loader wants to do the transformation first and let other loaders deal with the jsx. svg-loader wants to use the internal ability of Asset Module to let Webpack decide whether an asset is inlined or emitted to the real file system. and there are more to come... Based on the complexity of the loader, Webpack also provides a syntax to allow loader implementors to do the composition by themselves. The syntax for loader composition Inline loader syntax (Chaining loaders) Supported from webpack v1 chaining-loaders It's possible to specify loaders in an import statement, or any equivalent \"importing\" method . Separate loaders from the resource with !. Each part is resolved relative to the current directory. doc import Styles from '!style-loader!css-loader?modules!./styles.css'; The inline loader syntax executes each loader for each request from right to left. Webpack handles the interaction with user-defined loaders carefully. So by default, the user-defined normal loader will be executed prior to the inline loaders, you can disable this behavior by prefixing ! , (full reference could be found here doc ). The custom specifier is parsed before the module.rules as the inline loader syntax interferes the user-defined loaders(See the source code ). Then, webpack will get the module.rules combined with the required conditions to calculate the matching rule set (See the source code ). At the moment, you cannot change the matching behavior with the syntax, loaders are always matched with the provided resourcePath , etc, which leads to a bunch of hack code in the implementations of loaders (see this code snippet in vue-loader). The possibilities for changing the matching behavior leaves to the later-coming inline match resource . Nevertheless, the architecture of Loader at this moment is sound and solid. Another good example is the implementation-nonrelative filter(i.e. the filtering logic of Loader is not declared in the loader itself), which is the fundamental root of loader composition, or the implementor will do a lot of hacks. (It's way too dirty to talk about here, but you can take the rollup svgr plugin as a reference) In conclusion, inline loader syntax gives us a chance to control the loader flow with user-defined rules. Inline match resource To extend the matching ability, inline match resource enables loader implementors to reuse some of the user-defined configurations with more flexibilities. On top of the previous example, webpack also provides a way to make use of the natively-supported module types . // For module type `css` to work, you need to enable `experiments.css`\nimport \"./style.less.webpack[css]!=path-to-less-loader!./style.less\" // webpack.config.js\nmodule.exports = { experiments: { css: true }\n} Given the configuration above, the overview of the complete flow will be like this: Webpack: Parse the specifier of the import and create the loader for the current request Webpack: Merge the result from the second step with a user-defined module.rules in webpack.config, in this case is [] Webpack: load style.less as UTF-8 string Less-loader: Accept the UTF-8 string as the first parameter of the loader function and transform it to the content of css. Webpack: Call the registered native CSS parser, and later at the code generation step the registered native CSS generator generates the result. For asset modules , you can also use this: import \"./logo.png.jpg.webpack[asset/resource]!=path-to-loaders!./logo.png\" The first part, also known as matchResource will be used as a part of the filename of the final code generation. (See the source code )","breadcrumbs":"webpack » loader » Loader composability","id":"87","title":"Loader composability"},"88":{"body":"Before moving on to the detailed implementations, here's some glossary to support your understanding the architecture as a whole. Glossary NormalModuleFactory: A factory used to create a NormalModule, which basically exposes a create method. NormalModule: A module in Webpack most of the time is a NormalModule, but with different implementations of parser/ generator / Module Type, the module could be almost any kind, and also exposes a build method. For example, a NormalModule with JavaScript parser, JavaScript generator, and type ===javascript/auto will be regarded as a module with JavaScript-related functionalities. Also, good to note that a module may not exist on the real file system, taking data: for example. The module creation workflow This will only introduce a slice of webpack's internal implementation from the Loader's perspective , for more you should directly refer to the source code. When an import statement is detected, webpack will initialize a module creation. Based on the type of Dependency (an abstraction of webpack, it's not important here), webpack can find the linked ModuleFactory (The abstraction class), in most cases, the derived factory is NormalModuleFactory, which exposes a create method. Prepare data needed for module creation The NormalModuleFactory#create is used to provide enough information to create a real NormalModule, and create the NormalModule. In the create method, webpack basically does these things(some non-loader related stuff will be omitted): Resolve loaders from request: resolve the request, parse inline loader syntax: This contains inline match resource , inline loader syntax . Do the analysis on the parsed loader syntax, to decide whether a user-defined normal/post/pre loader is going to be included. doc Resolve Resource: resolve resource to the absolute path, fragments, queries, etc(These stuff are also provided in LoaderContext). For the full source code you may refer to this Use the resolved resource data to match module.rules defined in the configuration, and get the matched rules. This is also a part of the module creation data. Do some special logic with inline match resource , since match resource ends like .webpack[css] would change Rule.type. Also store the match resource data, since it might affect the filename generation for asset modules . Create a module based on the prepared data After the data needed for module creation is prepared, NormalModuleFactory will new NormalModule with the data provided. It contains basically every that a NormalModule needs (see the source code ). Most importantly, the loaders. It contains every loader parsed and ordered from the create step. The module build step The module build step is kind of clear. Webpack will invoke the build method for each NormalModule instance, which invokes loader-runner(see the source code ) to go through every loader that was analyzed from the create step. It's clear to know that the composition of loaders is happening on the same module . A peek of the support of Module Types As far as this article goes, It might be getting a little bit tedious. But have you ever wondered how webpack supports these module types natively? I think It's still worth telling you about it to get a more complete understanding of the AST optimizations. For the support of JavaScript, webpack's JavaScript plugin will register different types of parser and generators for each module types , which will be used as the parser / generator to a NormalModule (see the source code ). Reusing AST in Webpack Based on the parser and generator we introduced before, webpack did a little hack around the fourth parameter of this.callback (from loaderContext ), with webpackAST, after each loader call, the webpackAST will be stored in the context of loader, and passed again to the next loader. Finally, the AST will be passed to the parser(It could be any type, based on the module type , but webpack makes it a JavaScript only for AST) (see the source code ). Here's an issue about trying to use SWC's AST to get rid of the time sensitive code parsing from Acorn Parser, but they are facing some AST compatibility issues and performance issues about the overhead of interop with native code(Rust).","breadcrumbs":"webpack » loader » Performance optimizations","id":"88","title":"Performance optimizations"},"89":{"body":"loader plugin api design (Analysis) #315 RFC-011 Supports data:text/javascript protocol #457 Webpack: matchResource with natively-supported module types doc Webpack: Loader context doc Webpack: Module rules doc SWC-loader for performance optimizations issue","breadcrumbs":"webpack » loader » References","id":"89","title":"References"},"9":{"body":"Run cargo build to compile Rust code. Run pnpm run build:cli:debug to compile both Node.js and Rust code. The built binary is located at packages/rspack-cli/bin/rspack.","breadcrumbs":"Building and running » Building Rspack","id":"9","title":"Building Rspack"},"90":{"body":"Based on Webpack version: 5.73.0 . Some source code is omitted for cleaner demonstration in the example. Explain how webpack dependency affects the compilation and what kind of problem that webpack was facing at the moment and the solution to the problem.","breadcrumbs":"webpack » dependency » Summary","id":"90","title":"Summary"},"91":{"body":"What's the meaning of a word used to describe a feature? Why does the Webpack introduce this and what's the background of introducing this? What kind of problem Webpack was facing at the time?","breadcrumbs":"webpack » dependency » Glossary","id":"91","title":"Glossary"},"92":{"body":"Dependency(fileDependency) : An existing dependency that is marked as watchable. This is the widely-used type of dependency. CSS Preprocessors like postcss strongly depend on this in order to mark its dependency watchable. ContextDependency : Most useful for requests in which Glob and Regexp were used. For real-world usage, see [ this ](https://webpack.js.org/guides/dependency-management/#require-with-expression). MissingDependency : A missing dependency to mark it watchable (handles the creation of files during compilation before watchers are attached correctly.) BuildDependency : Related to persistent cache. PresentationalDependency: Dependencies that only affect presentation are mostly used with their associated template.","breadcrumbs":"webpack » dependency » High-level presentations of Dependencies","id":"92","title":"High-level presentations of Dependencies"},"93":{"body":"LoaderContext : Context provided by Webpack loader-runner , which can be accessed through this in each loader function. ModuleGraph: A graph to describe the relationship between modules.","breadcrumbs":"webpack » dependency » Others","id":"93","title":"Others"},"94":{"body":"","breadcrumbs":"webpack » dependency » Guide-level explanation","id":"94","title":"Guide-level explanation"},"95":{"body":"dependency(fileDependency) stands for the file dependency among missingDependency and contextDependency, etc. The created dependency will be marked as watchable, which is useful in Hot Module Replacement in developer mode. The implicit behavior for webpack internally in the case below is to create two dependencies internally. import foo from \"./foo\";\nimport \"./style.css\";","breadcrumbs":"webpack » dependency » Dependency","id":"95","title":"Dependency"},"96":{"body":"contextDependency is mostly used in scenarios where we want to dynamic load some module in runtime. In this case, webpack cannot assure which module it will be included in the final bundle at compile time. In order to make the code runnable in runtime, webpack has to firstly create multiple bundle modules corresponding to the matching filename such as ./components/a.js and ./components/b.js, etc. // index.js\nimport(\"./components\" + componentName).then(...) // components/a.js\n...\nexport default ComponentA; // components/b.js\n...\nexport default ComponentB; For loaders, you can access to this.addContextDependency in each loader function. For plugins, you can access via module.buildInfo.contextDependencies.","breadcrumbs":"webpack » dependency » ContextDependency","id":"96","title":"ContextDependency"},"97":{"body":"The abstraction of Dependency of Webpack was introduced in Webpack version 0.9 with a big refactor. Redirect to the commit","breadcrumbs":"webpack » dependency » Reference-level explanation","id":"97","title":"Reference-level explanation"},"98":{"body":"","breadcrumbs":"webpack » dependency » Stakeholders of Dependency","id":"98","title":"Stakeholders of Dependency"},"99":{"body":"image-20220919171608629","breadcrumbs":"webpack » dependency » High-level","id":"99","title":"High-level"}},"length":134,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"1":{".":{"0":{"df":1,"docs":{"124":{"tf":1.7320508075688772}}},"1":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}},"0":{":":{"0":{"7":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":1,"docs":{"35":{"tf":1.4142135623730951}},"x":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"4":{"0":{"d":{"0":{"d":{"b":{"4":{"b":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{".":{"0":{".":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"35":{"tf":1.0}}},"6":{":":{"0":{"0":{":":{"0":{"7":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"13":{"tf":2.8284271247461903}}},"df":3,"docs":{"109":{"tf":1.7320508075688772},"45":{"tf":1.0},"80":{"tf":1.0}}},"2":{"/":{"3":{"/":{"4":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"2":{"2":{"0":{"9":{"1":{"9":{"1":{"7":{"1":{"6":{"0":{"8":{"6":{"2":{"9":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"4":{"1":{"6":{"2":{"4":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"1":{"9":{"8":{"6":{"1":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"3":{"0":{"0":{"2":{"2":{"0":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"2":{"9":{"7":{"6":{"5":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{"3":{"2":{"7":{"7":{"2":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"2":{"6":{"5":{"6":{"4":{"6":{"8":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"5":{"5":{"3":{"2":{"1":{"5":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{"5":{"0":{"7":{"3":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"2":{"3":{"2":{"2":{"8":{"1":{"4":{"6":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"5":{"8":{"3":{"2":{"7":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"2":{"0":{"7":{"3":{"9":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"1":{"8":{"0":{"9":{"1":{"5":{"3":{"2":{"6":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"1":{"1":{"0":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{"df":1,"docs":{"35":{"tf":1.0}}},"2":{"df":1,"docs":{"35":{"tf":1.0}}},"3":{"df":1,"docs":{"35":{"tf":1.0}}},"4":{"df":1,"docs":{"35":{"tf":1.0}}},"5":{"df":1,"docs":{"35":{"tf":1.0}}},"6":{"df":1,"docs":{"35":{"tf":1.0}}},"7":{"df":1,"docs":{"35":{"tf":1.0}}},"_":{"1":{"1":{".":{"3":{"2":{".":{"0":{"6":{"_":{"9":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"3":{"a":{"6":{"3":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"109":{"tf":1.0},"80":{"tf":1.0}}},"3":{"1":{"5":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"83":{"tf":1.0}}},"5":{"7":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"3":{"8":{".":{"0":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{".":{"0":{"df":2,"docs":{"72":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"9":{"2":{"2":{"9":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"47":{"tf":1.0}}},"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"52":{"tf":1.0}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"_":{".":{"d":{"(":{"_":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"_":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"(":{"_":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"_":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"29":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"_":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"0":{"_":{"_":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":2.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"a":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}}},".":{"df":0,"docs":{},"k":{".":{"a":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"6":{"4":{"df":2,"docs":{"47":{"tf":2.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"65":{"tf":1.0},"80":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"v":{"df":7,"docs":{"104":{"tf":1.0},"109":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.0},"69":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"74":{"tf":1.0},"75":{"tf":2.0},"88":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"104":{"tf":1.0},"88":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"80":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"51":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"109":{"tf":1.0},"65":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"80":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"46":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"df":7,"docs":{"103":{"tf":1.0},"109":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":2.23606797749979},"52":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"=":{"0":{"df":0,"docs":{},"x":{"7":{"0":{"0":{"0":{"0":{"c":{"c":{"6":{"6":{"5":{"6":{"0":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"51":{"tf":1.0}}}}}}},"df":4,"docs":{"103":{"tf":1.0},"110":{"tf":1.0},"51":{"tf":1.0},"80":{"tf":1.0}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"75":{"tf":1.0},"80":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"80":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"75":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"{":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"|":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"36":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"4":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":3,"docs":{"53":{"tf":1.0},"80":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"109":{"tf":1.0},"5":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.4142135623730951}},"i":{"df":3,"docs":{"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0}}}},"z":{"df":3,"docs":{"11":{"tf":1.0},"32":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"103":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"p":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":1,"docs":{"45":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"38":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"80":{"tf":1.0}},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"128":{"tf":1.0},"131":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951}},"i":{"c":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.0}}},"df":7,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"78":{"tf":2.23606797749979},"80":{"tf":2.0},"84":{"tf":1.4142135623730951}}},"y":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"109":{"tf":2.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"114":{"tf":1.0},"51":{"tf":1.0}}}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"109":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"70":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"g":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"80":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"l":{"df":3,"docs":{"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"133":{"tf":1.0}}},"s":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951}}}},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"76":{"tf":1.0},"81":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"76":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"76":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"110":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"81":{"tf":2.449489742783178},"84":{"tf":3.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"109":{"tf":2.23606797749979},"92":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}}},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":2,"docs":{"85":{"tf":2.6457513110645907},"88":{"tf":2.449489742783178}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"38":{"tf":2.0}}},"df":0,"docs":{}}}},"df":2,"docs":{"38":{"tf":2.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"103":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0}}}},"df":1,"docs":{"46":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"8":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}}},"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"80":{"tf":1.0},"87":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{")":{"[":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"1":{"1":{"8":{"0":{"2":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":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":{"73":{"tf":1.0},"75":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"104":{"tf":1.7320508075688772}}}},"df":2,"docs":{"104":{"tf":1.0},"106":{"tf":2.0}}},"s":{"df":0,"docs":{},"e":{"df":9,"docs":{"110":{"tf":1.0},"114":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.0},"90":{"tf":1.0}}},"i":{"c":{"df":6,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"63":{"tf":1.0},"80":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":2,"docs":{"133":{"tf":1.0},"53":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"102":{"tf":1.0},"35":{"tf":1.0},"42":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"{":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"|":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"20":{"tf":2.449489742783178},"26":{"tf":2.449489742783178},"84":{"tf":1.0},"87":{"tf":2.0},"95":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"j":{"df":1,"docs":{"48":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.0},"51":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"104":{"tf":1.0},"36":{"tf":1.4142135623730951},"69":{"tf":1.0},"93":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"85":{"tf":1.0},"97":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"38":{"tf":1.0},"45":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.0}}}}},"d":{"df":4,"docs":{"114":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":3,"docs":{"72":{"tf":1.0},"80":{"tf":2.449489742783178},"88":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"80":{"tf":3.1622776601683795},"87":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"n":{"d":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"127":{"tf":1.0}},"h":{"df":3,"docs":{"76":{"tf":1.0},"84":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"40":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"113":{"tf":1.4142135623730951},"51":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"64":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"u":{"df":1,"docs":{"35":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}}}}},"g":{"df":3,"docs":{"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"51":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{":":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"32":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"j":{"df":1,"docs":{"37":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":27,"docs":{"102":{"tf":1.0},"133":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"20":{"tf":2.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"26":{"tf":2.0},"29":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":2.23606797749979},"34":{"tf":1.0},"35":{"tf":2.449489742783178},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":2.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":2.0},"9":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":4,"docs":{"45":{"tf":1.0},"47":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"87":{"tf":1.0}}}},"d":{"df":0,"docs":{},"l":{"df":5,"docs":{"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}},"df":4,"docs":{"110":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"87":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"c":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"29":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":7,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"46":{"tf":1.0},"49":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":4,"docs":{"16":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"18":{"tf":1.7320508075688772},"20":{"tf":3.1622776601683795},"24":{"tf":1.7320508075688772},"26":{"tf":3.1622776601683795},"28":{"tf":2.23606797749979},"30":{"tf":1.7320508075688772},"52":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"48":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"103":{"tf":1.0},"104":{"tf":2.449489742783178},"105":{"tf":1.0},"106":{"tf":1.0},"28":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":5,"docs":{"38":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"74":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"n":{"c":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":13,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"19":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.0},"51":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":2.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"81":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":2.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"a":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":10,"docs":{"109":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"29":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":1.0},"41":{"tf":1.0},"51":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{"/":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"40":{"tf":1.0},"42":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":3,"docs":{"110":{"tf":2.23606797749979},"116":{"tf":1.0},"80":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"110":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"109":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"110":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"i":{"df":1,"docs":{"51":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"133":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"104":{"tf":1.0},"109":{"tf":2.23606797749979},"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"109":{"tf":2.0},"90":{"tf":1.0}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"109":{"tf":1.0}}}}},"df":2,"docs":{"30":{"tf":1.0},"88":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"35":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"=":{"2":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}},"df":23,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":4.123105625617661},"110":{"tf":2.23606797749979},"111":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":2.23606797749979},"18":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"33":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"80":{"tf":5.5677643628300215},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":2.6457513110645907},"88":{"tf":2.6457513110645907},"9":{"tf":1.4142135623730951},"90":{"tf":1.0},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"d":{"b":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"110":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"13":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.0},"97":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"j":{"df":2,"docs":{"104":{"tf":1.0},"105":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"80":{"tf":1.0},"85":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"5":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.4142135623730951}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"109":{"tf":1.4142135623730951},"18":{"tf":1.0},"24":{"tf":1.0},"64":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":11,"docs":{"109":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"7":{"tf":1.0},"80":{"tf":3.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}}},"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":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"45":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"x":{"df":3,"docs":{"67":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"111":{"tf":1.0},"116":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"c":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}}},"a":{"df":1,"docs":{"96":{"tf":1.0}}},"b":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"/":{"a":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":6,"docs":{"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":2.23606797749979},"88":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"63":{"tf":1.0},"80":{"tf":2.23606797749979},"82":{"tf":1.0},"87":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"80":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"105":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"109":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"114":{"tf":1.0},"32":{"tf":1.0},"38":{"tf":2.6457513110645907},"78":{"tf":1.4142135623730951},"80":{"tf":2.449489742783178},"81":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"x":{":":{"'":{",":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"113":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"108":{"tf":1.4142135623730951},"109":{"tf":2.0},"111":{"tf":1.0},"113":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"106":{"tf":1.4142135623730951},"109":{"tf":3.1622776601683795},"114":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":3.872983346207417}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"65":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"28":{"tf":1.7320508075688772},"53":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"109":{"tf":1.0},"114":{"tf":1.0},"29":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"92":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"109":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"5":{"tf":1.0}},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"0":{"tf":1.7320508075688772},"3":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"49":{"tf":1.0},"5":{"tf":1.4142135623730951},"6":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"78":{"tf":1.0},"87":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.0}}},"t":{"df":7,"docs":{"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"16":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"67":{"tf":1.0}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"38":{"tf":1.0},"92":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"113":{"tf":1.0},"127":{"tf":1.0},"30":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"109":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"u":{".":{"2":{"0":{"2":{"3":{"0":{"5":{"2":{"2":{".":{"1":{"5":{"4":{"6":{"5":{"8":{".":{"1":{"4":{"5":{"7":{"7":{".":{"0":{".":{"0":{"0":{"1":{".":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"44":{"tf":1.4142135623730951},"45":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"35":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":16,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.4142135623730951},"116":{"tf":1.0},"127":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":3.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"101":{"tf":1.0},"110":{"tf":1.0},"88":{"tf":2.23606797749979},"92":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"78":{"tf":2.449489742783178},"80":{"tf":4.0},"81":{"tf":2.6457513110645907},"83":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.23606797749979},"92":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"!":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"103":{"tf":1.0},"109":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"21":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"4":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"w":{"d":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951}}}}}},"t":{"a":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.0}}}}},"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}},"df":2,"docs":{"87":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"76":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"48":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"114":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":11,"docs":{"31":{"tf":1.0},"32":{"tf":2.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}},"g":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"80":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":11,"docs":{"106":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"29":{"tf":1.0},"38":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"109":{"tf":1.7320508075688772},"113":{"tf":1.0},"29":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":2.8284271247461903},"88":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"80":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"v":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"c":{"df":0,"docs":{},"m":{"d":{"/":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"@":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":2.0},"53":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"p":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"[":{"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"109":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"df":23,"docs":{"101":{"tf":1.0},"103":{"tf":2.0},"104":{"tf":2.449489742783178},"105":{"tf":1.0},"106":{"tf":2.6457513110645907},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":3.7416573867739413},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"28":{"tf":1.4142135623730951},"71":{"tf":1.0},"8":{"tf":1.7320508075688772},"85":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":2.6457513110645907},"95":{"tf":2.0},"97":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"92":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"103":{"tf":1.0},"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"85":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":4,"docs":{"104":{"tf":1.0},"73":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"113":{"tf":1.0},"124":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"41":{"tf":1.0},"65":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}},"v":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}}},"df":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":{"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":4,"docs":{"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":7,"docs":{"103":{"tf":1.0},"113":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"6":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"102":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"133":{"tf":1.0},"5":{"tf":1.0},"88":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"29":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"28":{"tf":2.23606797749979},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"33":{"tf":1.0},"45":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"36":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.0}}}}},"o":{"c":{"1":{"df":1,"docs":{"75":{"tf":1.0}}},"2":{"df":1,"docs":{"75":{"tf":1.0}}},"df":7,"docs":{"105":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.4142135623730951},"5":{"tf":1.0},"6":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":1,"docs":{"80":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":6,"docs":{"109":{"tf":1.4142135623730951},"18":{"tf":1.0},"24":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"110":{"tf":2.0},"80":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.0},"84":{"tf":1.0}}},"t":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"84":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":4,"docs":{"104":{"tf":1.0},"44":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":2.0}}}},"2":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"a":{"c":{"df":0,"docs":{},"h":{"df":20,"docs":{"102":{"tf":1.0},"106":{"tf":1.7320508075688772},"109":{"tf":1.7320508075688772},"110":{"tf":2.23606797749979},"111":{"tf":1.0},"116":{"tf":1.0},"133":{"tf":1.0},"30":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.0},"82":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.7320508075688772},"93":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"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":4,"docs":{"104":{"tf":1.7320508075688772},"109":{"tf":1.0},"113":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"114":{"tf":2.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"110":{"tf":1.0},"34":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"113":{"tf":1.0},"53":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}}}},"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":8,"docs":{"103":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.4142135623730951},"28":{"tf":1.0},"45":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"133":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"111":{"tf":1.4142135623730951},"51":{"tf":1.0},"88":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"38":{"tf":1.0}}},"y":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"13":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.4142135623730951}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"41":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}},"s":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":5,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":2.449489742783178},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"109":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"53":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}},"t":{"c":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":9,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"104":{"tf":1.7320508075688772},"65":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"109":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.4142135623730951}},"t":{"df":2,"docs":{"33":{"tf":1.0},"43":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"40":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":22,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"13":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":2.0},"69":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":2.0},"82":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"c":{"_":{"b":{"a":{"d":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"80":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"102":{"tf":1.0},"37":{"tf":1.0},"67":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"29":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}}},"t":{"df":1,"docs":{"45":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"81":{"tf":1.0},"87":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"41":{"tf":1.0}}},"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"81":{"tf":1.4142135623730951}},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"81":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"109":{"tf":1.0},"55":{"tf":1.0},"72":{"tf":1.0},"90":{"tf":1.0}}}},"n":{"df":9,"docs":{"104":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"40":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":7,"docs":{"105":{"tf":1.0},"106":{"tf":2.0},"109":{"tf":1.0},"114":{"tf":2.0},"29":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"106":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"113":{"tf":2.0},"35":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"109":{"tf":1.7320508075688772},"87":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":5,"docs":{"11":{"tf":1.0},"32":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.6457513110645907},"84":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":2,"docs":{"78":{"tf":1.0},"80":{"tf":3.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"a":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"73":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}},"t":{"df":1,"docs":{"109":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"16":{"tf":1.0},"22":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":1,"docs":{"88":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"127":{"tf":1.0},"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":3,"docs":{"106":{"tf":1.0},"110":{"tf":1.0},"80":{"tf":1.7320508075688772}}}},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"83":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"102":{"tf":1.0},"104":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":22,"docs":{"103":{"tf":1.7320508075688772},"109":{"tf":1.0},"20":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"29":{"tf":2.23606797749979},"38":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":2.0},"54":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":3.872983346207417},"81":{"tf":2.0},"82":{"tf":1.0},"84":{"tf":3.0},"87":{"tf":2.23606797749979},"88":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"75":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{".":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"19":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"87":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"106":{"tf":1.0},"110":{"tf":1.7320508075688772},"113":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"80":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}}},"d":{"df":9,"docs":{"102":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.0},"81":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"29":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"0":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.4142135623730951},"55":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"37":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"82":{"tf":1.0}}},"x":{"df":4,"docs":{"18":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.0},"51":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":3.3166247903554}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"l":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"65":{"tf":1.0},"87":{"tf":2.0}}}}},"n":{"df":2,"docs":{"29":{"tf":1.0},"35":{"tf":1.0}},"m":{"df":1,"docs":{"13":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"109":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"108":{"tf":1.0},"113":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"28":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":16,"docs":{"114":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.7320508075688772},"47":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}},"o":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"104":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":5,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":3.605551275463989},"109":{"tf":2.0},"114":{"tf":2.449489742783178},"95":{"tf":1.4142135623730951}}},"r":{"c":{"df":1,"docs":{"80":{"tf":2.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"51":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"85":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"133":{"tf":1.0},"46":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"80":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"88":{"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":3,"docs":{"109":{"tf":3.0},"75":{"tf":2.0},"88":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"35":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"106":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":4,"docs":{"80":{"tf":2.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":16,"docs":{"109":{"tf":1.0},"114":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"131":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"40":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"133":{"tf":1.7320508075688772}}}}},"df":4,"docs":{"44":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":15,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":2.23606797749979},"110":{"tf":2.449489742783178},"113":{"tf":1.7320508075688772},"114":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"44":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":2.0},"88":{"tf":2.449489742783178}}}}},"t":{"df":4,"docs":{"0":{"tf":1.0},"53":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"103":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}},"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":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"1":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"80":{"tf":1.0},"87":{"tf":1.0}},"n":{"df":4,"docs":{"109":{"tf":1.7320508075688772},"111":{"tf":1.0},"116":{"tf":1.0},"87":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"73":{"tf":1.0},"80":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":6,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"32":{"tf":1.0},"80":{"tf":2.449489742783178},"81":{"tf":1.0},"88":{"tf":1.4142135623730951}},"e":{"df":2,"docs":{"5":{"tf":1.0},"88":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"84":{"tf":1.0}}}},"o":{"d":{"df":10,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"3":{"tf":1.4142135623730951},"55":{"tf":1.0},"59":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"h":{"df":5,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"93":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"78":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"5":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"64":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"80":{"tf":2.23606797749979},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"53":{"tf":1.0}},"l":{"df":10,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":3.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"r":{"d":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":4,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.0},"109":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"106":{"tf":1.0},"109":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":9,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":1.4142135623730951},"64":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.7320508075688772}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":4,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.0},"88":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":12,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"13":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"109":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.7320508075688772}}}}},"o":{"d":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":2,"docs":{"110":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"95":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"#":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"110":{"tf":1.0},"85":{"tf":1.0}}}}}},"i":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}}},".":{"df":1,"docs":{"116":{"tf":1.0}}},"6":{"8":{"6":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":2,"docs":{"106":{"tf":1.0},"37":{"tf":1.0}},"e":{"a":{"df":4,"docs":{"109":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"87":{"tf":1.0}},"l":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":6,"docs":{"102":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"40":{"tf":1.0},"63":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"80":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":13,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"41":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":2.23606797749979},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.7320508075688772}}}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"81":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{".":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":16,"docs":{"104":{"tf":2.0},"106":{"tf":3.4641016151377544},"109":{"tf":2.449489742783178},"116":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"53":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.7320508075688772},"80":{"tf":6.082762530298219},"83":{"tf":2.0},"84":{"tf":1.0},"87":{"tf":2.449489742783178},"88":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"df":1,"docs":{"109":{"tf":1.0}}},"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"40":{"tf":1.0},"85":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":10,"docs":{"16":{"tf":1.0},"22":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"!":{"=":{"!":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"j":{"df":3,"docs":{"104":{"tf":2.449489742783178},"116":{"tf":1.0},"96":{"tf":1.0}},"s":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"#":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"75":{"tf":1.4142135623730951}}}},"i":{"c":{"df":4,"docs":{"103":{"tf":1.0},"110":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":2,"docs":{"43":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":4,"docs":{"33":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"45":{"tf":1.0},"51":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"109":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"42":{"tf":1.0},"88":{"tf":1.0}}}}},"r":{"a":{"df":3,"docs":{"18":{"tf":1.0},"24":{"tf":1.0},"5":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"109":{"tf":2.0},"114":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"i":{"df":2,"docs":{"32":{"tf":1.0},"88":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"102":{"tf":1.7320508075688772},"104":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"80":{"tf":2.8284271247461903},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772},"87":{"tf":3.1622776601683795},"88":{"tf":2.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"11":{"tf":1.4142135623730951},"13":{"tf":2.8284271247461903},"32":{"tf":2.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"8":{"tf":2.449489742783178}}},"n":{"c":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"53":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"33":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":2.449489742783178}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"80":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.0},"4":{"tf":1.0},"50":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}},"n":{"df":9,"docs":{"103":{"tf":1.4142135623730951},"113":{"tf":1.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"69":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":11,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"50":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"45":{"tf":1.4142135623730951},"63":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"5":{"tf":1.0},"6":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":11,"docs":{"0":{"tf":1.4142135623730951},"109":{"tf":1.0},"3":{"tf":1.7320508075688772},"4":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0}}}}},"t":{"'":{"df":19,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"110":{"tf":2.0},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"38":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.4142135623730951},"76":{"tf":1.0},"78":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.7320508075688772}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"110":{"tf":1.7320508075688772},"122":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":5,"docs":{"102":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"df":8,"docs":{"106":{"tf":1.0},"113":{"tf":1.0},"36":{"tf":1.4142135623730951},"76":{"tf":1.0},"80":{"tf":3.4641016151377544},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"88":{"tf":2.449489742783178}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}},"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}}},"o":{"b":{"df":2,"docs":{"110":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":4.0}}}},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"75":{"tf":1.0}},"s":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"#":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":10,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"44":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"80":{"tf":2.6457513110645907},"87":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"104":{"tf":1.0},"42":{"tf":1.0},"76":{"tf":1.0}}}},"x":{"df":2,"docs":{"82":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":2,"docs":{"51":{"tf":1.0},"63":{"tf":1.0}}}},"y":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"n":{"d":{"df":11,"docs":{"110":{"tf":1.0},"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"84":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"114":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":5,"docs":{"110":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"127":{"tf":1.4142135623730951},"3":{"tf":1.0},"55":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"80":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"80":{"tf":1.0}},"r":{"df":8,"docs":{"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"114":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"46":{"tf":1.0},"47":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}}}}},":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":2.0}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"2":{"0":{"2":{"3":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":4,"docs":{"32":{"tf":1.4142135623730951},"35":{"tf":1.0},"38":{"tf":2.0},"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"128":{"tf":1.0},"51":{"tf":1.4142135623730951}}}},"v":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"80":{"tf":2.0},"81":{"tf":2.0},"87":{"tf":1.4142135623730951}}}},"t":{"'":{"df":5,"docs":{"109":{"tf":1.0},"116":{"tf":1.0},"37":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":15,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":3,"docs":{"110":{"tf":1.0},"19":{"tf":1.0},"25":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"k":{"df":3,"docs":{"110":{"tf":1.0},"51":{"tf":1.0},"88":{"tf":1.0}}},"t":{":":{"df":0,"docs":{},"j":{"df":1,"docs":{"51":{"tf":1.0}}},"r":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"47":{"tf":2.0},"49":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"54":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"72":{"tf":1.0},"80":{"tf":2.23606797749979},"88":{"tf":1.4142135623730951}}}}}},"l":{"d":{"b":{"df":2,"docs":{"35":{"tf":2.23606797749979},"38":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"a":{"d":{"df":5,"docs":{"68":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"!":{".":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"74":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"'":{"df":1,"docs":{"88":{"tf":1.0}}},"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"80":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"?":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"!":{".":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"74":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"103":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}}}}}},"df":28,"docs":{"102":{"tf":2.23606797749979},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"44":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":3.0},"64":{"tf":1.0},"65":{"tf":3.0},"67":{"tf":4.0},"68":{"tf":1.0},"69":{"tf":3.1622776601683795},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":2.23606797749979},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"78":{"tf":2.6457513110645907},"80":{"tf":8.12403840463596},"81":{"tf":2.449489742783178},"82":{"tf":1.4142135623730951},"84":{"tf":3.4641016151377544},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":6.48074069840786},"88":{"tf":3.7416573867739413},"89":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"s":{"!":{".":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"51":{"tf":1.0}}},"t":{"df":6,"docs":{"103":{"tf":1.0},"133":{"tf":1.0},"45":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"o":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"[":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"]":{"!":{"=":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"72":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":7,"docs":{"106":{"tf":1.0},"109":{"tf":1.4142135623730951},"113":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"69":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}}},"s":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}},"t":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"w":{"df":1,"docs":{"100":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"13":{"tf":2.0}}}},"m":{"a":{"c":{"df":2,"docs":{"40":{"tf":1.0},"45":{"tf":1.4142135623730951}},"o":{"df":1,"docs":{"37":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"109":{"tf":1.4142135623730951},"111":{"tf":1.0},"19":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"105":{"tf":1.4142135623730951},"5":{"tf":1.0},"51":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":14,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"55":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"#":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"50":{"tf":1.0},"87":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":2,"docs":{"106":{"tf":1.0},"38":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"k":{"!":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":4,"docs":{"69":{"tf":1.0},"75":{"tf":1.0},"92":{"tf":1.7320508075688772},"95":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"102":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":4.242640687119285},"82":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"87":{"tf":3.4641016151377544},"88":{"tf":2.449489742783178},"96":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"75":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"106":{"tf":1.0},"109":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"38":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"73":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0}},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"67":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"133":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"127":{"tf":1.0},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"110":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.23606797749979}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"80":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"78":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":1,"docs":{"53":{"tf":2.0}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}},"s":{"c":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"92":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"103":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"63":{"tf":1.0}}}}},"x":{"df":2,"docs":{"36":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951}}}},"o":{"d":{"df":1,"docs":{"109":{"tf":1.0}},"e":{"df":4,"docs":{"103":{"tf":1.0},"113":{"tf":1.0},"37":{"tf":1.0},"95":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"109":{"tf":2.0}},"i":{"df":7,"docs":{"109":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"67":{"tf":1.0},"80":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":26,"docs":{"101":{"tf":1.0},"102":{"tf":2.8284271247461903},"103":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"105":{"tf":2.0},"106":{"tf":3.7416573867739413},"109":{"tf":2.0},"110":{"tf":2.0},"111":{"tf":1.7320508075688772},"114":{"tf":1.0},"116":{"tf":1.7320508075688772},"20":{"tf":1.0},"26":{"tf":1.0},"67":{"tf":1.7320508075688772},"74":{"tf":1.0},"76":{"tf":2.23606797749979},"78":{"tf":1.7320508075688772},"80":{"tf":2.449489742783178},"81":{"tf":2.23606797749979},"84":{"tf":1.4142135623730951},"87":{"tf":2.23606797749979},"88":{"tf":4.358898943540674},"89":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772}},"e":{"'":{"df":1,"docs":{"110":{"tf":1.0}}},".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"114":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":3.3166247903554},"81":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":8,"docs":{"104":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.0}},"e":{"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":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"104":{"tf":2.0},"105":{"tf":1.0},"106":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":3,"docs":{"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":14,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":2.23606797749979},"113":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"111":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"132":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"85":{"tf":1.0},"88":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"47":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"28":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":6,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"29":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":2.449489742783178}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"32":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":8,"docs":{"63":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":2.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"df":1,"docs":{"80":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"29":{"tf":1.0},"38":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":13,"docs":{"123":{"tf":1.0},"125":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"19":{"tf":1.0},"25":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}}}}}},"w":{"df":9,"docs":{"109":{"tf":2.0},"127":{"tf":1.0},"29":{"tf":1.0},"51":{"tf":1.7320508075688772},"6":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}}},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"46":{"tf":1.0},"48":{"tf":1.7320508075688772}}}}}}}},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"=":{"1":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":13,"docs":{"12":{"tf":1.0},"13":{"tf":2.8284271247461903},"15":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"51":{"tf":1.0},"7":{"tf":1.0},"76":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"df":11,"docs":{"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"26":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":2.23606797749979},"38":{"tf":3.1622776601683795},"44":{"tf":1.0},"63":{"tf":1.0},"8":{"tf":1.0}},"j":{"df":2,"docs":{"40":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}},"n":{"df":1,"docs":{"88":{"tf":1.0}},"e":{"df":1,"docs":{"80":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":11,"docs":{"102":{"tf":1.0},"116":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"45":{"tf":1.0},"63":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"88":{"tf":3.1622776601683795}},"e":{"#":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}},"y":{"#":{"c":{"df":0,"docs":{},"r":{"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":{}}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"76":{"tf":1.4142135623730951},"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":1,"docs":{"78":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"df":4,"docs":{"37":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.0},"8":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"85":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"106":{"tf":2.0},"108":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"13":{"tf":2.23606797749979}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"k":{"df":1,"docs":{"85":{"tf":1.0}}},"l":{"d":{"df":3,"docs":{"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":2.0},"80":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"c":{"df":3,"docs":{"35":{"tf":1.0},"45":{"tf":1.0},"85":{"tf":1.0}}},"df":7,"docs":{"109":{"tf":1.0},"116":{"tf":1.0},"15":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"29":{"tf":1.0},"67":{"tf":1.0},"81":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"29":{"tf":1.0}}}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"2":{"4":{"4":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":8,"docs":{"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.7320508075688772},"84":{"tf":2.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"103":{"tf":1.0},"29":{"tf":1.0},"43":{"tf":1.0},"52":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"109":{"tf":2.0},"69":{"tf":1.4142135623730951},"80":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"113":{"tf":1.0},"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"67":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"76":{"tf":1.0},"93":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"t":{"df":6,"docs":{"109":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"45":{"tf":2.0},"84":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"85":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"84":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"4":{"tf":1.0},"87":{"tf":1.0}}}}}}}}},"x":{"c":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"19":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"5":{"tf":1.0},"51":{"tf":2.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"35":{"tf":1.7320508075688772},"45":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"46":{"tf":1.0},"55":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}},"r":{"df":1,"docs":{"109":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"109":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}},"s":{"df":7,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"35":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":3,"docs":{"106":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.449489742783178}}}}},"t":{"(":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":11,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.7320508075688772},"18":{"tf":1.0},"24":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.449489742783178},"82":{"tf":1.7320508075688772},"86":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.0}},"i":{"df":2,"docs":{"82":{"tf":1.0},"84":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":14,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"108":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"109":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":1.0}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":10,"docs":{"102":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"29":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":2.0},"80":{"tf":3.605551275463989},"88":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"29":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951}}}}}}}}},"c":{"df":1,"docs":{"47":{"tf":1.7320508075688772}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":2,"docs":{"72":{"tf":1.0},"88":{"tf":1.0}}}},"r":{"df":2,"docs":{"109":{"tf":1.0},"125":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"40":{"tf":1.0},"44":{"tf":1.0},"63":{"tf":1.7320508075688772},"69":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"133":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"65":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"67":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"122":{"tf":1.0},"125":{"tf":1.0}}},"y":{"df":1,"docs":{"133":{"tf":1.0}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"27":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"1":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"103":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"114":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"78":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":3.1622776601683795}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"|":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"81":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"m":{"@":{"7":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"19":{"tf":1.7320508075688772},"25":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"45":{"tf":1.0},"51":{"tf":1.7320508075688772},"8":{"tf":2.0},"9":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"28":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"30":{"tf":1.0},"38":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"69":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"92":{"tf":1.0}}}}},"df":1,"docs":{"84":{"tf":1.0}}}}},"r":{"df":6,"docs":{"127":{"tf":1.4142135623730951},"49":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.7320508075688772},"62":{"tf":1.0},"75":{"tf":1.0}},"e":{"df":3,"docs":{"102":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"105":{"tf":1.0},"54":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"87":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"37":{"tf":1.0},"7":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}}}},"s":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.4142135623730951}},"s":{"df":3,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.0},"43":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"109":{"tf":1.0},"4":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"53":{"tf":1.4142135623730951},"73":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"110":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"45":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"113":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"df":8,"docs":{"102":{"tf":1.0},"110":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}}}}}}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"42":{"tf":1.0},"45":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"35":{"tf":1.7320508075688772}},"f":{"df":1,"docs":{"44":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"40":{"tf":1.7320508075688772},"42":{"tf":1.0},"44":{"tf":2.0},"45":{"tf":2.0}},"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":{"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"35":{"tf":1.0},"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"37":{"tf":1.0},"4":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":7,"docs":{"28":{"tf":2.0},"29":{"tf":1.7320508075688772},"3":{"tf":1.0},"30":{"tf":1.0},"45":{"tf":1.7320508075688772},"54":{"tf":1.0},"80":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"}":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"80":{"tf":2.23606797749979},"82":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"75":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":10,"docs":{"102":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":2.23606797749979},"4":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.7320508075688772},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"80":{"tf":2.0}}}},"df":0,"docs":{}}}},"u":{"b":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"46":{"tf":1.0},"49":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"51":{"tf":2.0}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"68":{"tf":1.0},"75":{"tf":1.4142135623730951},"82":{"tf":1.0},"88":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"75":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"49":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":6,"docs":{"111":{"tf":1.0},"114":{"tf":1.0},"45":{"tf":1.0},"63":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"106":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"w":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"78":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}},"df":1,"docs":{"35":{"tf":1.4142135623730951}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.0}}},"t":{"df":1,"docs":{"87":{"tf":1.0}}}},"d":{"df":4,"docs":{"106":{"tf":1.0},"51":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":1.7320508075688772}}},"df":0,"docs":{},"l":{"df":9,"docs":{"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"76":{"tf":1.0},"80":{"tf":2.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"92":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"35":{"tf":1.0},"63":{"tf":1.4142135623730951}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"110":{"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":7,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":2,"docs":{"113":{"tf":1.0},"45":{"tf":2.23606797749979}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"114":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"75":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":2,"docs":{"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"64":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"75":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"108":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"38":{"tf":1.0},"66":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":2.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"110":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"88":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"102":{"tf":1.0},"84":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"80":{"tf":1.0}},"p":{"df":1,"docs":{"92":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"29":{"tf":1.0},"69":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.0},"115":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}}}},"df":2,"docs":{"74":{"tf":1.0},"87":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":8,"docs":{"124":{"tf":2.0},"125":{"tf":2.8284271247461903},"33":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"102":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"109":{"tf":1.0},"80":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"127":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"c":{"df":6,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":2.23606797749979},"111":{"tf":2.0},"113":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"127":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"5":{"tf":1.0},"51":{"tf":1.4142135623730951}}},"y":{"'":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":1.0},"67":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"53":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":1,"docs":{"53":{"tf":1.0}}}}},"q":{"df":1,"docs":{"109":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"102":{"tf":1.4142135623730951},"104":{"tf":2.23606797749979},"38":{"tf":2.0},"51":{"tf":2.0},"67":{"tf":1.4142135623730951},"74":{"tf":2.449489742783178},"75":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.0},"87":{"tf":2.23606797749979},"88":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"104":{"tf":1.0},"109":{"tf":1.7320508075688772},"110":{"tf":2.0},"80":{"tf":1.0},"87":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"80":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"v":{"df":8,"docs":{"103":{"tf":2.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"63":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.23606797749979}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":10,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"75":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":3.0},"82":{"tf":1.7320508075688772},"84":{"tf":2.23606797749979},"87":{"tf":2.23606797749979},"88":{"tf":2.6457513110645907}},"e":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"75":{"tf":1.0},"80":{"tf":2.23606797749979},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":4.123105625617661}}}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"110":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"39":{"tf":1.0},"65":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"74":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":8,"docs":{"109":{"tf":1.4142135623730951},"114":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"80":{"tf":4.242640687119285},"82":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"s":{"df":7,"docs":{"68":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"f":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"i":{"d":{"df":2,"docs":{"81":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"110":{"tf":1.0},"87":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":6,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"37":{"tf":1.0},"87":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"#":{"2":{"7":{"8":{"0":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"8":{"df":1,"docs":{"62":{"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"28":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"32":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"46":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"41":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"33":{"tf":1.0},"41":{"tf":1.4142135623730951}},"e":{"=":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"c":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"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":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"&":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":2,"docs":{"33":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":35,"docs":{"0":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"133":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":2.0},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":2.0},"26":{"tf":1.0},"29":{"tf":2.6457513110645907},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":2.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"81":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}},"1":{"df":1,"docs":{"84":{"tf":1.0}}},"2":{"df":1,"docs":{"84":{"tf":1.0}}},"df":9,"docs":{"28":{"tf":1.0},"29":{"tf":1.0},"78":{"tf":2.6457513110645907},"80":{"tf":3.4641016151377544},"81":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"89":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}}}},"n":{"df":19,"docs":{"103":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.7320508075688772},"19":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":1.7320508075688772},"25":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"51":{"tf":2.449489742783178},"7":{"tf":1.0},"9":{"tf":1.7320508075688772}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":3,"docs":{"63":{"tf":1.0},"67":{"tf":2.0},"93":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":2.8284271247461903},"111":{"tf":1.0},"35":{"tf":1.0},"80":{"tf":1.0},"96":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":2.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"110":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"11":{"tf":1.7320508075688772},"129":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"35":{"tf":2.23606797749979},"36":{"tf":1.4142135623730951},"45":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":2.23606797749979},"69":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":11,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"45":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":4,"docs":{"76":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":2.449489742783178}}}}}},">":{"<":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"80":{"tf":2.6457513110645907}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"110":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"110":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"109":{"tf":2.0},"40":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":17,"docs":{"104":{"tf":1.0},"109":{"tf":2.23606797749979},"113":{"tf":1.0},"114":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.4142135623730951},"87":{"tf":2.0},"88":{"tf":1.7320508075688772},"92":{"tf":1.0}},"n":{"df":1,"docs":{"113":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"32":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"df":2,"docs":{"35":{"tf":1.0},"53":{"tf":1.0}}}},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"124":{"tf":1.0}}}}}},"df":1,"docs":{"46":{"tf":1.0}}}}}},"n":{"d":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"74":{"tf":1.0},"80":{"tf":1.7320508075688772},"87":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772}}}}}},"t":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"df":13,"docs":{"110":{"tf":1.0},"113":{"tf":1.4142135623730951},"15":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"51":{"tf":1.0}}}}}},"f":{"c":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"?":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"80":{"tf":2.0}}}}}},"df":1,"docs":{"80":{"tf":3.4641016151377544}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"114":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"109":{"tf":1.0},"28":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":1.0},"53":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":9,"docs":{"104":{"tf":1.7320508075688772},"113":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"44":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"67":{"tf":2.449489742783178},"69":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"63":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.4142135623730951}},"i":{"df":2,"docs":{"45":{"tf":1.0},"84":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"109":{"tf":1.0},"81":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":5,"docs":{"0":{"tf":1.0},"133":{"tf":1.0},"51":{"tf":1.4142135623730951},"69":{"tf":1.0},"80":{"tf":1.7320508075688772}}}}},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":1,"docs":{"84":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"102":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"80":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":6,"docs":{"16":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"22":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}},"i":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0}}}},"v":{"df":1,"docs":{"109":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"109":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":2.23606797749979}}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"51":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":15,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"106":{"tf":2.0},"109":{"tf":4.795831523312719},"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"113":{"tf":2.0},"114":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":2.449489742783178},"90":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"[":{"0":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.0}}}},"c":{"df":2,"docs":{"35":{"tf":1.0},"76":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"80":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":6,"docs":{"109":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"54":{"tf":1.0}},"i":{"df":5,"docs":{"106":{"tf":2.0},"74":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"44":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"c":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"109":{"tf":2.0},"63":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"16":{"tf":1.0},"22":{"tf":1.0}}}}}},"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.7320508075688772},"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"78":{"tf":1.0}}}},"t":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":6,"docs":{"106":{"tf":1.4142135623730951},"109":{"tf":2.23606797749979},"116":{"tf":1.0},"80":{"tf":2.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":5,"docs":{"110":{"tf":1.4142135623730951},"114":{"tf":1.0},"69":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":2.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"72":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":2.23606797749979},"88":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"35":{"tf":1.7320508075688772},"45":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":4,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"108":{"tf":1.0},"29":{"tf":2.8284271247461903},"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"104":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"131":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"[":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"]":{"!":{"=":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"87":{"tf":1.0}}}}}}},":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},">":{"<":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"51":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.7320508075688772},"80":{"tf":3.872983346207417},"81":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":2,"docs":{"105":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":2.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":2.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"63":{"tf":1.0},"72":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":16,"docs":{"1":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"63":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":2.23606797749979},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":2.0},"89":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"51":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"g":{"df":2,"docs":{"82":{"tf":1.0},"87":{"tf":1.4142135623730951}},"o":{"df":1,"docs":{"87":{"tf":1.0}}},"r":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}}},"df":2,"docs":{"82":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"w":{"c":{"'":{"df":1,"docs":{"88":{"tf":1.0}}},"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"114":{"tf":1.0},"45":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"y":{"b":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"104":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"80":{"tf":2.0},"87":{"tf":2.6457513110645907},"88":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":9,"docs":{"103":{"tf":1.4142135623730951},"110":{"tf":1.0},"37":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":1,"docs":{"32":{"tf":1.0}},"l":{"df":3,"docs":{"45":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"106":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":6,"docs":{"0":{"tf":1.0},"106":{"tf":1.0},"45":{"tf":1.0},"80":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":1,"docs":{"105":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":4,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"35":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"133":{"tf":1.7320508075688772},"54":{"tf":1.0},"80":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":4,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"65":{"tf":1.7320508075688772},"80":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"72":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"80":{"tf":1.0},"88":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"/":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"109":{"tf":3.1622776601683795},"110":{"tf":1.0},"114":{"tf":1.0},"45":{"tf":1.4142135623730951},"53":{"tf":1.0},"80":{"tf":3.1622776601683795},"92":{"tf":1.0}},"e":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},">":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"2":{"df":1,"docs":{"109":{"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":{"109":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"a":{"d":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}},"df":1,"docs":{"109":{"tf":3.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"40":{"tf":1.0},"43":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"t":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}},"df":22,"docs":{"15":{"tf":1.4142135623730951},"16":{"tf":2.23606797749979},"17":{"tf":2.23606797749979},"18":{"tf":3.7416573867739413},"19":{"tf":3.4641016151377544},"20":{"tf":4.0},"21":{"tf":1.4142135623730951},"22":{"tf":2.23606797749979},"23":{"tf":2.23606797749979},"24":{"tf":3.7416573867739413},"25":{"tf":3.4641016151377544},"26":{"tf":4.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"51":{"tf":2.0},"78":{"tf":2.6457513110645907},"80":{"tf":3.4641016151377544},"81":{"tf":2.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"]":{"(":{"#":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"x":{"df":0,"docs":{},"t":{"(":{"*":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"49":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":2,"docs":{"110":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"111":{"tf":1.0},"115":{"tf":1.0},"84":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"df":0,"docs":{}}},"k":{"df":2,"docs":{"108":{"tf":1.0},"88":{"tf":1.0}}}},"r":{"d":{"df":4,"docs":{"110":{"tf":1.0},"28":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}}},"a":{"d":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":1,"docs":{"88":{"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.7320508075688772}},"}":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"!":{"=":{"!":{"$":{"df":0,"docs":{},"{":{"_":{"_":{"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":0,"docs":{},"e":{"df":0,"docs":{},"}":{"!":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"!":{"=":{"!":{"$":{"df":0,"docs":{},"{":{"_":{"_":{"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":0,"docs":{},"e":{"df":0,"docs":{},"}":{"!":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"?":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"82":{"tf":1.0},"84":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"110":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":7,"docs":{"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"116":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"49":{"tf":1.0},"80":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":8,"docs":{"102":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"46":{"tf":1.0},"80":{"tf":2.23606797749979},"84":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":12,"docs":{"106":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"53":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.4142135623730951},"91":{"tf":1.0},"96":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":2,"docs":{"115":{"tf":1.0},"120":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"32":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"35":{"tf":1.0}}}}},"o":{"(":{"df":0,"docs":{},"i":{".":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"p":{"df":2,"docs":{"105":{"tf":1.0},"87":{"tf":1.0}},"i":{"c":{"df":2,"docs":{"123":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"!":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":7,"docs":{"33":{"tf":2.23606797749979},"34":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":2.23606797749979},"42":{"tf":2.0},"43":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951}}},"k":{"df":2,"docs":{"0":{"tf":1.0},"4":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":5,"docs":{"67":{"tf":1.0},"80":{"tf":2.8284271247461903},"82":{"tf":1.4142135623730951},"84":{"tf":2.0},"87":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"114":{"tf":1.7320508075688772}}}},"i":{"df":1,"docs":{"88":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":8,"docs":{"109":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"d":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"122":{"tf":1.0},"125":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"45":{"tf":1.0},"53":{"tf":1.0},"80":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":11,"docs":{"109":{"tf":2.23606797749979},"15":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"38":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"69":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":19,"docs":{"102":{"tf":1.7320508075688772},"103":{"tf":1.0},"104":{"tf":2.449489742783178},"106":{"tf":2.0},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"29":{"tf":2.0},"38":{"tf":2.0},"52":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":2.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"88":{"tf":3.0},"89":{"tf":1.0},"92":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"c":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"u":{"df":2,"docs":{"19":{"tf":1.0},"25":{"tf":1.0}},"i":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"42":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.0}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"35":{"tf":1.0}}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}},"r":{"df":2,"docs":{"45":{"tf":1.0},"76":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"132":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"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":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"67":{"tf":1.0},"68":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"47":{"tf":2.0},"49":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"127":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0}},"e":{"=":{"1":{"df":2,"docs":{"16":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"116":{"tf":1.4142135623730951},"51":{"tf":1.0},"7":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"74":{"tf":1.4142135623730951},"84":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"114":{"tf":1.0},"92":{"tf":1.0}}}},"df":41,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"116":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":2.0},"20":{"tf":3.1622776601683795},"26":{"tf":3.1622776601683795},"27":{"tf":1.0},"29":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"41":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"45":{"tf":2.0},"53":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":2.0},"80":{"tf":4.58257569495584},"81":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":2.449489742783178},"85":{"tf":1.7320508075688772},"87":{"tf":2.6457513110645907},"88":{"tf":2.23606797749979},"91":{"tf":1.0},"92":{"tf":2.0},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":4,"docs":{"80":{"tf":2.0},"82":{"tf":1.0},"87":{"tf":3.3166247903554},"88":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":3,"docs":{"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"v":{"1":{"4":{".":{"1":{"9":{".":{"0":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"1":{"8":{".":{"0":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"87":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":5,"docs":{"103":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"43":{"tf":1.0},"85":{"tf":1.0}}}},"r":{"df":1,"docs":{"109":{"tf":1.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"106":{"tf":1.0},"29":{"tf":1.4142135623730951},"33":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"13":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"13":{"tf":2.23606797749979},"46":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0}}}}},"u":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"i":{"a":{"df":8,"docs":{"109":{"tf":2.0},"110":{"tf":1.0},"111":{"tf":1.0},"13":{"tf":1.0},"43":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"42":{"tf":1.4142135623730951},"43":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"109":{"tf":1.0},"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"32":{"tf":1.0}}},"/":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"32":{"tf":1.0},"38":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":4,"docs":{"11":{"tf":1.0},"32":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"75":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"78":{"tf":2.449489742783178},"80":{"tf":7.810249675906654},"87":{"tf":1.7320508075688772}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}}}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"85":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"4":{"tf":1.0},"80":{"tf":1.7320508075688772},"84":{"tf":2.0},"96":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"33":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951}}}},"t":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"92":{"tf":1.7320508075688772},"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":0,"docs":{}},"y":{"df":9,"docs":{"0":{"tf":1.0},"133":{"tf":1.0},"41":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.0},"85":{"tf":1.0},"87":{"tf":1.7320508075688772}}}},"df":1,"docs":{"32":{"tf":1.0}},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.0}}}},"r":{"df":1,"docs":{"80":{"tf":1.0}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"/":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"5":{"tf":1.4142135623730951}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"'":{"df":5,"docs":{"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"78":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.4142135623730951}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"87":{"tf":1.0}}}},"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"[":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"85":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}}}},"df":42,"docs":{"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"109":{"tf":2.449489742783178},"110":{"tf":2.0},"111":{"tf":1.0},"113":{"tf":2.449489742783178},"114":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":3.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":3.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":2.0},"78":{"tf":1.4142135623730951},"80":{"tf":4.0},"81":{"tf":2.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":2.0},"85":{"tf":2.0},"87":{"tf":3.4641016151377544},"88":{"tf":3.1622776601683795},"89":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"125":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"55":{"tf":1.0},"57":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":3,"docs":{"43":{"tf":1.0},"6":{"tf":1.0},"80":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"73":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"106":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"88":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"47":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"114":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"38":{"tf":1.0},"74":{"tf":1.0},"84":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"18":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"76":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"d":{"df":5,"docs":{"109":{"tf":1.4142135623730951},"114":{"tf":1.0},"73":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":12,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"6":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"30":{"tf":1.0},"35":{"tf":1.0}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"14":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"88":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"s":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"38":{"tf":1.4142135623730951}},"i":{"c":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"d":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"76":{"tf":1.0},"88":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"109":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"67":{"tf":1.0},"87":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"x":{".":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"z":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}}},"8":{"6":{"_":{"6":{"4":{"df":2,"docs":{"47":{"tf":2.0},"49":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"40":{"tf":1.0},"45":{"tf":2.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"18":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"83":{"tf":1.0}},"x":{"df":1,"docs":{"104":{"tf":1.0}},"x":{"df":1,"docs":{"75":{"tf":1.0}},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"v":{"df":1,"docs":{"51":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}}},"z":{"df":1,"docs":{"131":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"breadcrumbs":{"root":{"0":{".":{"1":{".":{"0":{"df":1,"docs":{"124":{"tf":1.7320508075688772}}},"1":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}},"0":{":":{"0":{"7":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":1,"docs":{"35":{"tf":1.4142135623730951}},"x":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"4":{"0":{"d":{"0":{"d":{"b":{"4":{"b":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{".":{"0":{".":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"35":{"tf":1.0}}},"6":{":":{"0":{"0":{":":{"0":{"7":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"13":{"tf":2.8284271247461903}}},"df":3,"docs":{"109":{"tf":1.7320508075688772},"45":{"tf":1.0},"80":{"tf":1.0}}},"2":{"/":{"3":{"/":{"4":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"2":{"2":{"0":{"9":{"1":{"9":{"1":{"7":{"1":{"6":{"0":{"8":{"6":{"2":{"9":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"4":{"1":{"6":{"2":{"4":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"1":{"9":{"8":{"6":{"1":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"3":{"0":{"0":{"2":{"2":{"0":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"2":{"9":{"7":{"6":{"5":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{"3":{"2":{"7":{"7":{"2":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"2":{"6":{"5":{"6":{"4":{"6":{"8":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"5":{"5":{"3":{"2":{"1":{"5":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{"5":{"0":{"7":{"3":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"2":{"3":{"2":{"2":{"8":{"1":{"4":{"6":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"5":{"8":{"3":{"2":{"7":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"2":{"0":{"7":{"3":{"9":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"1":{"8":{"0":{"9":{"1":{"5":{"3":{"2":{"6":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"1":{"1":{"0":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{"df":1,"docs":{"35":{"tf":1.0}}},"2":{"df":1,"docs":{"35":{"tf":1.0}}},"3":{"df":1,"docs":{"35":{"tf":1.0}}},"4":{"df":1,"docs":{"35":{"tf":1.0}}},"5":{"df":1,"docs":{"35":{"tf":1.0}}},"6":{"df":1,"docs":{"35":{"tf":1.0}}},"7":{"df":1,"docs":{"35":{"tf":1.0}}},"_":{"1":{"1":{".":{"3":{"2":{".":{"0":{"6":{"_":{"9":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"3":{"a":{"6":{"3":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"109":{"tf":1.0},"80":{"tf":1.0}}},"3":{"1":{"5":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"83":{"tf":1.0}}},"5":{"7":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"3":{"8":{".":{"0":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{".":{"0":{"df":2,"docs":{"72":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"9":{"2":{"2":{"9":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"47":{"tf":1.0}}},"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"52":{"tf":1.0}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"_":{".":{"d":{"(":{"_":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"_":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"(":{"_":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"_":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"29":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"_":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"0":{"_":{"_":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":2.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"a":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}}},".":{"df":0,"docs":{},"k":{".":{"a":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"6":{"4":{"df":2,"docs":{"47":{"tf":2.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"65":{"tf":1.0},"80":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"v":{"df":7,"docs":{"104":{"tf":1.0},"109":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.0},"69":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"74":{"tf":1.0},"75":{"tf":2.0},"88":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"104":{"tf":1.0},"88":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"80":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"51":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"109":{"tf":1.0},"65":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"80":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"46":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"df":7,"docs":{"103":{"tf":1.0},"109":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":2.23606797749979},"52":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"=":{"0":{"df":0,"docs":{},"x":{"7":{"0":{"0":{"0":{"0":{"c":{"c":{"6":{"6":{"5":{"6":{"0":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"51":{"tf":1.0}}}}}}},"df":4,"docs":{"103":{"tf":1.0},"110":{"tf":1.0},"51":{"tf":1.0},"80":{"tf":1.0}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"75":{"tf":1.0},"80":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"80":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"101":{"tf":1.4142135623730951},"105":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.4142135623730951},"75":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"{":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"|":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"36":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"4":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":3,"docs":{"53":{"tf":1.0},"80":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"109":{"tf":1.0},"5":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.4142135623730951}},"i":{"df":3,"docs":{"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0}}}},"z":{"df":3,"docs":{"11":{"tf":1.0},"32":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"103":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"p":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":1,"docs":{"45":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"38":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"80":{"tf":1.0}},"i":{"df":0,"docs":{},"x":{"df":6,"docs":{"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951}},"i":{"c":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.0}}},"df":7,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"78":{"tf":2.23606797749979},"80":{"tf":2.0},"84":{"tf":1.4142135623730951}}},"y":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"109":{"tf":2.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"114":{"tf":1.0},"51":{"tf":1.0}}}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"109":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"70":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"g":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"80":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"l":{"df":3,"docs":{"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.7320508075688772},"133":{"tf":1.0}}},"s":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951}}}},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"76":{"tf":1.0},"81":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"76":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"76":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"110":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"81":{"tf":2.449489742783178},"84":{"tf":3.1622776601683795},"87":{"tf":1.7320508075688772},"88":{"tf":1.0}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"109":{"tf":2.23606797749979},"92":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}}},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":2,"docs":{"85":{"tf":2.8284271247461903},"88":{"tf":2.449489742783178}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"38":{"tf":2.0}}},"df":0,"docs":{}}}},"df":2,"docs":{"38":{"tf":2.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"103":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0}}}},"df":1,"docs":{"46":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"8":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}}},"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"80":{"tf":1.0},"87":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{")":{"[":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"1":{"1":{"8":{"0":{"2":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":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":{"73":{"tf":1.0},"75":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"104":{"tf":1.7320508075688772}}}},"df":2,"docs":{"104":{"tf":1.0},"106":{"tf":2.0}}},"s":{"df":0,"docs":{},"e":{"df":9,"docs":{"110":{"tf":1.0},"114":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.0},"90":{"tf":1.0}}},"i":{"c":{"df":6,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"63":{"tf":1.0},"80":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":2,"docs":{"133":{"tf":1.0},"53":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"102":{"tf":1.0},"35":{"tf":1.0},"42":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"{":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"|":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"20":{"tf":2.449489742783178},"26":{"tf":2.449489742783178},"84":{"tf":1.0},"87":{"tf":2.0},"95":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"j":{"df":1,"docs":{"48":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.0},"51":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"104":{"tf":1.0},"36":{"tf":1.7320508075688772},"69":{"tf":1.0},"93":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"85":{"tf":1.0},"97":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"38":{"tf":1.0},"45":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.0}}}}},"d":{"df":4,"docs":{"114":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":3,"docs":{"72":{"tf":1.0},"80":{"tf":2.449489742783178},"88":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"80":{"tf":3.1622776601683795},"87":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"n":{"d":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"127":{"tf":1.0}},"h":{"df":3,"docs":{"76":{"tf":1.0},"84":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"40":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"113":{"tf":1.4142135623730951},"51":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"64":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"u":{"df":1,"docs":{"35":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}}}}},"g":{"df":3,"docs":{"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"51":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{":":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"32":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"j":{"df":1,"docs":{"37":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":33,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.7320508075688772},"14":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"20":{"tf":2.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"26":{"tf":2.0},"29":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":2.23606797749979},"34":{"tf":1.0},"35":{"tf":2.449489742783178},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":2.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":2.0},"9":{"tf":2.0}}},"df":0,"docs":{},"t":{"df":4,"docs":{"45":{"tf":1.0},"47":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"87":{"tf":1.0}}}},"d":{"df":0,"docs":{},"l":{"df":5,"docs":{"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}},"df":4,"docs":{"110":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"87":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"c":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"29":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":7,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"46":{"tf":1.0},"49":{"tf":2.449489742783178}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":4,"docs":{"16":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"18":{"tf":1.7320508075688772},"20":{"tf":3.1622776601683795},"24":{"tf":1.7320508075688772},"26":{"tf":3.1622776601683795},"28":{"tf":2.449489742783178},"30":{"tf":1.7320508075688772},"52":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"48":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"103":{"tf":1.0},"104":{"tf":2.449489742783178},"105":{"tf":1.0},"106":{"tf":1.0},"28":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":5,"docs":{"38":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"74":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"n":{"c":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":13,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"19":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.0},"51":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":2.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"81":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":2.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"a":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":10,"docs":{"109":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"29":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":1.0},"41":{"tf":1.0},"51":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{"/":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"40":{"tf":1.0},"42":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":3,"docs":{"110":{"tf":2.23606797749979},"116":{"tf":1.0},"80":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"110":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"109":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"110":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"i":{"df":1,"docs":{"51":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"133":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"104":{"tf":1.0},"109":{"tf":2.23606797749979},"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"109":{"tf":2.0},"90":{"tf":1.0}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"109":{"tf":1.0}}}}},"df":2,"docs":{"30":{"tf":1.0},"88":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"35":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"=":{"2":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}},"df":23,"docs":{"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":4.123105625617661},"110":{"tf":2.23606797749979},"111":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":2.23606797749979},"18":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"33":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"80":{"tf":5.5677643628300215},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":2.6457513110645907},"88":{"tf":2.6457513110645907},"9":{"tf":1.4142135623730951},"90":{"tf":1.0},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"d":{"b":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"110":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"13":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.0},"97":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"j":{"df":2,"docs":{"104":{"tf":1.0},"105":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"80":{"tf":1.0},"85":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"5":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.4142135623730951}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"109":{"tf":1.4142135623730951},"18":{"tf":1.0},"24":{"tf":1.0},"64":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":11,"docs":{"109":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"80":{"tf":3.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}}},"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":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"45":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"x":{"df":3,"docs":{"67":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"111":{"tf":1.0},"116":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"c":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}}},"a":{"df":1,"docs":{"96":{"tf":1.0}}},"b":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"/":{"a":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":6,"docs":{"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":2.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":2.23606797749979},"88":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"63":{"tf":1.0},"80":{"tf":2.23606797749979},"82":{"tf":1.0},"87":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"80":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"105":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"109":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"114":{"tf":1.0},"32":{"tf":1.0},"38":{"tf":2.8284271247461903},"78":{"tf":1.7320508075688772},"80":{"tf":2.449489742783178},"81":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"x":{":":{"'":{",":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"113":{"tf":1.7320508075688772}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"108":{"tf":1.4142135623730951},"109":{"tf":2.0},"111":{"tf":1.0},"113":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"106":{"tf":1.4142135623730951},"109":{"tf":3.1622776601683795},"114":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":3.872983346207417}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"65":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"28":{"tf":1.7320508075688772},"53":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"109":{"tf":1.0},"114":{"tf":1.0},"29":{"tf":1.0},"61":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"92":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"109":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"5":{"tf":1.0}},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"0":{"tf":1.7320508075688772},"3":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"49":{"tf":1.0},"5":{"tf":1.4142135623730951},"6":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"78":{"tf":1.0},"87":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.0}}},"t":{"df":7,"docs":{"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"16":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"67":{"tf":1.0}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"38":{"tf":1.0},"92":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"113":{"tf":1.0},"127":{"tf":1.0},"30":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"109":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"u":{".":{"2":{"0":{"2":{"3":{"0":{"5":{"2":{"2":{".":{"1":{"5":{"4":{"6":{"5":{"8":{".":{"1":{"4":{"5":{"7":{"7":{".":{"0":{".":{"0":{"0":{"1":{".":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"44":{"tf":1.4142135623730951},"45":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"35":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":16,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.4142135623730951},"116":{"tf":1.0},"127":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":3.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"101":{"tf":1.4142135623730951},"110":{"tf":1.0},"88":{"tf":2.23606797749979},"92":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"78":{"tf":2.449489742783178},"80":{"tf":4.0},"81":{"tf":2.6457513110645907},"83":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.23606797749979},"92":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"!":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"103":{"tf":1.0},"109":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"21":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"4":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"w":{"d":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951}}}}}},"t":{"a":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.0}}}}},"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}},"df":2,"docs":{"87":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"76":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"48":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"114":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":11,"docs":{"31":{"tf":1.7320508075688772},"32":{"tf":2.449489742783178},"33":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":2.23606797749979},"37":{"tf":2.0},"38":{"tf":2.23606797749979},"39":{"tf":2.23606797749979},"41":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}},"g":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"80":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":11,"docs":{"106":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"29":{"tf":1.0},"38":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"109":{"tf":1.7320508075688772},"113":{"tf":1.0},"29":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":2.8284271247461903},"88":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"80":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"v":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"c":{"df":0,"docs":{},"m":{"d":{"/":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"@":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":2.0},"53":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"p":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"[":{"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"109":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"df":36,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"103":{"tf":2.23606797749979},"104":{"tf":2.8284271247461903},"105":{"tf":1.4142135623730951},"106":{"tf":3.0},"107":{"tf":1.7320508075688772},"108":{"tf":2.0},"109":{"tf":3.872983346207417},"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.7320508075688772},"119":{"tf":1.0},"120":{"tf":1.0},"28":{"tf":1.4142135623730951},"71":{"tf":1.0},"8":{"tf":2.0},"85":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":3.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":2.449489742783178},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"92":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"103":{"tf":1.0},"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"85":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":4,"docs":{"104":{"tf":1.0},"73":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"113":{"tf":1.0},"124":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"41":{"tf":1.0},"65":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}},"v":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}}},"df":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":{"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":4,"docs":{"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":7,"docs":{"103":{"tf":1.0},"113":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"6":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"102":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"133":{"tf":1.0},"5":{"tf":1.0},"88":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"29":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"28":{"tf":2.23606797749979},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"33":{"tf":1.0},"45":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"36":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.0}}}}},"o":{"c":{"1":{"df":1,"docs":{"75":{"tf":1.0}}},"2":{"df":1,"docs":{"75":{"tf":1.0}}},"df":7,"docs":{"105":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.7320508075688772},"5":{"tf":1.0},"6":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":1,"docs":{"80":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":6,"docs":{"109":{"tf":1.4142135623730951},"18":{"tf":1.0},"24":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"110":{"tf":2.0},"80":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.0},"84":{"tf":1.0}}},"t":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"102":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"84":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":4,"docs":{"104":{"tf":1.0},"44":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":2.0}}}},"2":{"df":4,"docs":{"27":{"tf":2.23606797749979},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"h":{"df":20,"docs":{"102":{"tf":1.0},"106":{"tf":1.7320508075688772},"109":{"tf":1.7320508075688772},"110":{"tf":2.23606797749979},"111":{"tf":1.0},"116":{"tf":1.0},"133":{"tf":1.0},"30":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.0},"82":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.7320508075688772},"93":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"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":4,"docs":{"104":{"tf":1.7320508075688772},"109":{"tf":1.0},"113":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"114":{"tf":2.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"110":{"tf":1.0},"34":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"113":{"tf":1.0},"53":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}}}},"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":8,"docs":{"103":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.4142135623730951},"28":{"tf":1.0},"45":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"133":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"111":{"tf":1.4142135623730951},"51":{"tf":1.0},"88":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"38":{"tf":1.0}}},"y":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"13":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.4142135623730951}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"41":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}},"s":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":5,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":2.449489742783178},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"109":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"53":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}},"t":{"c":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":9,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"104":{"tf":1.7320508075688772},"65":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"109":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.4142135623730951}},"t":{"df":2,"docs":{"33":{"tf":1.0},"43":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"40":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":22,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"13":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":2.449489742783178},"69":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":2.0},"82":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"c":{"_":{"b":{"a":{"d":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"80":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"102":{"tf":1.0},"37":{"tf":1.0},"67":{"tf":2.0},"69":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"29":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}}},"t":{"df":1,"docs":{"45":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"81":{"tf":1.0},"87":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"41":{"tf":1.0}}},"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"81":{"tf":1.4142135623730951}},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"81":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"109":{"tf":1.0},"55":{"tf":1.0},"72":{"tf":1.0},"90":{"tf":1.0}}}},"n":{"df":9,"docs":{"104":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"40":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":7,"docs":{"105":{"tf":1.0},"106":{"tf":2.0},"109":{"tf":1.0},"114":{"tf":2.0},"29":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"106":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"113":{"tf":2.0},"35":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"109":{"tf":1.7320508075688772},"87":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":5,"docs":{"11":{"tf":1.0},"32":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.6457513110645907},"84":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":2,"docs":{"78":{"tf":1.0},"80":{"tf":3.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"a":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"73":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}},"t":{"df":1,"docs":{"109":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"16":{"tf":1.0},"22":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":1,"docs":{"88":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"127":{"tf":1.0},"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":3,"docs":{"106":{"tf":1.0},"110":{"tf":1.0},"80":{"tf":1.7320508075688772}}}},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"83":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"102":{"tf":1.0},"104":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":22,"docs":{"103":{"tf":1.7320508075688772},"109":{"tf":1.0},"20":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"29":{"tf":2.23606797749979},"38":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":2.0},"54":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":3.872983346207417},"81":{"tf":2.0},"82":{"tf":1.0},"84":{"tf":3.0},"87":{"tf":2.23606797749979},"88":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"75":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{".":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"19":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"87":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"106":{"tf":1.0},"110":{"tf":1.7320508075688772},"113":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"80":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}}},"d":{"df":9,"docs":{"102":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.0},"81":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"29":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"0":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.7320508075688772},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"67":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"37":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"82":{"tf":1.0}}},"x":{"df":4,"docs":{"18":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.0},"51":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":3.4641016151377544}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"l":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"65":{"tf":1.0},"87":{"tf":2.0}}}}},"n":{"df":2,"docs":{"29":{"tf":1.0},"35":{"tf":1.0}},"m":{"df":1,"docs":{"13":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"109":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"108":{"tf":1.0},"113":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"28":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":16,"docs":{"114":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.7320508075688772},"47":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}},"o":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"104":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":5,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":3.605551275463989},"109":{"tf":2.0},"114":{"tf":2.449489742783178},"95":{"tf":1.4142135623730951}}},"r":{"c":{"df":1,"docs":{"80":{"tf":2.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"51":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"85":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"133":{"tf":1.0},"46":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"80":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"88":{"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":3,"docs":{"109":{"tf":3.0},"75":{"tf":2.0},"88":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"35":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"106":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":4,"docs":{"80":{"tf":2.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":16,"docs":{"109":{"tf":1.0},"114":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"40":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"133":{"tf":2.0}}}}},"df":4,"docs":{"44":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":15,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":2.23606797749979},"110":{"tf":2.449489742783178},"113":{"tf":1.7320508075688772},"114":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"44":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":2.0},"88":{"tf":2.449489742783178}}}}},"t":{"df":9,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"103":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}},"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":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"1":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"80":{"tf":1.0},"87":{"tf":1.0}},"n":{"df":4,"docs":{"109":{"tf":1.7320508075688772},"111":{"tf":1.0},"116":{"tf":1.0},"87":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"73":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":6,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"32":{"tf":1.0},"80":{"tf":2.449489742783178},"81":{"tf":1.0},"88":{"tf":1.4142135623730951}},"e":{"df":2,"docs":{"5":{"tf":1.0},"88":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"84":{"tf":1.0}}}},"o":{"d":{"df":10,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"3":{"tf":1.7320508075688772},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"h":{"df":5,"docs":{"101":{"tf":1.4142135623730951},"104":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"93":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"78":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"5":{"tf":1.4142135623730951},"6":{"tf":2.0},"64":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"87":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"80":{"tf":2.23606797749979},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"53":{"tf":1.0}},"l":{"df":10,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":3.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"r":{"d":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":4,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.0},"109":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"106":{"tf":1.0},"109":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":9,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":1.4142135623730951},"64":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.7320508075688772}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":4,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.0},"88":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":12,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"13":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"109":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.7320508075688772}}}}},"o":{"d":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":2,"docs":{"110":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"df":2,"docs":{"111":{"tf":1.7320508075688772},"95":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"#":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"110":{"tf":1.0},"85":{"tf":1.0}}}}}},"i":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}}},".":{"df":1,"docs":{"116":{"tf":1.0}}},"6":{"8":{"6":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":2,"docs":{"106":{"tf":1.0},"37":{"tf":1.0}},"e":{"a":{"df":4,"docs":{"109":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"87":{"tf":1.0}},"l":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":6,"docs":{"102":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"40":{"tf":1.0},"63":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"80":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":13,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"41":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":2.23606797749979},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.7320508075688772}}}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"81":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{".":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":16,"docs":{"104":{"tf":2.0},"106":{"tf":3.4641016151377544},"109":{"tf":2.449489742783178},"116":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"53":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":2.0},"80":{"tf":6.082762530298219},"83":{"tf":2.23606797749979},"84":{"tf":1.0},"87":{"tf":2.449489742783178},"88":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"df":1,"docs":{"109":{"tf":1.0}}},"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"40":{"tf":1.0},"85":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":10,"docs":{"16":{"tf":1.0},"22":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"!":{"=":{"!":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"j":{"df":3,"docs":{"104":{"tf":2.449489742783178},"116":{"tf":1.0},"96":{"tf":1.0}},"s":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"#":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"75":{"tf":1.4142135623730951}}}},"i":{"c":{"df":4,"docs":{"103":{"tf":1.0},"110":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":2,"docs":{"43":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":4,"docs":{"33":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"45":{"tf":1.0},"51":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"109":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"42":{"tf":1.0},"88":{"tf":1.0}}}}},"r":{"a":{"df":3,"docs":{"18":{"tf":1.0},"24":{"tf":1.0},"5":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"109":{"tf":2.0},"114":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"i":{"df":2,"docs":{"32":{"tf":1.0},"88":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"102":{"tf":1.7320508075688772},"104":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"80":{"tf":2.8284271247461903},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772},"87":{"tf":3.1622776601683795},"88":{"tf":2.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"11":{"tf":1.4142135623730951},"13":{"tf":3.0},"32":{"tf":2.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"8":{"tf":2.6457513110645907}}},"n":{"c":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"53":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"33":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":2.6457513110645907}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"80":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.0},"4":{"tf":1.0},"50":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}},"n":{"df":9,"docs":{"103":{"tf":1.4142135623730951},"113":{"tf":1.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"69":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":11,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":7,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"50":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"45":{"tf":1.4142135623730951},"63":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"5":{"tf":1.0},"6":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":11,"docs":{"0":{"tf":1.4142135623730951},"109":{"tf":1.0},"3":{"tf":2.0},"4":{"tf":2.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0}}}}},"t":{"'":{"df":19,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"110":{"tf":2.0},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"38":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.4142135623730951},"76":{"tf":1.0},"78":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.7320508075688772}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"110":{"tf":1.7320508075688772},"122":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":5,"docs":{"102":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"df":8,"docs":{"106":{"tf":1.0},"113":{"tf":1.0},"36":{"tf":1.7320508075688772},"76":{"tf":1.0},"80":{"tf":3.4641016151377544},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"88":{"tf":2.449489742783178}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}},"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}}},"o":{"b":{"df":2,"docs":{"110":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":4.0}}}},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"75":{"tf":1.0}},"s":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"#":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":10,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"44":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"80":{"tf":2.6457513110645907},"87":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"104":{"tf":1.0},"42":{"tf":1.0},"76":{"tf":1.0}}}},"x":{"df":2,"docs":{"82":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":2,"docs":{"51":{"tf":1.0},"63":{"tf":1.0}}}},"y":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"n":{"d":{"df":11,"docs":{"110":{"tf":1.0},"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"84":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"114":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":5,"docs":{"110":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":7,"docs":{"127":{"tf":1.7320508075688772},"3":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"80":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"80":{"tf":1.0}},"r":{"df":8,"docs":{"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"114":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"46":{"tf":1.0},"47":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}}}}}},":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":2.0}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"2":{"0":{"2":{"3":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":4,"docs":{"32":{"tf":1.4142135623730951},"35":{"tf":1.0},"38":{"tf":2.0},"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":1.0},"51":{"tf":1.4142135623730951}}}},"v":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"80":{"tf":2.0},"81":{"tf":2.0},"87":{"tf":1.4142135623730951}}}},"t":{"'":{"df":5,"docs":{"109":{"tf":1.0},"116":{"tf":1.0},"37":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":15,"docs":{"0":{"tf":1.0},"100":{"tf":1.4142135623730951},"28":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":3,"docs":{"110":{"tf":1.0},"19":{"tf":1.0},"25":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"k":{"df":3,"docs":{"110":{"tf":1.0},"51":{"tf":1.0},"88":{"tf":1.0}}},"t":{":":{"df":0,"docs":{},"j":{"df":1,"docs":{"51":{"tf":1.0}}},"r":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"47":{"tf":2.0},"49":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"54":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"72":{"tf":1.0},"80":{"tf":2.23606797749979},"88":{"tf":1.4142135623730951}}}}}},"l":{"d":{"b":{"df":2,"docs":{"35":{"tf":2.449489742783178},"38":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"a":{"d":{"df":5,"docs":{"68":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"!":{".":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"74":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"'":{"df":1,"docs":{"88":{"tf":1.0}}},"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"80":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"?":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"!":{".":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"74":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"103":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}}}}}},"df":34,"docs":{"102":{"tf":2.23606797749979},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"44":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":3.1622776601683795},"64":{"tf":1.4142135623730951},"65":{"tf":3.3166247903554},"66":{"tf":1.0},"67":{"tf":4.242640687119285},"68":{"tf":1.4142135623730951},"69":{"tf":3.3166247903554},"71":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":2.449489742783178},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":3.0},"79":{"tf":1.0},"80":{"tf":8.18535277187245},"81":{"tf":2.6457513110645907},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":3.605551275463989},"85":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"87":{"tf":6.6332495807108},"88":{"tf":3.872983346207417},"89":{"tf":2.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"s":{"!":{".":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"51":{"tf":1.0}}},"t":{"df":6,"docs":{"103":{"tf":1.0},"133":{"tf":1.0},"45":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"o":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"[":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"]":{"!":{"=":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"72":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":7,"docs":{"106":{"tf":1.0},"109":{"tf":1.4142135623730951},"113":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"69":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}}},"s":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}},"t":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"w":{"df":1,"docs":{"100":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"13":{"tf":2.0}}}},"m":{"a":{"c":{"df":2,"docs":{"40":{"tf":1.0},"45":{"tf":1.7320508075688772}},"o":{"df":1,"docs":{"37":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"109":{"tf":1.4142135623730951},"111":{"tf":1.0},"19":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"105":{"tf":1.4142135623730951},"5":{"tf":1.0},"51":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":14,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"13":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"#":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"50":{"tf":1.0},"87":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":2,"docs":{"106":{"tf":1.0},"38":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"k":{"!":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":4,"docs":{"69":{"tf":1.0},"75":{"tf":1.0},"92":{"tf":1.7320508075688772},"95":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"102":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":4.242640687119285},"82":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"87":{"tf":3.4641016151377544},"88":{"tf":2.449489742783178},"96":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"75":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"106":{"tf":1.0},"109":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"38":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"73":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0}},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"67":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"133":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"127":{"tf":1.0},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"110":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.23606797749979}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"80":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"78":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":1,"docs":{"53":{"tf":2.449489742783178}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}},"s":{"c":{"df":2,"docs":{"126":{"tf":1.7320508075688772},"127":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"92":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"103":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"63":{"tf":1.0}}}}},"x":{"df":4,"docs":{"36":{"tf":2.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"39":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"109":{"tf":1.0}},"e":{"df":4,"docs":{"103":{"tf":1.0},"113":{"tf":1.0},"37":{"tf":1.0},"95":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"109":{"tf":2.0}},"i":{"df":7,"docs":{"109":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"67":{"tf":1.0},"80":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":26,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":3.0},"103":{"tf":2.0},"104":{"tf":2.0},"105":{"tf":2.23606797749979},"106":{"tf":3.872983346207417},"109":{"tf":2.0},"110":{"tf":2.0},"111":{"tf":2.0},"114":{"tf":1.0},"116":{"tf":1.7320508075688772},"20":{"tf":1.0},"26":{"tf":1.0},"67":{"tf":1.7320508075688772},"74":{"tf":1.0},"76":{"tf":2.23606797749979},"78":{"tf":1.7320508075688772},"80":{"tf":2.449489742783178},"81":{"tf":2.449489742783178},"84":{"tf":1.4142135623730951},"87":{"tf":2.23606797749979},"88":{"tf":4.358898943540674},"89":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772}},"e":{"'":{"df":1,"docs":{"110":{"tf":1.0}}},".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"114":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":3.3166247903554},"81":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":8,"docs":{"104":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.0}},"e":{"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":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"104":{"tf":2.0},"105":{"tf":1.0},"106":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":14,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":2.23606797749979},"113":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"111":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"85":{"tf":1.0},"88":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"47":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"28":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":6,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"29":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":2.449489742783178}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"32":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":8,"docs":{"63":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":2.23606797749979},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"df":1,"docs":{"80":{"tf":1.4142135623730951}},"e":{"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":{"105":{"tf":1.0},"109":{"tf":1.0},"29":{"tf":1.0},"38":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":13,"docs":{"123":{"tf":1.0},"125":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"19":{"tf":1.0},"25":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}}}}}},"w":{"df":9,"docs":{"109":{"tf":2.0},"127":{"tf":1.0},"29":{"tf":1.0},"51":{"tf":1.7320508075688772},"6":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}}},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"46":{"tf":1.0},"48":{"tf":2.0}}}}}}}},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"=":{"1":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":13,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":3.0},"15":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"51":{"tf":1.0},"7":{"tf":1.0},"76":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772},"9":{"tf":1.0}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"df":11,"docs":{"13":{"tf":1.0},"17":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"32":{"tf":1.0},"35":{"tf":2.23606797749979},"38":{"tf":3.1622776601683795},"44":{"tf":1.0},"63":{"tf":1.0},"8":{"tf":1.0}},"j":{"df":2,"docs":{"40":{"tf":1.0},"44":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}},"n":{"df":1,"docs":{"88":{"tf":1.0}},"e":{"df":1,"docs":{"80":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":11,"docs":{"102":{"tf":1.0},"116":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"45":{"tf":1.0},"63":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"88":{"tf":3.1622776601683795}},"e":{"#":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}},"y":{"#":{"c":{"df":0,"docs":{},"r":{"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":{}}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"76":{"tf":1.7320508075688772},"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":1,"docs":{"78":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"df":4,"docs":{"37":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.0},"8":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"85":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"106":{"tf":2.0},"108":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"13":{"tf":2.23606797749979}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"k":{"df":1,"docs":{"85":{"tf":1.0}}},"l":{"d":{"df":3,"docs":{"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":2.0},"80":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"c":{"df":3,"docs":{"35":{"tf":1.0},"45":{"tf":1.0},"85":{"tf":1.0}}},"df":7,"docs":{"109":{"tf":1.0},"116":{"tf":1.0},"15":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"29":{"tf":1.0},"67":{"tf":1.0},"81":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"29":{"tf":1.0}}}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"2":{"4":{"4":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":8,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"69":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"84":{"tf":2.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"103":{"tf":1.0},"29":{"tf":1.0},"43":{"tf":1.0},"52":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.23606797749979},"78":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"109":{"tf":2.0},"69":{"tf":1.4142135623730951},"80":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"113":{"tf":1.0},"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"67":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"76":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"t":{"df":6,"docs":{"109":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"45":{"tf":2.0},"84":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"85":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"84":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"4":{"tf":1.0},"87":{"tf":1.0}}}}}}}}},"x":{"c":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"34":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"19":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"5":{"tf":1.0},"51":{"tf":2.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"35":{"tf":1.7320508075688772},"45":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"46":{"tf":1.0},"55":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}},"r":{"df":1,"docs":{"109":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"109":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}},"s":{"df":7,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"35":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":3,"docs":{"106":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.449489742783178}}}}},"t":{"(":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":11,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.7320508075688772},"18":{"tf":1.0},"24":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.449489742783178},"82":{"tf":1.7320508075688772},"86":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.0}},"i":{"df":2,"docs":{"82":{"tf":1.0},"84":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":14,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"108":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"109":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":1.0}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":10,"docs":{"102":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"29":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":2.0},"80":{"tf":3.605551275463989},"88":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"29":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951}}}}}}}}},"c":{"df":1,"docs":{"47":{"tf":1.7320508075688772}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":2,"docs":{"72":{"tf":1.0},"88":{"tf":1.0}}}},"r":{"df":2,"docs":{"109":{"tf":1.0},"125":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"40":{"tf":1.0},"44":{"tf":1.0},"63":{"tf":1.7320508075688772},"69":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"133":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"65":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.0},"67":{"tf":1.0},"69":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"122":{"tf":1.0},"125":{"tf":1.0}}},"y":{"df":1,"docs":{"133":{"tf":1.0}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"27":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"1":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"103":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"114":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"78":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":3.1622776601683795}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"|":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"81":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"m":{"@":{"7":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"19":{"tf":1.7320508075688772},"25":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"45":{"tf":1.0},"51":{"tf":1.7320508075688772},"8":{"tf":2.0},"9":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"28":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"30":{"tf":1.0},"38":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"69":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"92":{"tf":1.0}}}}},"df":1,"docs":{"84":{"tf":1.0}}}}},"r":{"df":6,"docs":{"127":{"tf":1.4142135623730951},"49":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":2.0},"62":{"tf":1.4142135623730951},"75":{"tf":1.0}},"e":{"df":3,"docs":{"102":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"105":{"tf":1.0},"54":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"87":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"37":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"106":{"tf":1.0},"108":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772}}}}},"s":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.4142135623730951}},"s":{"df":3,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.0},"43":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"109":{"tf":1.0},"4":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"53":{"tf":1.4142135623730951},"73":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"110":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"45":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"113":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"df":8,"docs":{"102":{"tf":1.0},"110":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}}}}}}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"42":{"tf":1.0},"45":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"35":{"tf":1.7320508075688772}},"f":{"df":1,"docs":{"44":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"40":{"tf":2.23606797749979},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":2.449489742783178},"45":{"tf":2.23606797749979}},"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":{"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"35":{"tf":1.0},"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"37":{"tf":1.0},"4":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":7,"docs":{"28":{"tf":2.0},"29":{"tf":1.7320508075688772},"3":{"tf":1.0},"30":{"tf":1.0},"45":{"tf":1.7320508075688772},"54":{"tf":1.0},"80":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"}":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"80":{"tf":2.23606797749979},"82":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"75":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":10,"docs":{"102":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":2.23606797749979},"4":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.7320508075688772},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"80":{"tf":2.0}}}},"df":0,"docs":{}}}},"u":{"b":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"46":{"tf":1.0},"49":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"51":{"tf":2.23606797749979}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"68":{"tf":1.0},"75":{"tf":1.4142135623730951},"82":{"tf":1.0},"88":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.0},"75":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"49":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":6,"docs":{"111":{"tf":1.0},"114":{"tf":1.0},"45":{"tf":1.0},"63":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"106":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"w":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"78":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}},"df":1,"docs":{"35":{"tf":1.4142135623730951}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.0}}},"t":{"df":1,"docs":{"87":{"tf":1.0}}}},"d":{"df":4,"docs":{"106":{"tf":1.0},"51":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":1.7320508075688772}}},"df":0,"docs":{},"l":{"df":9,"docs":{"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"76":{"tf":1.0},"80":{"tf":2.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"92":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"35":{"tf":1.0},"63":{"tf":1.4142135623730951}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"110":{"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":7,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":2,"docs":{"113":{"tf":1.0},"45":{"tf":2.23606797749979}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"114":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"75":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":2,"docs":{"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"64":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"75":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"108":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.4142135623730951},"38":{"tf":1.0},"66":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":2.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"110":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"88":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"102":{"tf":1.0},"84":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"80":{"tf":1.0}},"p":{"df":1,"docs":{"92":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"29":{"tf":1.0},"69":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"20":{"tf":1.0},"26":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}}}},"df":2,"docs":{"74":{"tf":1.0},"87":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":8,"docs":{"124":{"tf":2.449489742783178},"125":{"tf":3.1622776601683795},"33":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":2.23606797749979},"47":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"49":{"tf":2.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"102":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"109":{"tf":1.0},"80":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"127":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"c":{"df":6,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":2.23606797749979},"111":{"tf":2.23606797749979},"113":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"127":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"5":{"tf":1.0},"51":{"tf":1.4142135623730951}}},"y":{"'":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":1.0},"67":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"53":{"tf":2.6457513110645907}}},"df":0,"docs":{}}},"df":1,"docs":{"53":{"tf":1.0}}}}},"q":{"df":1,"docs":{"109":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"102":{"tf":1.4142135623730951},"104":{"tf":2.23606797749979},"38":{"tf":2.0},"51":{"tf":2.23606797749979},"67":{"tf":1.4142135623730951},"74":{"tf":2.6457513110645907},"75":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.0},"87":{"tf":2.23606797749979},"88":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"104":{"tf":1.0},"109":{"tf":1.7320508075688772},"110":{"tf":2.0},"80":{"tf":1.0},"87":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"80":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}},"v":{"df":8,"docs":{"103":{"tf":2.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"63":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.23606797749979}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":12,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":1.0},"75":{"tf":2.0},"78":{"tf":1.0},"80":{"tf":3.0},"82":{"tf":1.7320508075688772},"84":{"tf":2.23606797749979},"87":{"tf":2.23606797749979},"88":{"tf":2.6457513110645907}},"e":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"75":{"tf":1.0},"80":{"tf":2.23606797749979},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":4.123105625617661}}}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"110":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"39":{"tf":1.0},"65":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"74":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":8,"docs":{"109":{"tf":1.4142135623730951},"114":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"80":{"tf":4.242640687119285},"82":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"s":{"df":7,"docs":{"68":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"f":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"i":{"d":{"df":2,"docs":{"81":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"110":{"tf":1.0},"87":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":6,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"37":{"tf":1.0},"87":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"#":{"2":{"7":{"8":{"0":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"8":{"df":1,"docs":{"62":{"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"28":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"32":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"46":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"41":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"33":{"tf":1.0},"41":{"tf":1.4142135623730951}},"e":{"=":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"c":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"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":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"&":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":2,"docs":{"33":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":40,"docs":{"0":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"133":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":2.23606797749979},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":2.23606797749979},"26":{"tf":1.0},"29":{"tf":2.6457513110645907},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":2.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":2.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"81":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}},"1":{"df":1,"docs":{"84":{"tf":1.0}}},"2":{"df":1,"docs":{"84":{"tf":1.0}}},"df":9,"docs":{"28":{"tf":1.0},"29":{"tf":1.0},"78":{"tf":2.6457513110645907},"80":{"tf":3.4641016151377544},"81":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"89":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}}}},"n":{"df":25,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.7320508075688772},"19":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":1.7320508075688772},"25":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"51":{"tf":2.449489742783178},"7":{"tf":1.7320508075688772},"8":{"tf":1.0},"9":{"tf":2.0}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":3,"docs":{"63":{"tf":1.0},"67":{"tf":2.0},"93":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":3.0},"111":{"tf":1.0},"35":{"tf":1.0},"80":{"tf":1.0},"96":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":2.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"110":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"11":{"tf":2.0},"129":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.7320508075688772},"21":{"tf":1.0},"22":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"35":{"tf":2.449489742783178},"36":{"tf":1.7320508075688772},"45":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":2.23606797749979},"69":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":11,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"45":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":4,"docs":{"76":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":2.449489742783178}}}}}},">":{"<":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"80":{"tf":2.6457513110645907}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"110":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"110":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"109":{"tf":2.0},"40":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":17,"docs":{"104":{"tf":1.0},"109":{"tf":2.23606797749979},"113":{"tf":1.0},"114":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.4142135623730951},"87":{"tf":2.0},"88":{"tf":1.7320508075688772},"92":{"tf":1.0}},"n":{"df":1,"docs":{"113":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"32":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"df":2,"docs":{"35":{"tf":1.0},"53":{"tf":1.0}}}},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"124":{"tf":1.0}}}}}},"df":1,"docs":{"46":{"tf":1.0}}}}}},"n":{"d":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"74":{"tf":1.0},"80":{"tf":1.7320508075688772},"87":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772}}}}}},"t":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"df":13,"docs":{"110":{"tf":1.0},"113":{"tf":1.4142135623730951},"15":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"51":{"tf":1.0}}}}}},"f":{"c":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"?":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"80":{"tf":2.0}}}}}},"df":1,"docs":{"80":{"tf":3.4641016151377544}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"114":{"tf":2.0}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"109":{"tf":1.0},"28":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":1.0},"53":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":9,"docs":{"104":{"tf":1.7320508075688772},"113":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"44":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"67":{"tf":2.449489742783178},"69":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"63":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.4142135623730951}},"i":{"df":2,"docs":{"45":{"tf":1.0},"84":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"109":{"tf":1.0},"81":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":5,"docs":{"0":{"tf":1.0},"133":{"tf":1.0},"51":{"tf":1.4142135623730951},"69":{"tf":1.0},"80":{"tf":1.7320508075688772}}}}},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":1,"docs":{"84":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"102":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"80":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":6,"docs":{"16":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"22":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}},"i":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0}}}},"v":{"df":1,"docs":{"109":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"109":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":2.23606797749979}}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"51":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":15,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"106":{"tf":2.0},"109":{"tf":4.795831523312719},"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"113":{"tf":2.0},"114":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":2.449489742783178},"90":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"[":{"0":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.0}}}},"c":{"df":2,"docs":{"35":{"tf":1.0},"76":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"80":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":6,"docs":{"109":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"54":{"tf":1.0}},"i":{"df":5,"docs":{"106":{"tf":2.0},"74":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"44":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"c":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"109":{"tf":2.0},"63":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"16":{"tf":1.0},"22":{"tf":1.0}}}}}},"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":16,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.7320508075688772},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"4":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"t":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":6,"docs":{"106":{"tf":1.4142135623730951},"109":{"tf":2.23606797749979},"116":{"tf":1.0},"80":{"tf":2.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":5,"docs":{"110":{"tf":1.4142135623730951},"114":{"tf":1.0},"69":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":2.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"72":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":2.23606797749979},"88":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"35":{"tf":1.7320508075688772},"45":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":4,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"108":{"tf":1.0},"29":{"tf":2.8284271247461903},"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"104":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":4,"docs":{"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"[":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"]":{"!":{"=":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"87":{"tf":1.0}}}}}}},":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},">":{"<":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"51":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.7320508075688772},"80":{"tf":3.872983346207417},"81":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":2,"docs":{"105":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.7320508075688772}}}}}}},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":2.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":2.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"63":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":16,"docs":{"1":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"63":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":2.449489742783178},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":2.0},"89":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"51":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"g":{"df":2,"docs":{"82":{"tf":1.0},"87":{"tf":1.4142135623730951}},"o":{"df":1,"docs":{"87":{"tf":1.0}}},"r":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}}},"df":2,"docs":{"82":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"w":{"c":{"'":{"df":1,"docs":{"88":{"tf":1.0}}},"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"114":{"tf":1.0},"45":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"y":{"b":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"104":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"80":{"tf":2.0},"87":{"tf":2.6457513110645907},"88":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":9,"docs":{"103":{"tf":1.4142135623730951},"110":{"tf":1.0},"37":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":1,"docs":{"32":{"tf":1.0}},"l":{"df":3,"docs":{"45":{"tf":1.0},"61":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"106":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":6,"docs":{"0":{"tf":1.0},"106":{"tf":1.0},"45":{"tf":1.0},"80":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":1,"docs":{"105":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":4,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"35":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"133":{"tf":2.0},"54":{"tf":1.7320508075688772},"80":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":4,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"65":{"tf":1.7320508075688772},"80":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"72":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"80":{"tf":1.0},"88":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"/":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"109":{"tf":3.3166247903554},"110":{"tf":1.0},"114":{"tf":1.0},"45":{"tf":1.4142135623730951},"53":{"tf":1.0},"80":{"tf":3.1622776601683795},"92":{"tf":1.0}},"e":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},">":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"2":{"df":1,"docs":{"109":{"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":{"109":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"a":{"d":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}},"df":1,"docs":{"109":{"tf":3.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"40":{"tf":1.0},"43":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"t":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}},"df":22,"docs":{"15":{"tf":2.0},"16":{"tf":2.6457513110645907},"17":{"tf":2.6457513110645907},"18":{"tf":4.0},"19":{"tf":3.7416573867739413},"20":{"tf":4.242640687119285},"21":{"tf":2.0},"22":{"tf":2.6457513110645907},"23":{"tf":2.6457513110645907},"24":{"tf":4.0},"25":{"tf":3.7416573867739413},"26":{"tf":4.242640687119285},"27":{"tf":1.7320508075688772},"28":{"tf":2.0},"29":{"tf":2.0},"30":{"tf":1.7320508075688772},"51":{"tf":2.0},"78":{"tf":2.6457513110645907},"80":{"tf":3.4641016151377544},"81":{"tf":2.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"]":{"(":{"#":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"x":{"df":0,"docs":{},"t":{"(":{"*":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"49":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":2,"docs":{"110":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"84":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"df":0,"docs":{}}},"k":{"df":2,"docs":{"108":{"tf":1.0},"88":{"tf":1.0}}}},"r":{"d":{"df":4,"docs":{"110":{"tf":1.0},"28":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}}},"a":{"d":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":1,"docs":{"88":{"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.7320508075688772}},"}":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"!":{"=":{"!":{"$":{"df":0,"docs":{},"{":{"_":{"_":{"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":0,"docs":{},"e":{"df":0,"docs":{},"}":{"!":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"!":{"=":{"!":{"$":{"df":0,"docs":{},"{":{"_":{"_":{"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":0,"docs":{},"e":{"df":0,"docs":{},"}":{"!":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"?":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"82":{"tf":1.0},"84":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"110":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":7,"docs":{"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"116":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"49":{"tf":1.0},"80":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":8,"docs":{"102":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"46":{"tf":1.0},"80":{"tf":2.23606797749979},"84":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"123":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":12,"docs":{"106":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"53":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.4142135623730951},"91":{"tf":1.0},"96":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.7320508075688772}}}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":2,"docs":{"115":{"tf":1.0},"120":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"32":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"35":{"tf":1.0}}}}},"o":{"(":{"df":0,"docs":{},"i":{".":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"p":{"df":2,"docs":{"105":{"tf":1.0},"87":{"tf":1.0}},"i":{"c":{"df":2,"docs":{"123":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"!":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":7,"docs":{"33":{"tf":2.449489742783178},"34":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":2.449489742783178},"42":{"tf":2.0},"43":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951}}},"k":{"df":2,"docs":{"0":{"tf":1.0},"4":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":5,"docs":{"67":{"tf":1.0},"80":{"tf":2.8284271247461903},"82":{"tf":1.4142135623730951},"84":{"tf":2.23606797749979},"87":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"114":{"tf":2.0}}}},"i":{"df":1,"docs":{"88":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":8,"docs":{"109":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"d":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"45":{"tf":1.0},"53":{"tf":1.0},"80":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":11,"docs":{"109":{"tf":2.23606797749979},"15":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"38":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"69":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":19,"docs":{"102":{"tf":1.7320508075688772},"103":{"tf":1.0},"104":{"tf":2.449489742783178},"106":{"tf":2.23606797749979},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"29":{"tf":2.0},"38":{"tf":2.0},"52":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":2.23606797749979},"84":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"88":{"tf":3.0},"89":{"tf":1.0},"92":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"c":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"u":{"df":2,"docs":{"19":{"tf":1.0},"25":{"tf":1.0}},"i":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"42":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.0}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"35":{"tf":1.0}}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}},"r":{"df":2,"docs":{"45":{"tf":1.0},"76":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"132":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"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":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"67":{"tf":1.0},"68":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"47":{"tf":2.0},"49":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"127":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0}},"e":{"=":{"1":{"df":2,"docs":{"16":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"116":{"tf":1.7320508075688772},"51":{"tf":1.0},"7":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"74":{"tf":1.4142135623730951},"84":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"114":{"tf":1.0},"92":{"tf":1.0}}}},"df":41,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"116":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":2.0},"20":{"tf":3.1622776601683795},"26":{"tf":3.1622776601683795},"27":{"tf":1.0},"29":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"41":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"45":{"tf":2.0},"53":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":2.0},"80":{"tf":4.58257569495584},"81":{"tf":2.0},"82":{"tf":1.0},"84":{"tf":2.449489742783178},"85":{"tf":1.7320508075688772},"87":{"tf":2.6457513110645907},"88":{"tf":2.23606797749979},"91":{"tf":1.0},"92":{"tf":2.0},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":4,"docs":{"80":{"tf":2.0},"82":{"tf":1.0},"87":{"tf":3.3166247903554},"88":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":3,"docs":{"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"v":{"1":{"4":{".":{"1":{"9":{".":{"0":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"1":{"8":{".":{"0":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"87":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":5,"docs":{"103":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"43":{"tf":1.0},"85":{"tf":1.0}}}},"r":{"df":1,"docs":{"109":{"tf":1.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"106":{"tf":1.0},"29":{"tf":1.4142135623730951},"33":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"13":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"13":{"tf":2.23606797749979},"46":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0}}}}},"u":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"i":{"a":{"df":8,"docs":{"109":{"tf":2.0},"110":{"tf":1.0},"111":{"tf":1.0},"13":{"tf":1.0},"43":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"42":{"tf":1.4142135623730951},"43":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"109":{"tf":1.0},"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"32":{"tf":1.0}}},"/":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"32":{"tf":1.0},"38":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":4,"docs":{"11":{"tf":1.0},"32":{"tf":1.7320508075688772},"37":{"tf":1.0},"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"75":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"78":{"tf":2.449489742783178},"80":{"tf":7.810249675906654},"87":{"tf":1.7320508075688772}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}}}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"85":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"4":{"tf":1.0},"80":{"tf":1.7320508075688772},"84":{"tf":2.0},"96":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"33":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951}}}},"t":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"92":{"tf":1.7320508075688772},"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":0,"docs":{}},"y":{"df":9,"docs":{"0":{"tf":1.0},"133":{"tf":1.0},"41":{"tf":1.0},"5":{"tf":1.7320508075688772},"50":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.0},"85":{"tf":1.0},"87":{"tf":1.7320508075688772}}}},"df":1,"docs":{"32":{"tf":1.0}},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.0}}}},"r":{"df":1,"docs":{"80":{"tf":1.0}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"/":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"5":{"tf":1.4142135623730951}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"'":{"df":5,"docs":{"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"78":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.4142135623730951}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"87":{"tf":1.0}}}},"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"[":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"85":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}}}},"df":64,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":2.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":2.6457513110645907},"110":{"tf":2.23606797749979},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":2.6457513110645907},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"133":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":3.1622776601683795},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":3.1622776601683795},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"76":{"tf":2.23606797749979},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"80":{"tf":4.123105625617661},"81":{"tf":2.23606797749979},"82":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"84":{"tf":2.23606797749979},"85":{"tf":2.23606797749979},"86":{"tf":1.0},"87":{"tf":3.605551275463989},"88":{"tf":3.3166247903554},"89":{"tf":2.0},"90":{"tf":2.0},"91":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"97":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"125":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"55":{"tf":1.0},"57":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"l":{"df":3,"docs":{"43":{"tf":1.0},"6":{"tf":1.0},"80":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"73":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"106":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"88":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"47":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"114":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"38":{"tf":1.0},"74":{"tf":1.0},"84":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"18":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"76":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"d":{"df":5,"docs":{"109":{"tf":1.4142135623730951},"114":{"tf":1.0},"73":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":12,"docs":{"0":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.4142135623730951},"4":{"tf":1.0},"42":{"tf":1.0},"6":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"30":{"tf":1.0},"35":{"tf":1.0}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"14":{"tf":1.7320508075688772},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"88":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"s":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"38":{"tf":1.4142135623730951}},"i":{"c":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"d":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"76":{"tf":1.0},"88":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"109":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"67":{"tf":1.0},"87":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"x":{".":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"z":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}}},"8":{"6":{"_":{"6":{"4":{"df":2,"docs":{"47":{"tf":2.0},"49":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"40":{"tf":1.0},"45":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"18":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"83":{"tf":1.0}},"x":{"df":1,"docs":{"104":{"tf":1.0}},"x":{"df":1,"docs":{"75":{"tf":1.0}},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"v":{"df":1,"docs":{"51":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}}},"z":{"df":3,"docs":{"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"title":{"root":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"128":{"tf":1.0},"131":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}},"t":{"df":1,"docs":{"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"133":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"28":{"tf":1.0}}}}},"df":1,"docs":{"56":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"38":{"tf":1.0},"78":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"61":{"tf":1.0},"71":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"57":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":4,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"118":{"tf":1.0},"8":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"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":{"106":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"2":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"53":{"tf":1.0},"79":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"64":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"3":{"tf":1.0},"59":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}},"n":{"df":1,"docs":{"131":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"133":{"tf":1.0}}}}},"df":1,"docs":{"58":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"107":{"tf":1.0}}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"73":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"3":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"6":{"tf":1.0},"64":{"tf":1.0},"77":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"92":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"76":{"tf":1.0},"83":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"13":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":3,"docs":{"3":{"tf":1.0},"4":{"tf":1.0},"59":{"tf":1.0}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"127":{"tf":1.0},"55":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":9,"docs":{"100":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}}},"l":{"d":{"b":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"65":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":1,"docs":{"100":{"tf":1.0}}}}},"m":{"a":{"c":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.0}}}}},"s":{"c":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"36":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":8,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"df":1,"docs":{"80":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"8":{"tf":1.0}}}},"df":4,"docs":{"17":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0}},"j":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"112":{"tf":1.0},"69":{"tf":1.0},"88":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"76":{"tf":1.0},"93":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}}}}}}},"x":{"c":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"34":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"65":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":2,"docs":{"52":{"tf":1.0},"62":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"37":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"92":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"40":{"tf":1.0},"44":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"120":{"tf":1.0},"66":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"115":{"tf":1.0},"62":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"51":{"tf":1.0},"74":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"v":{"df":1,"docs":{"105":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"128":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"19":{"tf":1.0},"25":{"tf":1.0},"60":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"7":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"11":{"tf":1.0},"129":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"11":{"tf":1.0},"12":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"63":{"tf":1.0},"72":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"61":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"133":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"115":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"33":{"tf":1.0},"41":{"tf":1.0}}},"k":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"114":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"106":{"tf":1.0},"81":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"116":{"tf":1.0}}},"s":{"df":1,"docs":{"81":{"tf":1.0}}}},"v":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"32":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"130":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"2":{"tf":1.0},"30":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"131":{"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":"AND","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}}); \ No newline at end of file diff --git a/searchindex.json b/searchindex.json index 3f23c1b..de8e733 100644 --- a/searchindex.json +++ b/searchindex.json @@ -1 +1 @@ -{"doc_urls":["getting-started.html#getting-started","getting-started.html#asking-questions","getting-started.html#what-should-i-work-on","getting-started.html#good-first-issue","getting-started.html#tracking-issue","getting-started.html#other-ways-to-contribute","about-this-guide.html#about-this-guide","building/intro.html#how-to-build-and-run-the-compiler","building/intro.html#install-nodejs-dependencies","building/intro.html#building-rspack","building/prerequisites.html#prerequisites","building/prerequisites.html#setup-rust","building/prerequisites.html#setup-nodejs","building/prerequisites.html#install-nodejs","building/suggested.html#suggested-workflows","testing/intro.html#testing","testing/intro.html#rust-testing","testing/intro.html#node-testing","testing/intro.html#webpack-testing","testing/intro.html#rspack-testing","testing/intro.html#node-testing-suite-overview","testing/intro.html#testing","testing/intro.html#rust-testing","testing/intro.html#node-testing","testing/intro.html#webpack-testing","testing/intro.html#rspack-testing","testing/intro.html#node-testing-suite-overview","testing/e2e.html#e2e","testing/e2e.html#cases","testing/e2e.html#fixtures","testing/e2e.html#how-it-works","debugging/intro.html#debugging","debugging/intro.html#debugging-with-vscode","debugging/intro.html#tracing","debugging/intro.html#oxc_resolver","debugging/intro.html#rust-lldb","debugging/mix-debug.html#mixed-debugging-between-javascript-and-rust","debugging/mix-debug.html#prerequisites","debugging/mix-debug.html#configure-launchjson-in-vscode","debugging/mix-debug.html#debugging-attempt","profiling/intro.html#profiling","profiling/intro.html#tracing","profiling/intro.html#chrome","profiling/intro.html#terminal","profiling/intro.html#nodejs-profiling","profiling/intro.html#mac-xcode-instruments","releasing/intro.html#releasing","releasing/intro.html#latest-full-release","releasing/intro.html#nightly","releasing/intro.html#canary","contributing/intro.html#intro","contributing/intro.html#sending-a-pull-request","contributing/intro.html#format-of-pr-titles","contributing/repro.html#minimal-reproducible-example","contributing/team.html#about-the-team","contributing/managing-labels.html#managing-labels","contributing/managing-labels.html#c","contributing/managing-labels.html#contribution-welcome","contributing/managing-labels.html#g","contributing/managing-labels.html#good-first-issue","architecture/rspack/intro.html#rspack","architecture/rspack/intro.html#table-of-contents","architecture/rspack/loader.html#related-prs","architecture/rspack/loader.html#summary","architecture/rspack/loader.html#guide-level-explanation","architecture/rspack/loader.html#pitching-loader","architecture/rspack/loader.html#reference-level-explanation","architecture/rspack/loader.html#actor-of-loader-execution","architecture/rspack/loader.html#passing-options","architecture/rspack/loader.html#optimization-for-pitching","architecture/webpack/intro.html#webpack","architecture/webpack/intro.html#table-of-contents","architecture/webpack/loader.html#summary","architecture/webpack/loader.html#glossary","architecture/webpack/loader.html#request-related","architecture/webpack/loader.html#resource-related","architecture/webpack/loader.html#others-but-also-important-to-note","architecture/webpack/loader.html#guide-level-explanation","architecture/webpack/loader.html#loader-configuration","architecture/webpack/loader.html#examples","architecture/webpack/loader.html#vue1-to-n","architecture/webpack/loader.html#use-natively-supported-module-types","architecture/webpack/loader.html#svgr","architecture/webpack/loader.html#scheme-imports","architecture/webpack/loader.html#asset-transform-and-rename","architecture/webpack/loader.html#ast-reuse","architecture/webpack/loader.html#reference-level-explanation","architecture/webpack/loader.html#loader-composability","architecture/webpack/loader.html#performance-optimizations","architecture/webpack/loader.html#references","architecture/webpack/dependency.html#summary","architecture/webpack/dependency.html#glossary","architecture/webpack/dependency.html#high-level-presentations-of--dependencies","architecture/webpack/dependency.html#others","architecture/webpack/dependency.html#guide-level-explanation","architecture/webpack/dependency.html#dependency","architecture/webpack/dependency.html#contextdependency","architecture/webpack/dependency.html#reference-level-explanation","architecture/webpack/dependency.html#stakeholders-of--dependency","architecture/webpack/dependency.html#high-level","architecture/webpack/dependency.html#low-level","architecture/webpack/dependency.html#how--dependencies--affect-the-creation-of--module-graph-","architecture/webpack/dependency.html#duplicated-module-detection","architecture/webpack/dependency.html#module-resolution","architecture/webpack/dependency.html#module-dependency--in--modulegraph","architecture/webpack/dependency.html#resolving-a-module","architecture/webpack/dependency.html#different-types-of--module-dependencies","architecture/webpack/dependency.html#how--dependencies--affect-code-generation","architecture/webpack/dependency.html#presentational-dependency","architecture/webpack/dependency.html#template","architecture/webpack/dependency.html#runtime","architecture/webpack/dependency.html#hot-module-replacement","architecture/webpack/dependency.html#how--dependencies--affect-production-optimizations","architecture/webpack/dependency.html#constant-folding","architecture/webpack/dependency.html#tree-shaking--dce","architecture/webpack/dependency.html#things-related-to-persistent-cache","architecture/webpack/dependency.html#wrap-it-up","architecture/webpack/dependency.html#make","architecture/webpack/dependency.html#dependencies-after-make","architecture/webpack/dependency.html#seal","architecture/webpack/dependency.html#references","workflows/meetings.html#meetings","workflows/meetings.html#tuesday-meeting","workflows/meetings.html#thursday-meeting","workflows/releases.html#releases","workflows/releases.html#release-cycle","workflows/misc.html#misc","workflows/misc.html#need-documentation-label","appendix/learning-resources.html#appendix-a-learning-resources","appendix/learning-resources.html#rust","appendix/learning-resources.html#webpack","appendix/fun.html#appendix-z-fun-stuff","appendix/fun.html#motto","appendix/fun.html#team-building-game"],"index":{"documentStore":{"docInfo":{"0":{"body":22,"breadcrumbs":4,"title":2},"1":{"body":10,"breadcrumbs":4,"title":2},"10":{"body":0,"breadcrumbs":4,"title":1},"100":{"body":2,"breadcrumbs":4,"title":2},"101":{"body":0,"breadcrumbs":7,"title":5},"102":{"body":68,"breadcrumbs":5,"title":3},"103":{"body":67,"breadcrumbs":4,"title":2},"104":{"body":128,"breadcrumbs":5,"title":3},"105":{"body":27,"breadcrumbs":4,"title":2},"106":{"body":157,"breadcrumbs":6,"title":4},"107":{"body":0,"breadcrumbs":6,"title":4},"108":{"body":28,"breadcrumbs":4,"title":2},"109":{"body":453,"breadcrumbs":3,"title":1},"11":{"body":11,"breadcrumbs":5,"title":2},"110":{"body":144,"breadcrumbs":3,"title":1},"111":{"body":49,"breadcrumbs":5,"title":3},"112":{"body":0,"breadcrumbs":6,"title":4},"113":{"body":91,"breadcrumbs":4,"title":2},"114":{"body":92,"breadcrumbs":5,"title":3},"115":{"body":1,"breadcrumbs":6,"title":4},"116":{"body":36,"breadcrumbs":4,"title":2},"117":{"body":2,"breadcrumbs":3,"title":1},"118":{"body":2,"breadcrumbs":4,"title":2},"119":{"body":2,"breadcrumbs":3,"title":1},"12":{"body":0,"breadcrumbs":5,"title":2},"120":{"body":1,"breadcrumbs":3,"title":1},"121":{"body":0,"breadcrumbs":2,"title":1},"122":{"body":4,"breadcrumbs":3,"title":2},"123":{"body":5,"breadcrumbs":3,"title":2},"124":{"body":15,"breadcrumbs":2,"title":1},"125":{"body":19,"breadcrumbs":3,"title":2},"126":{"body":0,"breadcrumbs":2,"title":1},"127":{"body":21,"breadcrumbs":4,"title":3},"128":{"body":0,"breadcrumbs":6,"title":3},"129":{"body":0,"breadcrumbs":4,"title":1},"13":{"body":61,"breadcrumbs":5,"title":2},"130":{"body":0,"breadcrumbs":4,"title":1},"131":{"body":0,"breadcrumbs":8,"title":4},"132":{"body":6,"breadcrumbs":5,"title":1},"133":{"body":26,"breadcrumbs":7,"title":3},"14":{"body":0,"breadcrumbs":6,"title":2},"15":{"body":9,"breadcrumbs":2,"title":1},"16":{"body":19,"breadcrumbs":3,"title":2},"17":{"body":11,"breadcrumbs":3,"title":2},"18":{"body":92,"breadcrumbs":3,"title":2},"19":{"body":49,"breadcrumbs":3,"title":2},"2":{"body":0,"breadcrumbs":3,"title":1},"20":{"body":117,"breadcrumbs":5,"title":4},"21":{"body":9,"breadcrumbs":3,"title":1},"22":{"body":19,"breadcrumbs":4,"title":2},"23":{"body":11,"breadcrumbs":4,"title":2},"24":{"body":92,"breadcrumbs":4,"title":2},"25":{"body":49,"breadcrumbs":4,"title":2},"26":{"body":117,"breadcrumbs":6,"title":4},"27":{"body":10,"breadcrumbs":3,"title":1},"28":{"body":46,"breadcrumbs":3,"title":1},"29":{"body":133,"breadcrumbs":3,"title":1},"3":{"body":18,"breadcrumbs":5,"title":3},"30":{"body":40,"breadcrumbs":3,"title":1},"31":{"body":0,"breadcrumbs":2,"title":1},"32":{"body":41,"breadcrumbs":3,"title":2},"33":{"body":34,"breadcrumbs":2,"title":1},"34":{"body":9,"breadcrumbs":2,"title":1},"35":{"body":104,"breadcrumbs":3,"title":2},"36":{"body":9,"breadcrumbs":8,"title":5},"37":{"body":38,"breadcrumbs":4,"title":1},"38":{"body":117,"breadcrumbs":6,"title":3},"39":{"body":12,"breadcrumbs":5,"title":2},"4":{"body":17,"breadcrumbs":4,"title":2},"40":{"body":23,"breadcrumbs":2,"title":1},"41":{"body":44,"breadcrumbs":2,"title":1},"42":{"body":33,"breadcrumbs":2,"title":1},"43":{"body":22,"breadcrumbs":2,"title":1},"44":{"body":42,"breadcrumbs":3,"title":2},"45":{"body":137,"breadcrumbs":4,"title":3},"46":{"body":19,"breadcrumbs":2,"title":1},"47":{"body":48,"breadcrumbs":4,"title":3},"48":{"body":29,"breadcrumbs":2,"title":1},"49":{"body":30,"breadcrumbs":2,"title":1},"5":{"body":38,"breadcrumbs":4,"title":2},"50":{"body":8,"breadcrumbs":3,"title":1},"51":{"body":115,"breadcrumbs":5,"title":3},"52":{"body":25,"breadcrumbs":5,"title":3},"53":{"body":58,"breadcrumbs":6,"title":3},"54":{"body":18,"breadcrumbs":2,"title":1},"55":{"body":13,"breadcrumbs":4,"title":2},"56":{"body":0,"breadcrumbs":3,"title":1},"57":{"body":0,"breadcrumbs":4,"title":2},"58":{"body":0,"breadcrumbs":3,"title":1},"59":{"body":0,"breadcrumbs":5,"title":3},"6":{"body":13,"breadcrumbs":2,"title":1},"60":{"body":4,"breadcrumbs":2,"title":1},"61":{"body":1,"breadcrumbs":3,"title":2},"62":{"body":2,"breadcrumbs":4,"title":2},"63":{"body":74,"breadcrumbs":3,"title":1},"64":{"body":14,"breadcrumbs":5,"title":3},"65":{"body":40,"breadcrumbs":4,"title":2},"66":{"body":0,"breadcrumbs":5,"title":3},"67":{"body":98,"breadcrumbs":5,"title":3},"68":{"body":21,"breadcrumbs":4,"title":2},"69":{"body":61,"breadcrumbs":4,"title":2},"7":{"body":7,"breadcrumbs":5,"title":3},"70":{"body":3,"breadcrumbs":2,"title":1},"71":{"body":2,"breadcrumbs":3,"title":2},"72":{"body":23,"breadcrumbs":3,"title":1},"73":{"body":16,"breadcrumbs":3,"title":1},"74":{"body":47,"breadcrumbs":4,"title":2},"75":{"body":79,"breadcrumbs":4,"title":2},"76":{"body":64,"breadcrumbs":5,"title":3},"77":{"body":0,"breadcrumbs":5,"title":3},"78":{"body":117,"breadcrumbs":4,"title":2},"79":{"body":0,"breadcrumbs":3,"title":1},"8":{"body":24,"breadcrumbs":5,"title":3},"80":{"body":983,"breadcrumbs":4,"title":2},"81":{"body":113,"breadcrumbs":7,"title":5},"82":{"body":75,"breadcrumbs":3,"title":1},"83":{"body":25,"breadcrumbs":4,"title":2},"84":{"body":228,"breadcrumbs":5,"title":3},"85":{"body":80,"breadcrumbs":4,"title":2},"86":{"body":8,"breadcrumbs":5,"title":3},"87":{"body":466,"breadcrumbs":4,"title":2},"88":{"body":383,"breadcrumbs":4,"title":2},"89":{"body":32,"breadcrumbs":3,"title":1},"9":{"body":20,"breadcrumbs":4,"title":2},"90":{"body":22,"breadcrumbs":3,"title":1},"91":{"body":16,"breadcrumbs":3,"title":1},"92":{"body":57,"breadcrumbs":6,"title":4},"93":{"body":17,"breadcrumbs":3,"title":1},"94":{"body":0,"breadcrumbs":5,"title":3},"95":{"body":32,"breadcrumbs":3,"title":1},"96":{"body":57,"breadcrumbs":3,"title":1},"97":{"body":11,"breadcrumbs":5,"title":3},"98":{"body":0,"breadcrumbs":4,"title":2},"99":{"body":2,"breadcrumbs":4,"title":2}},"docs":{"0":{"body":"We are grateful for your interest in contributing to Rspack! Every single contribution counts and helps us take Rspack to the next level. Asking Questions What should I work on? Good First Issue Tracking Issue Other ways to contribute","breadcrumbs":"Getting started » Getting Started","id":"0","title":"Getting Started"},"1":{"body":"If you have any questions, please do not hesitate to ask in either the Discord support channel or on the Github discussion board .","breadcrumbs":"Getting started » Asking Questions","id":"1","title":"Asking Questions"},"10":{"body":"","breadcrumbs":"Building and running » Prerequisites » Prerequisites","id":"10","title":"Prerequisites"},"100":{"body":"image-20220919171841624","breadcrumbs":"webpack » dependency » Low-level","id":"100","title":"Low-level"},"101":{"body":"","breadcrumbs":"webpack » dependency » How dependencies affect the creation of module graph ?","id":"101","title":"How dependencies affect the creation of module graph ?"},"102":{"body":"Each module will have its own identifier, for NormalModule, you can find this in NormalModule#identifier. If the identifier will be duplicated if inserted in this._module, then webpack will directly skip the remaining build process. [source] Basically, an NormalModule identifier contains these parts: type [string]: The module type of a module. If the type of the module is javascript/auto, this field can be omitted request [string]: Request to the module. All loaders whether it's inline or matched by a config will be stringified. If inline match resource exists, inline loaders will be executed before any normal-loaders after pre-loaders. A module with a different loader passed through will be treated as a different module regardless of its path. layer: applied if provided","breadcrumbs":"webpack » dependency » Duplicated module detection","id":"102","title":"Duplicated module detection"},"103":{"body":"getResolve is a loader API on the LoaderContext. Loader developers can pass dependencyType to its option which indicates the category of the module dependency that will be created. Values like esm can be passed, then webpack will use type esm to resolve the dependency. The resolved dependencies are automatically added to the current module. This is driven by the internal plugin system of enhanced-resolve. Internally, enhanced-resolve uses plugins to handle the dependency registration like FileExistsPlugin [source] to detect whether a file is located on the file system or will add this file to a list of missingDependency and report in respect of the running mode of webpack. The collecting end of Webpack is generated by the getResolveContext in NormalModule [source]","breadcrumbs":"webpack » dependency » Module resolution","id":"103","title":"Module resolution"},"104":{"body":"Here's a module graph with esm import between modules: image-20220919172119861 The dependency type introduced by import or require is a derived dependency: ModuleDependency . A ModuleDependency contains three important fields. category: used to describe the category of dependency. e.g. \"esm\" | \"commonjs\" request: see the explanation above. userRequest: Resource and its inline loader syntax will be stringified and applied, but loaders in module.rules will be omitted. It's also good to note a field we will talk about later: assertions: assertions in import xx from \"foo.json\" assert { type: \"json\" } More fields can be found in abstract class of Dependency and ModuleDependency . source: Dependency source: ModuleDependency // null -> index.js EntryDependency { category: \"esm\", request: \"./index.js\", type: \"entry\", _parentModule: undefined\n} // index.js -> foo.js HarmonyImportSideEffectDependency { category: \"esm\", request: \"./foo\", type: \"harmony side effect evaluation\", _parentModule: NormalModule { identifier: \"index.js\" }\n} // index.js -> bar.js HarmonyImportSideEffectDependency { category: \"esm\", request: \"./bar\", type: \"harmony side effect evaluation\", _parentModule: NormalModule { identifier: \"index.js\" }\n} // bar.js -> foo.js\nHarmonyImportSideEffectDependency { category: \"esm\", request: \"./foo\", type: \"harmony side effect evaluation\", _parentModule: NormalModule { identifier: \"bar.js\" }\n}","breadcrumbs":"webpack » dependency » Module dependency in ModuleGraph","id":"104","title":"Module dependency in ModuleGraph"},"105":{"body":"ModuleDependencies with different dependency category such as esm or commonjs will affect the resolving part. For ECMAScript modules, they may prefer \"module\" to \"main\", and for CommonJS modules, they may use \"main\" in package.json. On top of that, conditional exports are also necessary to be taken into account. doc","breadcrumbs":"webpack » dependency » Resolving a module","id":"105","title":"Resolving a module"},"106":{"body":"ESM-related derived types There are a few of ModuleDependencies introduced in ESM imports. A full list of each derived type can be reached at [source] Import HarmonyImportDependency The basic type of harmony-related module dependencies are below. [source] HarmonyImportSideEffectDependency import { foo, bar } from \"./module\"\nimport * as module from \"./module\"\nimport foo from \"./module\"\nimport \"./module\" Every import statement will come with a HarmonyImportSideEffectDependency, no matter how the specifiers look like. The speicifier will be handled by HarmonyImportSpecifierDendency below. The field assertions will be stored if any import assertions exist for later consumption. The field category will be used as dependencyType to resolve modules. HarmonyImportSpecifierDependency import { foo, bar } from \"./module\"\nimport * as module from \"./module\"\nimport foo from \"./module\" Example: import { foo, bar } from \"./module\" console.log(foo, bar) Specifier will be mapped into a specifier dependency if and only if it is used. JavaScript parser will first tag each variable [source] , and then create corresponding dependencies on each reading of dependency. [source] and finally be replaced to the generated importVar. Export(They are not module dependencies to be actual, but I placed here for convenience) HarmonyExportHeaderDependency PresentationalDependency export const foo = \"foo\";\nexport default \"foo\"; This is a presentational dependency . We will take more time on this later. HarmonyExportSpecifierDependency export const foo = \"foo\"; // `foo` is a specifier HarmonyExportSpecifierDependency { id: string; name: string;\n} HarmonyExportExpressionDependency export default \"foo\"; // \"foo\" is an expression HarmonyExportExpressionDependency { range: [number, number] // range of the expression rangeStatement: [number, number] // range of the whole statement\n}","breadcrumbs":"webpack » dependency » Different types of module dependencies","id":"106","title":"Different types of module dependencies"},"107":{"body":"","breadcrumbs":"webpack » dependency » How dependencies affect code generation","id":"107","title":"How dependencies affect code generation"},"108":{"body":"A type of dependency that only affects code presentation. ConstDependency ConstDependency { expression: string range: [number, number] runtimeRequirements: Set | null\n} You can think of the passed expression as a replacement for the corresponding range. For the real world example, you can directly refer to Constant Folding .","breadcrumbs":"webpack » dependency » Presentational dependency","id":"108","title":"Presentational dependency"},"109":{"body":"Remember the fact that Webpack is an architecture wrapped around source code modifications. Template is the solution that helps Webpack to do the real patch on the source code. Each dependency has its associated template which affects a part of the code generation scoped per dependency. In other words, the effect of each template is strictly scoped to its associated dependency. image-20220919173300220 There are three types of modification: source fragments runtimeRequirements A boilerplate of the dependency template looks like this: class SomeDependency {} SomeDependency.Template = class SomeDependencyTemplate { /** * @param {Dependency} dependency the dependency for which the template should be applied * @param {ReplaceSource} source the current replace source which can be modified * @param {DependencyTemplateContext} templateContext the context object * @returns {void} */ apply(dependency, source, templateContext) { // do code mod here }\n} There are three parameters in the function signature: dependency: The associated dependency of this template source: The source code represent in ReplaceSource, which can be used to replace a snippet of code with a new one, given the start and end position templateContext: A context of template, which stores the corresponding module, InitFragments, moduleGraph, runtimeRequirements, etc. (not important in this section) Source Again, given an example of ConstDependency , even if you don't have an idea what it is, it doesn't matter. We will cover this in the later sections. The associated template modifies the code with Source(ReplaceSource to be more specific): ConstDependency.Template = class ConstDependencyTemplate extends ( NullDependency.Template\n) { apply(dependency, source, templateContext) { const dep = /** @type {ConstDependency} */ (dependency); // not necessary code is removed for clearer demonstration if (dep.runtimeRequirements) { for (const req of dep.runtimeRequirements) { templateContext.runtimeRequirements.add(req); } } source.replace(dep.range[0], dep.range[1] - 1, dep.expression); }\n}; runtimeRequirements As you can see from the Source section above, there is another modification we talked about: runtimeRequirements, It adds runtime requirements for the current compilation. We will explain more in the later sections. Fragments Essentially, a fragment is a pair of code snippet that to be wrapped around each module source. Note the wording \"wrap\", it could contain two parts content and endContent [source] . To make it more illustrative, see this: The order of the fragment comes from two parts: The stage of a fragment: if the stage of two fragments is different, then it will be replaced corresponding to the order define by the stage If two fragments share the same order, then it will be replaced in position order. [source] A real-world example import { foo } from \"./foo\" foo() Given the example above, here's the code to generate a dependency that replaces import statement with __webpack_require__. // some code is omitted for cleaner demonstration\nparser.hooks.import.tap( \"HarmonyImportDependencyParserPlugin\", (statement, source) => { const clearDep = new ConstDependency( \"\", statement.range ); clearDep.loc = statement.loc; parser.state.module.addPresentationalDependency(clearDep); const sideEffectDep = new HarmonyImportSideEffectDependency( source ); sideEffectDep.loc = statement.loc; parser.state.module.addDependency(sideEffectDep); return true; }\n); Webpack will create two dependencies ConstDependency and HarmonyImportSideEffectDependency while parsing [source] . Let me focus on HarmonyImportSideEffectDependency more, since it uses Fragment to do some patch. // some code is omitted for cleaner demonstration\nHarmonyImportSideEffectDependency.Template = class HarmonyImportSideEffectDependencyTemplate extends ( HarmonyImportDependency.Template\n) { apply(dependency, source, templateContext) { super.apply(dependency, source, templateContext); }\n}; As you can see in its associated template [source] , the modification to the code is made via its superclass HarmonyImportDependency.Template [source] . // some code is omitted for cleaner demonstration\nHarmonyImportDependency.Template = class HarmonyImportDependencyTemplate extends ( ModuleDependency.Template\n) { apply(dependency, source, templateContext) { const dep = /** @type {HarmonyImportDependency} */ (dependency); const { module, chunkGraph, moduleGraph, runtime } = templateContext; const referencedModule = connection && connection.module; const moduleKey = referencedModule ? referencedModule.identifier() : dep.request; const key = `harmony import ${moduleKey}`; // 1 const importStatement = dep.getImportStatement(false, templateContext); // 2 templateContext.initFragments.push( new ConditionalInitFragment( importStatement[0] + importStatement[1], InitFragment.STAGE_HARMONY_IMPORTS, dep.sourceOrder, key, // omitted for cleaner code ) ); }\n} As you can see from the simplified source code above, the actual patch made to the generated code is via templateContext.initFragments(2). The import statement generated from dependency looks like this. /* harmony import */ var _foo__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./foo */ \"./src/foo.js\"); //(1) Note, the real require statement is generated via initFragments , ConditionalInitFragment to be specific. Don't be afraid of the naming, for more information you can see the (background)[https://github.com/webpack/webpack/pull/11802] of this fragment , which let's webpack to change it from InitFragment to ConditionalInitFragment. How does webpack solve the compatibility issue? For ESM modules, webpack will additionally call a helper to define _esModule on exports as an hint: __webpack_require__.r(__webpack_exports__); The call of a helper is always placed ahead of any require statements. Probably you have already get this as the stage of STAGE_HARMONY_EXPORTS has high priority than STAGE_HARMONY_IMPORTS. Again, this is achieved via initFragments. The logic of the compatibility helper is defined in this file, you can check it out.","breadcrumbs":"webpack » dependency » Template","id":"109","title":"Template"},"11":{"body":"Install Rust using rustup . If you are using VSCode, we recommend installing the rust-analyzer extension.","breadcrumbs":"Building and running » Prerequisites » Setup Rust","id":"11","title":"Setup Rust"},"110":{"body":"Runtime generation is based on the previously collected runtimeRequirements in different dependency templates and is done after the code generation of each module. Note: it's not after the renderManifest, but it's after the code generation of each module. image-20220919173829765 In the first iteration of collection, Sets of runtimeRequirements are collected from the module's code generation results and added to each ChunkGraphModule. In the second iteration of collection, the collected runtimeRequirements are already stored in ChunkGraphModule, so Webpack again collects them from there and stores the runtimes required by each chunk of ChunkGraphChunk. It's kind of the hoisting procedure of the required runtimes. Finally, also known as the third iteration of collection, Webpack hoists runtimeRequirements from those chunks that are referenced by the entry chunk and get it hoisted on the ChunkGraphChunk using a different field named runtimeRequirementsInTree which indicates not only does it contains the runtime requirements by the chunk but also it's children runtime requirements. image-20220919174132772 The referenced source code you can be found it here and these steps are basically done in processRuntimeRequirements. This let me recall the linking procedure of a rollup-like bundler. Anyway, after this procedure, we can finally generate runtime modules . Actually, I lied here, huge thanks to the hook system of Webpack, the creation of runtime modules is done in this method via calls to runtimeRequirementInTree [source] . No doubt, this is all done in the seal step. After that, webpack will process each chunk and create a few code generation jobs, and finally, emit assets.","breadcrumbs":"webpack » dependency » Runtime","id":"110","title":"Runtime"},"111":{"body":"Changes made via hot module replacement is mostly come from HotModuleReplacementPlugin. Given the code below: if (module.hot) { module.hot.accept(...)\n} Webpack will replace expressions like module.hot and module.hot.accept, etc with ConstDependency as the presentationalDependency as I previously talked about. [source] With the help of a simple expression replacement is not enough, the plugin also introduce additional runtime modules for each entries. [source] The plugin is quite complicated, and you should definitely checkout what it actually does, but for things related to dependency, it's enough.","breadcrumbs":"webpack » dependency » Hot module replacement","id":"111","title":"Hot module replacement"},"112":{"body":"","breadcrumbs":"webpack » dependency » How dependencies affect production optimizations","id":"112","title":"How dependencies affect production optimizations"},"113":{"body":"The logic is defined in ConstPlugin : [source] Constant folding is a technique that used as an optimization for optimization. For example: Source if (process.env.NODE_ENV === \"development\") { ...\n} else { ...\n} Generated if (true) { ...\n} With mode set to \"development\", webpack will \"fold\" the expression process.env.NODE_ENV === \"development\" into an expression of \"true\" as you can see for the code generation result. In the make procedure of webpack, Webpack internally uses an JavaScriptParser for JavaScript parsing. If an ifStatement is encountered, Webpack creates a corresponding ConstDependency. Essentially, for the ifStatement, the ConstDependency looks like this : ConstDependency { expression: \"true\", range: [start, end] // range to replace\n} It's almost the same with else branch, if there is no side effects (refer to source code for more detail), Webpack will create another ConstDependency with expression set to \"\", which in the end removes the else branch. In the seal procedure of Webpack, the record of the dependency will be applied to the original source code and generate the final result as you may have already seen above.","breadcrumbs":"webpack » dependency » Constant folding","id":"113","title":"Constant folding"},"114":{"body":"Tree-shaking is a technique of a bundle-wise DCE(dead code elimination). In the following content, I will use tree-shaking as a wording for bundle-wise and DCE for module-wise code elimination. (I know it's not quite appropriate, but you get the point) Here's an example: // webpack configuration\nmodule.exports = { optimization: { usedExports: true }\n} image-20220919182656468 image-20220919190553215 image-20220919190925073 As you can see from the red square, the initFragment is generated based on the usage of the exported symbol in the HarmonyExportSpecifierDependency [source] If foo is used in the graph, then the generated result will be this: /* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"foo\": function() { return /* binding */ foo; }\n/* harmony export */ });\nconst foo = \"foo\"; In the example above, the foo is not used, so it will be excluded in the code generation of the template of HarmonyExportSpecifierDependency and it will be dead-code-eliminated in later steps. For terser plugin, it eliminates all unreachable code in processAssets [source] .","breadcrumbs":"webpack » dependency » Tree shaking & DCE","id":"114","title":"Tree shaking & DCE"},"115":{"body":"TODO","breadcrumbs":"webpack » dependency » Things related to Persistent cache","id":"115","title":"Things related to Persistent cache"},"116":{"body":"Let's wrap everything up in a simple example! Isn't it exciting? image-20220919223228146 Given a module graph that contains three modules, the entry point of this bundle is index.js. To not make this example too complicated, we use normal import statements to reference each module (i.e: only one chunk that bundles everything will be created).","breadcrumbs":"webpack » dependency » Wrap it up!","id":"116","title":"Wrap it up!"},"117":{"body":"image-20220919223558327","breadcrumbs":"webpack » dependency » Make","id":"117","title":"Make"},"118":{"body":"image-20220919223720739","breadcrumbs":"webpack » dependency » Dependencies after make","id":"118","title":"Dependencies after make"},"119":{"body":"image-20220920180915326","breadcrumbs":"webpack » dependency » seal","id":"119","title":"seal"},"12":{"body":"","breadcrumbs":"Building and running » Prerequisites » Setup Node.js","id":"12","title":"Setup Node.js"},"120":{"body":"TODO","breadcrumbs":"webpack » dependency » References","id":"120","title":"References"},"121":{"body":"","breadcrumbs":"Meetings » Meetings","id":"121","title":"Meetings"},"122":{"body":"Go through the iteration plan","breadcrumbs":"Meetings » Tuesday meeting","id":"122","title":"Tuesday meeting"},"123":{"body":"Go through any topics that need to be discussed","breadcrumbs":"Meetings » Thursday meeting","id":"123","title":"Thursday meeting"},"124":{"body":"0.1.0 -> 0.1.1 is a patch release. 0.1.0 -> 0.2.0 is a minor release. 0.1.0 -> 1.0.0 is a major release. See details at semver.org","breadcrumbs":"Releases » Releases","id":"124","title":"Releases"},"125":{"body":"Patch releases are released Tuesday per week. Minor releases are released as needed. Major releases are released as needed. See milestones to follow our release plan.","breadcrumbs":"Releases » Release Cycle","id":"125","title":"Release Cycle"},"126":{"body":"","breadcrumbs":"Misc » Misc","id":"126","title":"Misc"},"127":{"body":"This is used for reminding ourselves to update the Rspack website for a new feature. When a PR is merged with the \"need documentation\" label, rspack-bot will create a corresponding PR in the rspack-website repo.","breadcrumbs":"Misc » \"need documentation\" label","id":"127","title":"\"need documentation\" label"},"128":{"body":"","breadcrumbs":"Appendix A: Learning resources » Appendix A: Learning resources","id":"128","title":"Appendix A: Learning resources"},"129":{"body":"","breadcrumbs":"Appendix A: Learning resources » Rust","id":"129","title":"Rust"},"13":{"body":"We recommend using the LTS version of Node.js 16. You can check your currently used Node.js version with the following command: node -v\n#v16.18.0 If you do not have Node.js installed in your current environment, you can use nvm or fnm to install it. Here is an example of how to install the Node.js 16 LTS version via nvm: # Install the LTS version of Node.js 16\nnvm install 16 --lts # Make the newly installed Node.js 16 as the default version\nnvm alias default 16 # Switch to the newly installed Node.js 16\nnvm use 16","breadcrumbs":"Building and running » Prerequisites » Install Node.js","id":"13","title":"Install Node.js"},"130":{"body":"","breadcrumbs":"Appendix A: Learning resources » Webpack","id":"130","title":"Webpack"},"131":{"body":"","breadcrumbs":"Appendix Z: Fun stuff » Appendix Z: Fun stuff","id":"131","title":"Appendix Z: Fun stuff"},"132":{"body":"Question webpack, understand webpack, become webpack","breadcrumbs":"Appendix Z: Fun stuff » Motto","id":"132","title":"Motto"},"133":{"body":"Despite being located across different cities, the rspack team has found an enjoyable way to bond when we meet in person. We play a team building game where we ask each other webpack questions. @hardfist hasn't lost a single game yet.","breadcrumbs":"Appendix Z: Fun stuff » Team building game","id":"133","title":"Team building game"},"14":{"body":"","breadcrumbs":"Building and running » Suggested Workflows » Suggested Workflows","id":"14","title":"Suggested Workflows"},"15":{"body":"We currently have two sets of test suites, one for Rust and one for Node.js.","breadcrumbs":"Testing » Testing","id":"15","title":"Testing"},"16":{"body":"cargo test will run all the rust side tests, which includes standalone tests for core functionality and plugins. UPDATE=1 cargo test will automatically update the failed snapshot","breadcrumbs":"Testing » Rust Testing","id":"16","title":"Rust Testing"},"17":{"body":"We are maintaining two test suites for Node Testing in Rspack, Rspack Testing and Webpack Testing","breadcrumbs":"Testing » Node Testing","id":"17","title":"Node Testing"},"18":{"body":"We copy the whole webpack test suites into webpack-test folder to check the compatibility with webpack. If you add features or fix bugs we recommend you check whether this feature or bug is covered in webpack test suites first. If it's covered and testable in Webpack Testing, you can enable specific test case by setting return value to true in test.filter.js in this case folder to enable this case. See more details in https://github.com/web-infra-dev/rspack/blob/main/webpack-test/README.md, Please note that don't modify original test code in Webpack Testing, if you find difficulties in running test suites without modifying original code, you can copy this test code in the following [Rspack Testing](#Rspack Testing). Run Tests # In root path\n./x build -a # build binding and js part\n./x test webpack # run webpack test suites","breadcrumbs":"Testing » Webpack Testing","id":"18","title":"Webpack Testing"},"19":{"body":"We maintain test suites in Rspack Testing which is not coverable or need to be modified in Webpack Testing. The test suites lies in rspack-test . This folder structure is similar with Webpack Testing. Run Tests # In root path\n./x build -a\n./x test js Or only test the package that you made the changes: # In the Node.js package path\npnpm run build && pnpm run test To update snapshots: pnpm --filter '@rspack/*' test -- -u","breadcrumbs":"Testing » Rspack Testing","id":"19","title":"Rspack Testing"},"2":{"body":"","breadcrumbs":"Getting started » What should I work on?","id":"2","title":"What should I work on?"},"20":{"body":"We use jest for Node.js tests, The most important test cases are the case in the packages/rspack. most of these cases comes from webpack https://github.com/webpack/webpack/tree/main/test because we want to make sure that Rspack can work as same as webpack. There are three kinds of integration cases in @rspack/core. case.test.ts Cases are used to test normal build behavior, we use these cases to test against bundler core functionality, like entry, output, module resolve, etc. it will first build your test file to test whether the input could be compiled successfully, then it will use the bundled test file to run test cases in the test file to test bundler's all kinds of behavior. configCase.test.ts Cases are used to test custom build behavior, you could use custom webpack.config.js to override default build behavior, you can use these cases to test against behavior related to specific config. statsTestCase.test.ts Cases are used to test your stats, By Default we will use jest's snapshot to snapshot your stats, and we highly recommend to avoid snapshot except statsCase. you can use statsCase to test behaviors like code splitting | bundle splitting, which is hard to test by just running code.","breadcrumbs":"Testing » Node Testing Suite Overview","id":"20","title":"Node Testing Suite Overview"},"21":{"body":"We currently have two sets of test suites, one for Rust and one for Node.js.","breadcrumbs":"Testing » intro » Testing","id":"21","title":"Testing"},"22":{"body":"cargo test will run all the rust side tests, which includes standalone tests for core functionality and plugins. UPDATE=1 cargo test will automatically update the failed snapshot","breadcrumbs":"Testing » intro » Rust Testing","id":"22","title":"Rust Testing"},"23":{"body":"We are maintaining two test suites for Node Testing in Rspack, Rspack Testing and Webpack Testing","breadcrumbs":"Testing » intro » Node Testing","id":"23","title":"Node Testing"},"24":{"body":"We copy the whole webpack test suites into webpack-test folder to check the compatibility with webpack. If you add features or fix bugs we recommend you check whether this feature or bug is covered in webpack test suites first. If it's covered and testable in Webpack Testing, you can enable specific test case by setting return value to true in test.filter.js in this case folder to enable this case. See more details in https://github.com/web-infra-dev/rspack/blob/main/webpack-test/README.md, Please note that don't modify original test code in Webpack Testing, if you find difficulties in running test suites without modifying original code, you can copy this test code in the following [Rspack Testing](#Rspack Testing). Run Tests # In root path\n./x build -a # build binding and js part\n./x test webpack # run webpack test suites","breadcrumbs":"Testing » intro » Webpack Testing","id":"24","title":"Webpack Testing"},"25":{"body":"We maintain test suites in Rspack Testing which is not coverable or need to be modified in Webpack Testing. The test suites lies in rspack-test . This folder structure is similar with Webpack Testing. Run Tests # In root path\n./x build -a\n./x test js Or only test the package that you made the changes: # In the Node.js package path\npnpm run build && pnpm run test To update snapshots: pnpm --filter '@rspack/*' test -- -u","breadcrumbs":"Testing » intro » Rspack Testing","id":"25","title":"Rspack Testing"},"26":{"body":"We use jest for Node.js tests, The most important test cases are the case in the packages/rspack. most of these cases comes from webpack https://github.com/webpack/webpack/tree/main/test because we want to make sure that Rspack can work as same as webpack. There are three kinds of integration cases in @rspack/core. case.test.ts Cases are used to test normal build behavior, we use these cases to test against bundler core functionality, like entry, output, module resolve, etc. it will first build your test file to test whether the input could be compiled successfully, then it will use the bundled test file to run test cases in the test file to test bundler's all kinds of behavior. configCase.test.ts Cases are used to test custom build behavior, you could use custom webpack.config.js to override default build behavior, you can use these cases to test against behavior related to specific config. statsTestCase.test.ts Cases are used to test your stats, By Default we will use jest's snapshot to snapshot your stats, and we highly recommend to avoid snapshot except statsCase. you can use statsCase to test behaviors like code splitting | bundle splitting, which is hard to test by just running code.","breadcrumbs":"Testing » intro » Node Testing Suite Overview","id":"26","title":"Node Testing Suite Overview"},"27":{"body":"The packages/playground provides e2e testing feature. We use playwright as the e2e testing framework.","breadcrumbs":"Testing » E2E » E2E","id":"27","title":"E2E"},"28":{"body":"The entry point of a test case is a file ending with .test.ts, and the parent directory of this file is the project directory. Here are some rules about test cases: The project directory must contain rspack.config.js to start the dev server. The project directory can contain multi *.test.ts. All test cases share dependencies, so just add dependencies in packages/playground/package.json. The cases folder should contain the category folders and then is the project folders. In principle, there should be no third-level directory.","breadcrumbs":"Testing » E2E » Cases","id":"28","title":"Cases"},"29":{"body":"The fixtures is a feature of playwright, in short it provides a variable that is generated in before{Each|All} and destroyed in after{Each|All}. More information see test-fixtures Here are some rules when defining a new fixture: Private fixtures should start with _ and are used only in the current file. A file only provides fixtures with the same name. A file can only provide one option and starts with default Register fixtures in fixtures/index.ts and export only necessary variables and types. Here are some existing fixtures: pathInfo This fixture will generate test environment, and calculate the PathInfo. type PathInfo = { // test file path testFile: string; // project dir testProjectDir: string // temporary project directory to be copied into tempProjectDir: string\n} rspack This fixture will start the rspack dev server and provide some useful methods. type Rspack = { // rspack running project directory projectDir: string // rspack compiler compiler: Compiler // rspack dev server devServer: DevServer // waiting for rspack build finish waitingForBuild: () => Promise // waiting for hmr finish, the poll function is used to check waitingForHmr: (poll: () => Promise) => Promise\n} fileAction This fixture will provide file change operations. type fileAction = { updateFile(relativePath: string, fn: (content: string) => string): void deleteFile(relativePath: string): void\n}","breadcrumbs":"Testing » E2E » Fixtures","id":"29","title":"Fixtures"},"3":{"body":"If you are looking to dive into the codebase and get started, we recommend checking out our issue list labeled with good first issue . This will help you get acquainted with the project and start contributing.","breadcrumbs":"Getting started » Good First Issue","id":"3","title":"Good First Issue"},"30":{"body":"playwright scan all test case and allocates a worker to run each case. pathInfo copy the project directory corresponding to the current case to temp/${worker_index}. rspack rewrite dev server port to 8000 + worker_index and start compiler and dev server in temp/${worker_index}. run current tests. rspack close dev server and compiler. pathInfo clear temp/${worker_index}","breadcrumbs":"Testing » E2E » How it works","id":"30","title":"How it works"},"31":{"body":"","breadcrumbs":"Debugging » Debugging","id":"31","title":"Debugging"},"32":{"body":"Install go install github.com/go-delve/delve/cmd/dlv@latest Install VSCode extension rust-analyzer and CodeLLDB build @rspack/cli and napi binding by run pnpm install && pnpm -w build:cli:debug In VSCode's Run and Debug tab, select debug-rspack to start debugging the initial launch of @rspack/cli. This task can be configured in .vscode/launch.json, which launches the Node and Rust debugger together.","breadcrumbs":"Debugging » Debugging with VSCode","id":"32","title":"Debugging with VSCode"},"33":{"body":"tracing is used to instrumenting Rspack. The supported tracing levels for release builds are INFO, WARN and ERROR debug builds are TRACE, DEBUG, INFO, WARN and ERROR Use the RSPACK_PROFILE environment variable for displaying trace information RSPACK_PROFILE=TRACE=layer=logger rspack build\nRSPACK_PROFILE='TRACE=layer=logger&filter=rspack_core::compiler::compilation' rspack build # filter for an event","breadcrumbs":"Debugging » Tracing","id":"33","title":"Tracing"},"34":{"body":"oxc_resolver emits some tracing information for debugging purposes. RSPACK_PROFILE='TRACE=filter=oxc_resolver=trace&layer=logger' rspack build","breadcrumbs":"Debugging » oxc_resolver","id":"34","title":"oxc_resolver"},"35":{"body":"rust-lldb can be used to get panic information from debug builds rust-lldb -- node /path/to/rspack build Once it launches, press r for running the program. For example, examples/arco-pro crashes without any information before this fix : rspack/examples/arco-pro ❯ node ../../packages/rspack-cli/bin/rspack build\nRspack ██████████████████████░░░░░░░░░░░░░░░░░░ 56% building ./pages/welcome\nzsh: bus error node ../../packages/rspack-cli/bin/rspack build Using rust-lldb rspack/examples/arco-pro ❯ rust-lldb -- node ../../packages/rspack-cli/bin/rspack build Press r and it prints: Process 23110 stopped\n* thread #10, name = 'tokio-runtime-worker', stop reason = EXC_BAD_ACCESS (code=2, address=0x70000cc66560) frame #0: 0x0000000140d0db4b rspack.darwin-x64.node`swc_ecma_parser::parser::expr::ops::_$LT$impl$u20$swc_ecma_parser..parser..Parser$LT$I$GT$$GT$::parse_unary_expr::h29f49330a806839c(self=0x0000000000000000) at ops.rs:244 241 /// Parse unary expression and update expression. 242 /// 243 /// spec: 'UnaryExpression'\n-> 244 pub(in crate::parser) fn parse_unary_expr(&mut self) -> PResult> { 245 trace_cur!(self, parse_unary_expr); 246 let start = cur_pos!(self); 247\nTarget 0: (node) stopped.","breadcrumbs":"Debugging » rust-lldb","id":"35","title":"rust-lldb"},"36":{"body":"This discussion aims to illustrate the method for mixed debugging between JavaScript and Rust.","breadcrumbs":"Debugging » Mixed debug » Mixed Debugging Between JavaScript and Rust","id":"36","title":"Mixed Debugging Between JavaScript and Rust"},"37":{"body":"To illustrate this process, I'll use an example. Let's start by introduce the environment and example I have used. System: macos IDE: vscode Debugging target: rspack build ${projectRoot}/basic Firstly, you need to build rspack in debug mode. To do this, execute the following commands in the project's root directory: npm run build:binding:debug\nnpm run build:js","breadcrumbs":"Debugging » Mixed debug » Prerequisites","id":"37","title":"Prerequisites"},"38":{"body":"It's necessary to configure two debug configurations within in .vscode/launch.json. attach for node: { \"name\": \"attach:node”, \"request\": \"attach\", // refer: https://code.visualstudio.com/docs/editor/debugging#_launch-versus-attach-configurations \"type\": \"node\", // `9229` is the default port of message \"port\": 9229\n} and launch for lldb { \"name\": \"launch:rust-from-node\", \"request\": \"launch”, \"type\": \"lldb\", // it means we use `lldb` to launch the binary file of `node` \"program\": \"node”, \"args\": [ \"--inspect\", \"--enable-source-maps\", \"${workspaceFolder}/packages/rspack-cli/bin/rspack\", \"build\", \"-c\", \"${workspaceFolder}/examples/basic/rspack.config.js\", ], // `cwd` is just for repack find the correctly entry. \"cwd\": \"${workspaceFolder}/examples/basic/\"\n} Next, we can utilize compounds to amalgamate the two commands: { \"name\": \"mix-debug\", \"configurations\": [ \"attach:node\", \"launch:rust-from-node\" ]\n} Finally, your launch.json should appear as follows: { \"configurations\": [ { \"name\": \"attach:node\", \"request\": \"attach\", \"type\": \"node\", \"port\": 9229 }, { \"name\": \"launch:rust-from-node\", \"request\": \"launch\", \"type\": \"lldb\", \"program\": \"node\", \"args\": [ \"--inspect\", \"--enable-source-maps\", \"${workspaceFolder}/packages/rspack-cli/bin/rspack\", \"build\", \"-c\", \"${workspaceFolder}/examples/basic/rspack.config.js\", ], \"cwd\": \"${workspaceFolder}/examples/basic/\" } ], \"compounds\": [ { \"name\": \"mix-debug\", \"configurations\": [ \"attach:node\", \"launch:rust-from-node\" ] } ]\n}","breadcrumbs":"Debugging » Mixed debug » Configure launch.json in vscode","id":"38","title":"Configure launch.json in vscode"},"39":{"body":"Next, we can introduce some breakpoints and commence debugging. The result appears as follows: Your browser does not support the video tag.","breadcrumbs":"Debugging » Mixed debug » Debugging Attempt","id":"39","title":"Debugging Attempt"},"4":{"body":"If you are interested in understanding our project's direction and want to work on issues that are aligned with our priorities, our tracking issues list provides an overview of our progress and current goals.","breadcrumbs":"Getting started » Tracking Issue","id":"4","title":"Tracking Issue"},"40":{"body":"In this section, we'll explore how to profile Rspack for identifying bottlenecks. By examining where Rspack spends its time, we can gain insights into how to improve performance. Tracing Chrome Terminal Nodejs Profiling Mac Xcode Instruments","breadcrumbs":"Profiling » Profiling","id":"40","title":"Profiling"},"41":{"body":"tracing is used to instrumenting Rspack. The supported tracing levels for release builds are INFO, WARN and ERROR debug builds are TRACE, DEBUG, INFO, WARN and ERROR Two ways to enable tracing: if you are using @rspack/cli, you can enable it by RSPACK_PROFILE environment variable. if you are using @rspack/core without @rspack/cli, you can enable it by experimental_registerGlobalTrace and experimental_cleanupGlobalTrace, checkout how we implement RSPACK_PROFILE in @rspack/cli with these two function for more details.","breadcrumbs":"Profiling » Tracing","id":"41","title":"Tracing"},"42":{"body":"tracing-chrome is supported for viewing tracing information graphically. Setting the environment variable RSPACK_PROFILE=TRACE=layer=chrome before running Rspack, for example RSPACK_PROFILE=TRACE=layer=chrome rspack build produces a trace file (.rspack-profile-${timestamp}/trace.json) in the current working directory. The JSON trace file can be viewed in either chrome://tracing or ui.perfetto.dev .","breadcrumbs":"Profiling » Chrome","id":"42","title":"Chrome"},"43":{"body":"Granular tracing event values can be viewed inside the terminal via RSPACK_PROFILE=TRACE=layer=logger, for example RSPACK_PROFILE=TRACE=layer=logger rspack build will print the options passed to Rspack as well as each individual tracing event.","breadcrumbs":"Profiling » Terminal","id":"43","title":"Terminal"},"44":{"body":"If we find that the performance bottleneck is on the JS side (e.g. js loader), then we need to further analyse the js side, and we can use Nodejs Profiling to analyse. for example node --cpu-prof {rspack_bin_path} -c rspack.config.js or RSPACK_PROFILE=JSCPU rspack build this will generates a cpu profile like CPU.20230522.154658.14577.0.001.cpuprofile, and we can use speedscope to visualize the profile, for example npm install -g speedscope\nspeedscope CPU.20230522.154658.14577.0.001.cpuprofile","breadcrumbs":"Profiling » Nodejs Profiling","id":"44","title":"Nodejs Profiling"},"45":{"body":"Xcode instruments can be used to produce a CPU profile if you are on a Mac. To install Xcode Instruments, simply install the Command Line Tools: xcode-select --install For normal Rust builds, cargo instruments can be used as the glue for profiling and creating the trace file. Since Rspack takes quite a while to build, you can use the following procedure without invoking cargo instruments. It has the same effect. In crates/node_binding/Cargo.toml, turn on debug symbols and disable symbol stripping in the [profile.release] section [profile.release]\ndebug = 1 # debug info with line tables only\nstrip = false # do not strip symbols Then build the project pnpm run build:cli:release The final binary is located at packages/rspack-cli/bin/rspack once the project is built. Under the hood, cargo instruments invokes the xcrun command, which means we can run the following in our own project that uses Rspack. xcrun xctrace record --template 'Time Profile' --output . --launch -- /path/to/rspack/packages/rspack-cli/bin/rspack build It produces the following output Starting recording with the Time Profiler template. Launching process: rspack.\nCtrl-C to stop the recording\nTarget app exited, ending recording...\nRecording completed. Saving output file...\nOutput file saved as: Launch_rspack_2023-04-24_11.32.06_9CFE3A63.trace We can open the trace file by open Launch_rspack_2023-04-24_11.32.06_9CFE3A63.trace","breadcrumbs":"Profiling » Mac Xcode Instruments","id":"45","title":"Mac Xcode Instruments"},"46":{"body":"All releases are automated through GitHub actions. All published releases of @rspack/cli can be found on the npm versions page . They are tagged as latest with semver version x.y.z nightly canary","breadcrumbs":"Releasing » Releasing","id":"46","title":"Releasing"},"47":{"body":"The full release workflow is currently triggered manually every Tuesday with full release notes. The following 9 targets are built x86_64-unknown-linux-gnu aarch64-unknown-linux-gnu x86_64-unknown-linux-musl aarch64-unknown-linux-musl i686-pc-windows-msvc x86_64-pc-windows-msvc aarch64-pc-windows-msvc x86_64-apple-darwin aarch64-apple-darwin","breadcrumbs":"Releasing » Latest Full Release","id":"47","title":"Latest Full Release"},"48":{"body":"The nightly release workflow is triggered every day at UTC 16:00:07, which is 00:07 AM Beijing Time (offset with an odd minute to avoid cron jobs firing off at the same time). The nightly build fully replicates the full release build for catching errors early.","breadcrumbs":"Releasing » Nightly","id":"48","title":"Nightly"},"49":{"body":"Commenting on a PR with the text !canary triggers the canary release workflow . Only contributors have the permission to publish canary releases. The canary release only builds three targets for quicker feedback aarch64-apple-darwin x86_64-apple-darwin x86_64-unknown-linux-gnu","breadcrumbs":"Releasing » Canary","id":"49","title":"Canary"},"5":{"body":"We are always looking for contributors, and that goes beyond just our main repository. Check out these other ways to get involved and start making a difference today. The documentation website is at web-infra-dev/rspack-website This dev guide is at web-infra-dev/rspack-dev-guide Community packages is at https://github.com/rspack-contrib As a reminder, all contributors are expected to follow our Code of Conduct .","breadcrumbs":"Getting started » Other ways to contribute","id":"5","title":"Other ways to contribute"},"50":{"body":"Thank you for your interest in contributing to Rspack! There are many ways to contribute, and we appreciate all of them.","breadcrumbs":"Contribution procedures » Intro","id":"50","title":"Intro"},"51":{"body":"Fork the Rspack repository into your own GitHub account. Clone the repository to your local. Checkout a new branch from main. Set up the development environment, you can read the \"Setup Development Environment\" section below to learn about it. If you've fixed a bug or added code that should be tested, then add some tests. Make sure all the tests pass, you can read the \"Testing\" section below to learn about it. Run pnpm run lint:js and pnpm run lint:rs to check the code style. If you've changed some Node.js packages, you should add a new changeset . Run pnpm run changeset, select the changed packages and add the changeset info. If you've changed some Rust packages, you should add a new changeset for @rspack/binding package. Submit the Pull Request, make sure all CI runs pass. The maintainers will review your Pull Request soon. When submitting a Pull Request, please note the following: Keep your PRs small enough, so that each PR only addresses a single issue or adds a single feature. Please include an appropriate description in the PR, and link related issues.","breadcrumbs":"Contribution procedures » Sending a Pull Request","id":"51","title":"Sending a Pull Request"},"52":{"body":"The format of PR titles follow Conventional Commits. A example feat(ui): Add `Button` component\n^ ^ ^\n| | |__ Subject\n| |_______ Scope\n|____________ Type Your PR must have a Type Optionally have a Scope Scope should be lower case must have a Subject","breadcrumbs":"Contribution procedures » Format of PR titles","id":"52","title":"Format of PR titles"},"53":{"body":"The rspack repro template can be used to create a minimal reproducible example. A minimal reproducible example (MRE) is a code that is: Short Self-contained Demonstrates the problem being encountered An MRE is essential because it allows us to quickly understand and reproduce your issue. This, in turn, increases the likelihood of getting a helpful and accurate response in a shorter amount of time. It is important to note that an MRE should not include extraneous code related to unrelated functionality, and should instead focus solely on the problem at hand. Please see also How to create a Minimal, Reproducible Example from Stackoverflow.","breadcrumbs":"Minimal reproducible example » Minimal reproducible example","id":"53","title":"Minimal reproducible example"},"54":{"body":"If you need guidance or assistance with a specific area of the project, check out the CODEOWNERS file on GitHub. This file lists the preferred person to contact for each area.","breadcrumbs":"About the team » About the team","id":"54","title":"About the team"},"55":{"body":"This page explains the meanings of Rspack repository's labels. C Contribution welcome G Good first issue","breadcrumbs":"Managing labels » Managing labels","id":"55","title":"Managing labels"},"56":{"body":"","breadcrumbs":"Managing labels » C","id":"56","title":"C"},"57":{"body":"","breadcrumbs":"Managing labels » Contribution welcome","id":"57","title":"Contribution welcome"},"58":{"body":"","breadcrumbs":"Managing labels » G","id":"58","title":"G"},"59":{"body":"","breadcrumbs":"Managing labels » Good first issue","id":"59","title":"Good first issue"},"6":{"body":"This guide is meant to help document how Rspack works, as well as to help new contributors get involved in Rspack development.","breadcrumbs":"About this guide » About this guide","id":"6","title":"About this guide"},"60":{"body":"This is the architecture of current rspack implementation","breadcrumbs":"rspack » rspack","id":"60","title":"rspack"},"61":{"body":"loader","breadcrumbs":"rspack » Table of Contents","id":"61","title":"Table of Contents"},"62":{"body":"rspack#2780 rspack#2808","breadcrumbs":"rspack » loader » Related PRs","id":"62","title":"Related PRs"},"63":{"body":"The old architecture is a quite simple version, which only supports loaders for normal stage. Pitching loader does not put into consideration. The basic concept of the old version is to convert the normal loader to a native function which can be called from the Rust side. Furthermore, for performance reason, Rspack also composes loaders from the JS side to mitigate the performance issue of Node/Rust communications. In this new architecture, loaders will not be converted directly into native functions. Instead, it is almost the same with how webpack's loader-runner resolves its loaders, by leveraging the identifier. Every time Rspack wants to invoke a JS loader, the identifiers will be passed to the handler passed by Node side to process. The implementation also keeps the feature of composing JS loaders for performance reason.","breadcrumbs":"rspack » loader » Summary","id":"63","title":"Summary"},"64":{"body":"The refactor does not introduce any other breaking changes. So it's backwards compatible. The change of the architecture also help us to implement pitching loader with composability.","breadcrumbs":"rspack » loader » Guide-level explanation","id":"64","title":"Guide-level explanation"},"65":{"body":"Pitching loader is a technique to change the loader pipeline flow. It is usually used with inline loader syntax for creating another loader pipeline. style-loader, etc and other loaders which might consume the evaluated result of the following loaders may use this technique. There are other technique to achieve the same ability, but it's out of this article's topic. See Pitching loader for more detail.","breadcrumbs":"rspack » loader » Pitching loader","id":"65","title":"Pitching loader"},"66":{"body":"","breadcrumbs":"rspack » loader » Reference-level explanation","id":"66","title":"Reference-level explanation"},"67":{"body":"In the original implementation of loader, Rspack will convert the normal loaders in the first place, then pass it to the Rust side. In the procedure of building modules, these loaders will be called directly: Old architecture The loader runner is only on the Rust side and execute the loaders directly from the Rust side. This mechanism has a strong limit for us to use webpack's loader-runner for composed loaders. In the new architecture, we will delegate the loader request from the Rust core to a dispatcher located on the JS side. The dispatcher will normalize the loader and execute these using a modified version of webpack's loader-runner: image Loader functions for pitch or normal will not be passed to the Rust side. Instead, each JS loader has its identifier to uniquely represent each one. If a module requests a loader for processing the module, Rspack will pass identifier with options to the JS side to instruct the Webpack like loader-runner to process the transform. This also reduces the complexity of writing our own loader composer.","breadcrumbs":"rspack » loader » Actor of loader execution","id":"67","title":"Actor of loader execution"},"68":{"body":"Options will normally be converted to query, but some of the options contain fields that cannot be serialized, Rspack will reuse the loader ident created by webpack to uniquely identify the option and restore it in later loading process.","breadcrumbs":"rspack » loader » Passing options","id":"68","title":"Passing options"},"69":{"body":"As we had known before, each loader has two steps, pitch and normal. For a performance friendly interoperability, we must reduce the communication between Rust and JS as minimum as possible. Normally, the execution steps of loaders will look like this: image The execution order of the loaders above will looks like this: loader-A(pitch) loader-B(pitch) loader-C(pitch) loader-B(normal)\nloader-A(normal) The example above does not contain any JS loaders, but if, say, we mark these loaders registered on the JS side: image The execution order will not change, but Rspack will compose the step 2/3/4 together for only a single round communication.","breadcrumbs":"rspack » loader » Optimization for pitching","id":"69","title":"Optimization for pitching"},"7":{"body":"Please see prerequisites for setting up Rust and Node.js.","breadcrumbs":"Building and running » How to build and run the compiler","id":"7","title":"How to build and run the compiler"},"70":{"body":"This is the architecture of webpack implementation","breadcrumbs":"webpack » webpack","id":"70","title":"webpack"},"71":{"body":"loader dependency","breadcrumbs":"webpack » Table of Contents","id":"71","title":"Table of Contents"},"72":{"body":"Based on Webpack version: 5.73.0 . Explain how webpack loader works. Even though it's a little bit long and tedious, It's still a teeny-tiny peek at the loader system of Webpack.","breadcrumbs":"webpack » loader » Summary","id":"72","title":"Summary"},"73":{"body":"What's the meaning of a word used to describe a feature? Why does the Webpack introduce this and what's the background of introducing this? What kind of problem Webpack was facing at the time?","breadcrumbs":"webpack » loader » Glossary","id":"73","title":"Glossary"},"74":{"body":"import Styles from '!style-loader!css-loader?modules!./styles.css'; Inline loader syntax : The syntax that chains the loader together within the specifier, followed by the file requested. e.g. !style-loader!css-loader?modules!./style.css request: The request with inline loader syntax retained. Webpack will convert relative URLs and module requests to absolute URLs for loaders and files requested. e.g. !full-path-to-the-loader-separated-with-exclamation-mark!full-path-to-styles.css","breadcrumbs":"webpack » loader » Request Related","id":"74","title":"Request Related"},"75":{"body":"import xxx from \"./index.js?vue=true&style#some-fragment\" resource : The absolute path to the requested file with query and fragment retained but inline loader syntax removed. e.g. absolute-path-to-index-js.js?vue=true&style#some-fragment resourcePath : The absolute path to the requested file only. e.g. absolute-path-to-index-js.js resourceQuery : Query with question mark ? included. e.g. ?vue=true&style resourceFragment : e.g. #some-fragment inline match resource: Used to redirect the module.rules to another, which is able to adjust the loader chain. We will cover this later. Ref: related PR Webpack Doc1 Webpack Doc2 virtualResource: The proposed solution to support asset type changing(A sugar to inline matchResource, which can also affect the asset filename generation) See more: the background of this property","breadcrumbs":"webpack » loader » Resource Related","id":"75","title":"Resource Related"},"76":{"body":"Virtual Module: A kind of module that does not locate in the real file system. But you can still import it. To create a virtual module, you need to follow the spec and it's also worth noting that Node.js and Webpack both support it under the scheme of data:. Also known as, data: import. Doc to Node.js Module types with native support: Webpack supports the following module types native: 'javascript/auto' | 'javascript/dynamic' | 'javascript/esm' | 'json' | 'webassembly/sync' | 'webassembly/async' | 'asset' | 'asset/source' | 'asset/resource' | 'asset/inline', for those types you can use it without a loader . From webpack version 4.0+, webpack can understand more than javascript alone.","breadcrumbs":"webpack » loader » Others but also important to note","id":"76","title":"Others but also important to note"},"77":{"body":"","breadcrumbs":"webpack » loader » Guide-level explanation","id":"77","title":"Guide-level explanation"},"78":{"body":"The way that webpack controls what kind of module that each loader would apply is based on module.rules const MiniExtractCssPlugin = require(\"mini-extract-css-plugin\") module.exports = { module: { rules: [ { test: /\\.vue$/, use: [\"vue-loader\"] }, { test: /\\.css$/, use: [MiniExtractCssPlugin.loader, \"css-loader\"] } ] }, plugins: [new MiniExtractCssPlugin()]\n} Here is a simple option for the configuration of vue-loader. module.rules[number].test is a part rule to test whether a rule should be applied . For vue-loader alone, It's kind of confusing how webpack pass the result to the rule of css, we will cover this later. But for now, It's good to notice there is not only a test option alone to test if a rule should be applied . You can find it here for full conditions supported. Here're some examples of other conditions you can use. module.exports = { module: { rules: [ { test: /\\.vue$/, // of course, test if the file extension match `vue`. scheme: \"data\", // if the specifier of a request starts with `data:` resourceQuery: \"?raw\", // if the `resourceQuery` matches then the rule will be applied. For this example, it's a great idea to apply a `raw-loader` here. type: \"css\" // use webpack's native resource handling for css } ] }\n}","breadcrumbs":"webpack » loader » Loader configuration","id":"78","title":"Loader configuration"},"79":{"body":"","breadcrumbs":"webpack » loader » Examples","id":"79","title":"Examples"},"8":{"body":"Install Node.js dependencies via pnpm . # enable pnpm with corepack, only available on node >= `v14.19.0`\ncorepack enable # or install pnpm directly\nnpm install -g pnpm@7 # Install dependencies\npnpm install","breadcrumbs":"Building and running » Install Node.js dependencies","id":"8","title":"Install Node.js dependencies"},"80":{"body":"In a single file component(SFC) of Vue, there are commonly three blocks or more blocks( custom blocks ) contained. The basic idea of implementing this loader is to convert it into JavaScript / CSS and let webpack handle the chunk generation(e.g. Style should be generated into a separate .css file) ⬇️⬇️⬇️⬇️⬇️⬇️ Vue-loader will firstly turn into the *.vue file into something like that. import \"script-path-to-vue-sfc\";\nimport \"template-path-to-vue-sfc\";\nimport \"style-path-to-vue-sfc\"; You may find it weird how webpack handles these imports and build the transformed code. But if I change the code a little bit, you will find the idea. import \"script:path-to-vue-sfc\";\nimport \"template:path-to-vue-sfc\";\nimport \"style:path-to-vue-sfc\"; and if we tweak the configuration a little bit to this, webpack will know exactly how to work with these import statements. module.exports = { module: { rules: [ { test: /\\.vue$/, use: [\"vue-loader\"] }, { scheme: \"script\", use: [\"apply-your-javascript-loader\", \"vue-script-extract-loader\"] }, { scheme: \"template\", use: [\"apply-your-javascript-loader\", \"vue-template-extract-loader\"] }, { scheme: \"style\", use: [\"apply-your-style-loader\", \"vue-style-extract-loader\"] } ] }\n} We added a few loaders to handle the splitting. I know it's still kind of weird here, but please stick with me and we will find a better way out. vue-script-extract-loader: extract the script block from a SFC file. vue-style-extract-loader: extract the style block from a SFC file. vue-template-extract-loader: extract the template block from a SFC file and convert it into JavaScript. You will find it's really noisy only to transform a *.vue file, four loaders were introduced and I believe none of you would like to separate a simple loader into four. It's a real bummer! It will be great to use a single loader vue-loader alone. The current vue loader implementation uses resourceQuery to handle this. But how? Loader optimizations I We know that webpack uses a few conditions to handle whether a rule should be applied. Even with rule.test alone, the this.reousrceQuery is still available to loaderContext which developer could access it with this in any loader function(Don't worry if you still don't catch this. You will understand this after). Based on that, we change the rule to this: module.exports = { module: { rules: [ { test: /.vue$/, use: [\"vue-loader\"] } ] }\n} This indicates \"If an import specifier is encountered, please pass me to vue-loader\"! If you remember the import transformation above, we could adjust the transformation a little bit to this: Before import \"script-path-to-vue-sfc\";\nimport \"template-path-to-vue-sfc\";\nimport \"style-path-to-vue-sfc\"; After import \"path-to-vue-sfc.vue?script=true\";\nimport \"path-to-vue-sfc.vue?template=true\";\nimport \"path-to-vue-sfc.vue?style=true\"; These requests will match the test: /.vue$/ above flawlessly and in the loader we can handle like this: // pseudo code only for proofing of the concept\nconst compiler = require(\"some-vue-template-compiler\") const loader = function(source) { const { resourceQuery /* ?script=true or something else */, resourcePath /* path-to-vue-sfc.vue */ } = this if (resourceQuery === \"?script=true\") { return compiler.giveMeCodeofScriptBlock(this.resourcePath) // javascript code } else if (resourceQuery === \"?template=true\") { return compiler.giveMeCodeofTemplateBlock(this.resourcePath) // javascript code } else if (resourceQuery === \"?style=true\") { return compiler.giveMeCodeofStyleBlock(this.resourcePath) // style code } else { return ` import `${this.resourcePath}?script=true`; import `${this.resourcePath}?template=true`; import `${this.resourcePath}?style=true`; ` }\n} module.exports = loader You can see the loader for the example above will be used for four times. Encounter a *.vue file, transform the code to a few import statements For each import statement introduced in the first transformation, the loader will be used again as they share the same extension vue. Is this the end? No! Even if you wrote the code like this, it will still fail to load. For CSS: You haven't tell webpack a way to handle the CSS, remember the CSS part is required to go through the css-loader and then mini-css-extract(if you want to generate CSS for chunk) or style-loader(if you want to append it directly to the DOM). After all, you have to make the result of style to pass these loaders. For JS: You haven't transformed the code to any transpilers, It will be failed if your runtime doesn't support the syntax(maybe in TypeScript for example) and webpack internal acorn compiler does not have the ability to help you with that. Pass the code to the corresponding loaders We tweak the configuration a little bit again. module.exports = { module: { rules: [ { test: /.vue$/, use: [\"vue-loader\"] }, { test: /.css$/, use: [MiniCssExtractPlugin.loader, \"css-loader\"] }, { test: /.js$/, use: [\"babel-loader\"] } ] }\n} It looks a bit more like the \"normal\" Webpack configuration. Note that the rule.test is based on the file extension, so vue-loader did a little bit of hack here. // pseudo code only for proofing of the concept\nconst compiler = require(\"some-vue-template-compiler\") const loader = function(source) { const { resourceQuery /* ?script=true or something else */, resourcePath /* path-to-vue-sfc.vue */ } = this if (resourceQuery === \"?script=true\") { const code = compiler.giveMeCodeofScriptBlock(this.resourcePath) // javascript code this.resourcePath += \".js\" return code } else if (resourceQuery === \"?template=true\") { const code = compiler.giveMeCodeofTemplateBlock(this.resourcePath) // javascript code this.resourcePath += \".js\" return code } else if (resourceQuery === \"?style=true\") { const code = compiler.giveMeCodeofStyleBlock(this.resourcePath) // style code this.resourcePath += \".css\" // based on the `lang` in each script, the extension will be set accordingly. return code } else { return ` import `${this.resourcePath}?script=true`; import `${this.resourcePath}?template=true`; import `${this.resourcePath}?style=true`; ` }\n} module.exports = loader Webpack uses resourcePath to match a module.rules. So this hack will let webpack treat blocks accordingly as if they are real files with extensions of js | css |... . Finally! But this is only a proof of concept, for the real implementation. You should definitely check out the vue-loader yourself. Loader Optimization II Well done! We implemented a simple and rudimentary version of vue-loader. However, the real pain-in-the-ass part of this implementation is hacking the extension to match the configuration. But since almost every user would have other js | css files included in the project, so vue team decide to use this kind of strategy to reuse the user configuration. Except for hacking the extension, webpack then provided a more legit way to handle this kind of rule matching problem which is known as inline match resource (We covered it in the glossary part). inline match resource Webpack can do almost anything with an import specifier like the loader chaining we covered in the glossary part. Inline source match is another case. By taking the advantage of it, you can force an import statement to go through a module.rules by introducing the !=! syntax. For example, if we want to force a css file to go through a less loader, it will be look like this: module.exports = { module: { rules: [ { test: /.less$/, use: [\"style-loader\", \"css-loader\", \"less-loader\"] } ] }\n} // This import should be converted with a loader // treat the file as `less`\nimport \"./index.css.less!=!./index.css\" The slice before the !=! is a way to modify the extension of a single file and force it to match the module.rules and this transformation is often done in a loader, or you will make your application code specialized for Webpack only. After going through the basic example, let's see how we're going to optimize out the hack used in vue-loader. // pseudo code only for proofing of the concept\nconst compiler = require(\"some-vue-template-compiler\") const loader = function(source) { const { resourceQuery /* ?script=true or something else */, resourcePath /* path-to-vue-sfc.vue */ } = this if (resourceQuery === \"?vue=true&script=true\") { return compiler.giveMeCodeofScriptBlock(this.resourcePath) // javascript code } else if (resourceQuery === \"?vue=true&template=true\") { return compiler.giveMeCodeofTemplateBlock(this.resourcePath) // javascript code } else if (resourceQuery === \"?vue=true&style=true\") { return compiler.giveMeCodeofStyleBlock(this.resourcePath) // style code } else { return ` import `${this.resourcePath}.js!=!${this.resourcePath}?vue=true&script=true`; import `${this.resourcePath}.js!=!${this.resourcePath}?vue=true&template=true`; import `${this.resourcePath}.css!=!${this.resourcePath}?vue=true&style=true`; ` }\n} module.exports = loader Webpack will internally use the match resource part(before !=!) as the data to match loaders. In order to let vue-loader match the resource. We have two options: Loose test Inline loader syntax 1. Loose test module.exports = { module: { rules: [ { test: /\\.vue/, // original: `/\\.vue$/`, we removed the `$` to allow resources with `.vue` included to match this rule. use: [\"vue-loader\"] } ] }\n} We removed the $ to allow resources with .vue included matching this rule. Personally speaking, this is not a good idea, because a loose match might cause mismatches. 2. Inline loader syntax // vue-loader/index.js module.exports = function() { // ... code omitted return ` import `${this.resourcePath}.js!=!${__filename}!${this.resourcePath}?vue=true&script=true`; import `${this.resourcePath}.js!=!${__filename}!${this.resourcePath}?vue=true&template=true`; import `${this.resourcePath}.css!=!${__filename}!${this.resourcePath}?vue=true&style=true`; `\n} This technique is to take advantage of the inline loader syntax to force the loader to go through the vue loader. This tackles down the tangible mismatching ideally and we can still retain the test regex /\\.vue$/ as-is. Final art and conclusion Configuration module.exports = { module: { rules: [ { test: /\\.vue$/, use: [\"vue-loader\"] }, // ... other rules for js, or css, etc. ] } } Loader // pseudo code only for proofing of the concept\nconst compiler = require(\"some-vue-template-compiler\") const loader = function(source) { const { resourceQuery /* ?script=true or something else */, resourcePath /* path-to-vue-sfc.vue */ } = this if (resourceQuery === \"?vue=true&script=true\") { return compiler.giveMeCodeofScriptBlock(resourcePath) // javascript code } else if (resourceQuery === \"?vue=true&template=true\") { return compiler.giveMeCodeofTemplateBlock(resourcePath) // javascript code } else if (resourceQuery === \"?vue=true&style=true\") { return compiler.giveMeCodeofStyleBlock(resourcePath) // style code } else { return ` import `${this.resourcePath}.js!=!${__filename}!${resourcePath}?vue=true&script=true`; import `${this.resourcePath}.js!=!${__filename}!${resourcePath}?vue=true&template=true`; import `${this.resourcePath}.css!=!${__filename}!${resourcePath}?vue=true&style=true`; ` }\n} module.exports = loader Conclusion Vue-loader is quite complex. The basic needs of the loader are: Separate a *.vue file request into a number of parts. For each block, explicitly change the resource matching mechanism (using inline match resource ). The killer inline match resource not only gives us great composability with user-defined loaders, but also the ability to interact with webpack supported native types, and we will cover this part late. When requesting the vue-loader again for a block, the code of each block is returned and let webpack handle the changed matched resource(e.g. ./App.vue.css) with user-defined loaders (Webpack did this internally).","breadcrumbs":"webpack » loader » Vue(1 to n)","id":"80","title":"Vue(1 to n)"},"81":{"body":"We know that webpack only supports JavaScript in the old time, from the version of 4.0.0+( changelog ) Simplified pre-processor's configuration With the experimental support of CSS. A.K.A webpack knows how to handle CSS files natively. Before module.exports = { module: { rules: [ { test: /\\.less$/, use: [\"style-loader\", \"css-loader\", \"less-loader\"], type: \"javascript/auto\" // this field is a implicit one, if not defined, it will be set to `\"javascript/auto\"` } ] }\n} After module.exports = { module: { rules: [ { test: /\\.less$/, use: [\"less-loader\"], type: \"css\" } ] }, experiments: { css: true }\n} With experiments.css on, webpack can experimentally understand the parsing and generating of css files which gets rid of css-loader and style-loader. For the full list of natively supported Rule.type, you can find it here . Asset modules From webpack 4.0.0+ , assets are supported natively module.exports = { module: { rules: [ { test: /\\.(png|jpg)/, type: \"asset\" } ] }\n} Rule.type === \"asset\" indicates the asset will be automatically tested whether it's going to be inlined or emitted as a file on the real file system. The possible options are: 'asset' | 'asset/source' | 'asset/resource' | 'asset/inline'","breadcrumbs":"webpack » loader » Use natively supported module types","id":"81","title":"Use natively supported module types"},"82":{"body":"Webpack loader will read the source to a UTF-8 string by default. For SVG files, this would fit the webpack load defaults. // Proof of concept of svgr-loader\nmodule.exports = function(source) { if (this.resourceQuery === \"?svgr=true\") { // the real transform part let { code } = svgrTransformer.transform(source); return code } return `require(\"${this.resourcePath}.jsx!=!${__filename}!${this.resourcePath}?svgr=true\")` // the request part\n} Again here we use double-pass to firstly convert each request to the request part with inline match resource , and do the real request with query ?svgr=true, and let inline match resource handle the jsx conversion. Before that, we have to call a third-party jsx transformer, could be ESBuild for example, for which we cannot reuse other module.rules set by the user-side. Inline match resource saved our ass again!","breadcrumbs":"webpack » loader » Svgr","id":"82","title":"Svgr"},"83":{"body":"Supported in Webpack version 5.38.0 , doc: Rule.scheme // JavaScript\nimport x from \"data:text/javascript,export default 42\"\nconsole.log('x:',x); /* CSS */\n@import (\"data:text/css, body { background: #fff; }\"); Webpack handles data: imports for JavaScript internally.","breadcrumbs":"webpack » loader » Scheme imports","id":"83","title":"Scheme imports"},"84":{"body":"Asset : This is a general term for the images, fonts, media, and any other kind of files that are typically used in websites and other applications. These typically end up as individual files within the output but can also be inlined via things like the style-loader or url-loader . Originally posted at Webpack Glossary Default resource reading override Asset could be formatted in both text(*.svg) or binary (*.png / *.jpg). For loaders, webpack provides you an option raw to override the default and built-in resource reading strategy from UTF-8 string to Buffer: module.exports = function(source /* Buffer */ ) { // loader implementation\n} module.exports.raw = true Transform and rename Image there is a need to transform an asset formatted with png to jpg. There is two abilities that webpack needs to support: Handle the asset with raw content, or a Buffer. We can simply override the default resource reading behavior by exporting raw(covered before). Change the filename, and reuse the loader for both png and jpg Configuration module.exports = { module: { rules: [ { test: /\\.png/, use: [\"png-to-jpg-loader\"] // some png to jpg loader, we will implement this }, { test: /\\.jpg/, use: [\"jpg-optimizer\"] // some jpg optimizer, we will not covert this, type: \"asset/resource\" } ] }\n} Rule1: For files with extension png, we want to use a png to jpg loader, which will be covered in this article. Rule2: For files with extension jpg, we want to use a third-party jpg-optimizer, which will not be covered in this article. type: \"asset/resource\": As soon as all the loaders have gone through, we want webpack to emit the file as an external resource on the file system regardless of the file size(type: \"asset\" will automatically detect the size of an asset to determine whether an asset will be inline-included for dynamically imported from file system). For those jpg files converted from png, we want them to apply with the jpg-optimizer too(i.e. reuse the loaders defined in module.rules) Loader module.exports = function(source) { if (this.resourceQuery === \"?pngToJPG=true\") { return pngToJpg.transform(source) } return `require(\"${this.resourcePath}.jpg!=!${__filename}${this.resourcePath}?pngToJPG=true\")`\n} module.exports.raw = true We use double-pass again, firstly we convert the extension to .jpg which will apply the matched rules(in this case test: /\\.jpg/), after the transformation of png-to-jpg-loader. Generated asset module filename will be based on the inline match resource , which is xxxx.jpg in this case.","breadcrumbs":"webpack » loader » Asset transform and rename","id":"84","title":"Asset transform and rename"},"85":{"body":"Webpack provides a way to pass metadata(the forth parameter) among the chaining loaders doc . The most commonly used value is webpackAST which accepts an ESTree compatible(webpack internally uses acorn) AST, which hugely improves the performance since webpack instead of parsing the returned code to AST again, will directly use the AST(webpackAST) returned from a loader (But the work of a complete walking of an AST can not be omitted as it's necessary for webpack for do some analysis for its dependencies and will be only done once, so it is not a big overhead.) module.exports = function(source) { let ast = AcornParser.parse(source, { // options }) this.callback(null, '', null, { webpackAST: ast })\n} Good to note that only ESTree is compatible, so you cannot pass a CSS AST, or webpack will complain with \"webpackAst is unexpected for the CssParser\". It will be ok if you don't get this, let's move to the reference-level explanation for analysis in-depth.","breadcrumbs":"webpack » loader » AST reuse","id":"85","title":"AST reuse"},"86":{"body":"This is the reference-level explanation part of webpack's internal loader implementation.","breadcrumbs":"webpack » loader » Reference-level explanation","id":"86","title":"Reference-level explanation"},"87":{"body":"If you don't quite get this concept, you may refer to the Glossary and Example part of the Guide-level explanation first and pick up this as soon as you finished. The high-level idea of previously talked inline match resource is to let loader developers to customize the behavior of matching to match the pre-defined module.rules. It's an API to write composable loaders. But what does composition mean? For those users who are familiar with React hooks and Vue composable APIs, you may get this faster. Actually, webpack provides a lot of ways to help loader developers and users do the composition. User-defined loader flows module.exports = { module: { rules: [ { test: /\\.js$/, use: [\"babel-loader\"], type: \"javascript/auto\" }, { test: /\\.svg$/, use: [\"svgr-loader\", \"svgo-loader\"], } ] }\n} Webpack users can take the advantage of module.rules[number].use with a loader list for each request that matches the corresponding conditions. Note that I use the wording of request, not the file , which can include a request to data:text/javascript not the files on the real file system only. (In Parcel bundler, it's called pipelines , but this will not be covered in this article.) Apparently, user-declared loader flow is not able to cover up every case that a loader wants. You can see from the previous examples, vue-loader wants to split a file into many blocks, and remain the reference to it. svgr-loader wants to do the transformation first and let other loaders deal with the jsx. svg-loader wants to use the internal ability of Asset Module to let Webpack decide whether an asset is inlined or emitted to the real file system. and there are more to come... Based on the complexity of the loader, Webpack also provides a syntax to allow loader implementors to do the composition by themselves. The syntax for loader composition Inline loader syntax (Chaining loaders) Supported from webpack v1 chaining-loaders It's possible to specify loaders in an import statement, or any equivalent \"importing\" method . Separate loaders from the resource with !. Each part is resolved relative to the current directory. doc import Styles from '!style-loader!css-loader?modules!./styles.css'; The inline loader syntax executes each loader for each request from right to left. Webpack handles the interaction with user-defined loaders carefully. So by default, the user-defined normal loader will be executed prior to the inline loaders, you can disable this behavior by prefixing ! , (full reference could be found here doc ). The custom specifier is parsed before the module.rules as the inline loader syntax interferes the user-defined loaders(See the source code ). Then, webpack will get the module.rules combined with the required conditions to calculate the matching rule set (See the source code ). At the moment, you cannot change the matching behavior with the syntax, loaders are always matched with the provided resourcePath , etc, which leads to a bunch of hack code in the implementations of loaders (see this code snippet in vue-loader). The possibilities for changing the matching behavior leaves to the later-coming inline match resource . Nevertheless, the architecture of Loader at this moment is sound and solid. Another good example is the implementation-nonrelative filter(i.e. the filtering logic of Loader is not declared in the loader itself), which is the fundamental root of loader composition, or the implementor will do a lot of hacks. (It's way too dirty to talk about here, but you can take the rollup svgr plugin as a reference) In conclusion, inline loader syntax gives us a chance to control the loader flow with user-defined rules. Inline match resource To extend the matching ability, inline match resource enables loader implementors to reuse some of the user-defined configurations with more flexibilities. On top of the previous example, webpack also provides a way to make use of the natively-supported module types . // For module type `css` to work, you need to enable `experiments.css`\nimport \"./style.less.webpack[css]!=path-to-less-loader!./style.less\" // webpack.config.js\nmodule.exports = { experiments: { css: true }\n} Given the configuration above, the overview of the complete flow will be like this: Webpack: Parse the specifier of the import and create the loader for the current request Webpack: Merge the result from the second step with a user-defined module.rules in webpack.config, in this case is [] Webpack: load style.less as UTF-8 string Less-loader: Accept the UTF-8 string as the first parameter of the loader function and transform it to the content of css. Webpack: Call the registered native CSS parser, and later at the code generation step the registered native CSS generator generates the result. For asset modules , you can also use this: import \"./logo.png.jpg.webpack[asset/resource]!=path-to-loaders!./logo.png\" The first part, also known as matchResource will be used as a part of the filename of the final code generation. (See the source code )","breadcrumbs":"webpack » loader » Loader composability","id":"87","title":"Loader composability"},"88":{"body":"Before moving on to the detailed implementations, here's some glossary to support your understanding the architecture as a whole. Glossary NormalModuleFactory: A factory used to create a NormalModule, which basically exposes a create method. NormalModule: A module in Webpack most of the time is a NormalModule, but with different implementations of parser/ generator / Module Type, the module could be almost any kind, and also exposes a build method. For example, a NormalModule with JavaScript parser, JavaScript generator, and type ===javascript/auto will be regarded as a module with JavaScript-related functionalities. Also, good to note that a module may not exist on the real file system, taking data: for example. The module creation workflow This will only introduce a slice of webpack's internal implementation from the Loader's perspective , for more you should directly refer to the source code. When an import statement is detected, webpack will initialize a module creation. Based on the type of Dependency (an abstraction of webpack, it's not important here), webpack can find the linked ModuleFactory (The abstraction class), in most cases, the derived factory is NormalModuleFactory, which exposes a create method. Prepare data needed for module creation The NormalModuleFactory#create is used to provide enough information to create a real NormalModule, and create the NormalModule. In the create method, webpack basically does these things(some non-loader related stuff will be omitted): Resolve loaders from request: resolve the request, parse inline loader syntax: This contains inline match resource , inline loader syntax . Do the analysis on the parsed loader syntax, to decide whether a user-defined normal/post/pre loader is going to be included. doc Resolve Resource: resolve resource to the absolute path, fragments, queries, etc(These stuff are also provided in LoaderContext). For the full source code you may refer to this Use the resolved resource data to match module.rules defined in the configuration, and get the matched rules. This is also a part of the module creation data. Do some special logic with inline match resource , since match resource ends like .webpack[css] would change Rule.type. Also store the match resource data, since it might affect the filename generation for asset modules . Create a module based on the prepared data After the data needed for module creation is prepared, NormalModuleFactory will new NormalModule with the data provided. It contains basically every that a NormalModule needs (see the source code ). Most importantly, the loaders. It contains every loader parsed and ordered from the create step. The module build step The module build step is kind of clear. Webpack will invoke the build method for each NormalModule instance, which invokes loader-runner(see the source code ) to go through every loader that was analyzed from the create step. It's clear to know that the composition of loaders is happening on the same module . A peek of the support of Module Types As far as this article goes, It might be getting a little bit tedious. But have you ever wondered how webpack supports these module types natively? I think It's still worth telling you about it to get a more complete understanding of the AST optimizations. For the support of JavaScript, webpack's JavaScript plugin will register different types of parser and generators for each module types , which will be used as the parser / generator to a NormalModule (see the source code ). Reusing AST in Webpack Based on the parser and generator we introduced before, webpack did a little hack around the fourth parameter of this.callback (from loaderContext ), with webpackAST, after each loader call, the webpackAST will be stored in the context of loader, and passed again to the next loader. Finally, the AST will be passed to the parser(It could be any type, based on the module type , but webpack makes it a JavaScript only for AST) (see the source code ). Here's an issue about trying to use SWC's AST to get rid of the time sensitive code parsing from Acorn Parser, but they are facing some AST compatibility issues and performance issues about the overhead of interop with native code(Rust).","breadcrumbs":"webpack » loader » Performance optimizations","id":"88","title":"Performance optimizations"},"89":{"body":"loader plugin api design (Analysis) #315 RFC-011 Supports data:text/javascript protocol #457 Webpack: matchResource with natively-supported module types doc Webpack: Loader context doc Webpack: Module rules doc SWC-loader for performance optimizations issue","breadcrumbs":"webpack » loader » References","id":"89","title":"References"},"9":{"body":"Run cargo build to compile Rust code. Run pnpm run build:cli:debug to compile both Node.js and Rust code. The built binary is located at packages/rspack-cli/bin/rspack.","breadcrumbs":"Building and running » Building Rspack","id":"9","title":"Building Rspack"},"90":{"body":"Based on Webpack version: 5.73.0 . Some source code is omitted for cleaner demonstration in the example. Explain how webpack dependency affects the compilation and what kind of problem that webpack was facing at the moment and the solution to the problem.","breadcrumbs":"webpack » dependency » Summary","id":"90","title":"Summary"},"91":{"body":"What's the meaning of a word used to describe a feature? Why does the Webpack introduce this and what's the background of introducing this? What kind of problem Webpack was facing at the time?","breadcrumbs":"webpack » dependency » Glossary","id":"91","title":"Glossary"},"92":{"body":"Dependency(fileDependency) : An existing dependency that is marked as watchable. This is the widely-used type of dependency. CSS Preprocessors like postcss strongly depend on this in order to mark its dependency watchable. ContextDependency : Most useful for requests in which Glob and Regexp were used. For real-world usage, see [ this ](https://webpack.js.org/guides/dependency-management/#require-with-expression). MissingDependency : A missing dependency to mark it watchable (handles the creation of files during compilation before watchers are attached correctly.) BuildDependency : Related to persistent cache. PresentationalDependency: Dependencies that only affect presentation are mostly used with their associated template.","breadcrumbs":"webpack » dependency » High-level presentations of Dependencies","id":"92","title":"High-level presentations of Dependencies"},"93":{"body":"LoaderContext : Context provided by Webpack loader-runner , which can be accessed through this in each loader function. ModuleGraph: A graph to describe the relationship between modules.","breadcrumbs":"webpack » dependency » Others","id":"93","title":"Others"},"94":{"body":"","breadcrumbs":"webpack » dependency » Guide-level explanation","id":"94","title":"Guide-level explanation"},"95":{"body":"dependency(fileDependency) stands for the file dependency among missingDependency and contextDependency, etc. The created dependency will be marked as watchable, which is useful in Hot Module Replacement in developer mode. The implicit behavior for webpack internally in the case below is to create two dependencies internally. import foo from \"./foo\";\nimport \"./style.css\";","breadcrumbs":"webpack » dependency » Dependency","id":"95","title":"Dependency"},"96":{"body":"contextDependency is mostly used in scenarios where we want to dynamic load some module in runtime. In this case, webpack cannot assure which module it will be included in the final bundle at compile time. In order to make the code runnable in runtime, webpack has to firstly create multiple bundle modules corresponding to the matching filename such as ./components/a.js and ./components/b.js, etc. // index.js\nimport(\"./components\" + componentName).then(...) // components/a.js\n...\nexport default ComponentA; // components/b.js\n...\nexport default ComponentB; For loaders, you can access to this.addContextDependency in each loader function. For plugins, you can access via module.buildInfo.contextDependencies.","breadcrumbs":"webpack » dependency » ContextDependency","id":"96","title":"ContextDependency"},"97":{"body":"The abstraction of Dependency of Webpack was introduced in Webpack version 0.9 with a big refactor. Redirect to the commit","breadcrumbs":"webpack » dependency » Reference-level explanation","id":"97","title":"Reference-level explanation"},"98":{"body":"","breadcrumbs":"webpack » dependency » Stakeholders of Dependency","id":"98","title":"Stakeholders of Dependency"},"99":{"body":"image-20220919171608629","breadcrumbs":"webpack » dependency » High-level","id":"99","title":"High-level"}},"length":134,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"1":{".":{"0":{"df":1,"docs":{"124":{"tf":1.7320508075688772}}},"1":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}},"0":{":":{"0":{"7":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":1,"docs":{"35":{"tf":1.4142135623730951}},"x":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"4":{"0":{"d":{"0":{"d":{"b":{"4":{"b":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{".":{"0":{".":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"35":{"tf":1.0}}},"6":{":":{"0":{"0":{":":{"0":{"7":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"13":{"tf":2.8284271247461903}}},"df":3,"docs":{"109":{"tf":1.7320508075688772},"45":{"tf":1.0},"80":{"tf":1.0}}},"2":{"/":{"3":{"/":{"4":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"2":{"2":{"0":{"9":{"1":{"9":{"1":{"7":{"1":{"6":{"0":{"8":{"6":{"2":{"9":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"4":{"1":{"6":{"2":{"4":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"1":{"9":{"8":{"6":{"1":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"3":{"0":{"0":{"2":{"2":{"0":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"2":{"9":{"7":{"6":{"5":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{"3":{"2":{"7":{"7":{"2":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"2":{"6":{"5":{"6":{"4":{"6":{"8":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"5":{"5":{"3":{"2":{"1":{"5":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{"5":{"0":{"7":{"3":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"2":{"3":{"2":{"2":{"8":{"1":{"4":{"6":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"5":{"8":{"3":{"2":{"7":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"2":{"0":{"7":{"3":{"9":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"1":{"8":{"0":{"9":{"1":{"5":{"3":{"2":{"6":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"1":{"1":{"0":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{"df":1,"docs":{"35":{"tf":1.0}}},"2":{"df":1,"docs":{"35":{"tf":1.0}}},"3":{"df":1,"docs":{"35":{"tf":1.0}}},"4":{"df":1,"docs":{"35":{"tf":1.0}}},"5":{"df":1,"docs":{"35":{"tf":1.0}}},"6":{"df":1,"docs":{"35":{"tf":1.0}}},"7":{"df":1,"docs":{"35":{"tf":1.0}}},"_":{"1":{"1":{".":{"3":{"2":{".":{"0":{"6":{"_":{"9":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"3":{"a":{"6":{"3":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"109":{"tf":1.0},"80":{"tf":1.0}}},"3":{"1":{"5":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"83":{"tf":1.0}}},"5":{"7":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"3":{"8":{".":{"0":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{".":{"0":{"df":2,"docs":{"72":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"9":{"2":{"2":{"9":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"47":{"tf":1.0}}},"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"52":{"tf":1.0}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"_":{".":{"d":{"(":{"_":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"_":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"(":{"_":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"_":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"29":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"_":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"0":{"_":{"_":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":2.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"a":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}}},".":{"df":0,"docs":{},"k":{".":{"a":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"6":{"4":{"df":2,"docs":{"47":{"tf":2.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"65":{"tf":1.0},"80":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"v":{"df":7,"docs":{"104":{"tf":1.0},"109":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.0},"69":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"74":{"tf":1.0},"75":{"tf":2.0},"88":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"104":{"tf":1.0},"88":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"80":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"51":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"109":{"tf":1.0},"65":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"80":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"46":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"df":7,"docs":{"103":{"tf":1.0},"109":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":2.23606797749979},"52":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"=":{"0":{"df":0,"docs":{},"x":{"7":{"0":{"0":{"0":{"0":{"c":{"c":{"6":{"6":{"5":{"6":{"0":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"51":{"tf":1.0}}}}}}},"df":4,"docs":{"103":{"tf":1.0},"110":{"tf":1.0},"51":{"tf":1.0},"80":{"tf":1.0}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"75":{"tf":1.0},"80":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"80":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"75":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"{":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"|":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"36":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"4":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":3,"docs":{"53":{"tf":1.0},"80":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"109":{"tf":1.0},"5":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.4142135623730951}},"i":{"df":3,"docs":{"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0}}}},"z":{"df":3,"docs":{"11":{"tf":1.0},"32":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"103":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"p":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":1,"docs":{"45":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"38":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"80":{"tf":1.0}},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"128":{"tf":1.0},"131":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951}},"i":{"c":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.0}}},"df":7,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"78":{"tf":2.23606797749979},"80":{"tf":2.0},"84":{"tf":1.4142135623730951}}},"y":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"109":{"tf":2.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"114":{"tf":1.0},"51":{"tf":1.0}}}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"109":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"70":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"g":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"80":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"l":{"df":3,"docs":{"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"133":{"tf":1.0}}},"s":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951}}}},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"76":{"tf":1.0},"81":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"76":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"76":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"110":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"81":{"tf":2.449489742783178},"84":{"tf":3.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"109":{"tf":2.23606797749979},"92":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}}},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":2,"docs":{"85":{"tf":2.6457513110645907},"88":{"tf":2.449489742783178}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"38":{"tf":2.0}}},"df":0,"docs":{}}}},"df":2,"docs":{"38":{"tf":2.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"103":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0}}}},"df":1,"docs":{"46":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"8":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}}},"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"80":{"tf":1.0},"87":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{")":{"[":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"1":{"1":{"8":{"0":{"2":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":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":{"73":{"tf":1.0},"75":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"104":{"tf":1.7320508075688772}}}},"df":2,"docs":{"104":{"tf":1.0},"106":{"tf":2.0}}},"s":{"df":0,"docs":{},"e":{"df":9,"docs":{"110":{"tf":1.0},"114":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.0},"90":{"tf":1.0}}},"i":{"c":{"df":6,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"63":{"tf":1.0},"80":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":2,"docs":{"133":{"tf":1.0},"53":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"102":{"tf":1.0},"35":{"tf":1.0},"42":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"{":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"|":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"20":{"tf":2.449489742783178},"26":{"tf":2.449489742783178},"84":{"tf":1.0},"87":{"tf":2.0},"95":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"j":{"df":1,"docs":{"48":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.0},"51":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"104":{"tf":1.0},"36":{"tf":1.4142135623730951},"69":{"tf":1.0},"93":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"85":{"tf":1.0},"97":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"38":{"tf":1.0},"45":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.0}}}}},"d":{"df":4,"docs":{"114":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":3,"docs":{"72":{"tf":1.0},"80":{"tf":2.449489742783178},"88":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"80":{"tf":3.1622776601683795},"87":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"n":{"d":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"127":{"tf":1.0}},"h":{"df":3,"docs":{"76":{"tf":1.0},"84":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"40":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"113":{"tf":1.4142135623730951},"51":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"64":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"u":{"df":1,"docs":{"35":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}}}}},"g":{"df":3,"docs":{"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"51":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{":":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"32":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"j":{"df":1,"docs":{"37":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":27,"docs":{"102":{"tf":1.0},"133":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"20":{"tf":2.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"26":{"tf":2.0},"29":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":2.0},"34":{"tf":1.0},"35":{"tf":2.449489742783178},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":2.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":2.0},"9":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":4,"docs":{"45":{"tf":1.0},"47":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"87":{"tf":1.0}}}},"d":{"df":0,"docs":{},"l":{"df":5,"docs":{"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}},"df":4,"docs":{"110":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"87":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"c":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"29":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":7,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"46":{"tf":1.0},"49":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":4,"docs":{"16":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"18":{"tf":1.7320508075688772},"20":{"tf":3.1622776601683795},"24":{"tf":1.7320508075688772},"26":{"tf":3.1622776601683795},"28":{"tf":2.23606797749979},"30":{"tf":1.7320508075688772},"52":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"48":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"103":{"tf":1.0},"104":{"tf":2.449489742783178},"105":{"tf":1.0},"106":{"tf":1.0},"28":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":5,"docs":{"38":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"74":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"n":{"c":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":13,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"19":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.0},"51":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":2.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"81":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":2.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"a":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":10,"docs":{"109":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"29":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":1.0},"41":{"tf":1.0},"51":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{"/":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"40":{"tf":1.0},"42":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":3,"docs":{"110":{"tf":2.23606797749979},"116":{"tf":1.0},"80":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"110":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"109":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"110":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"i":{"df":1,"docs":{"51":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"133":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"104":{"tf":1.0},"109":{"tf":2.23606797749979},"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"109":{"tf":2.0},"90":{"tf":1.0}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"109":{"tf":1.0}}}}},"df":2,"docs":{"30":{"tf":1.0},"88":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"35":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"=":{"2":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}},"df":22,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":4.123105625617661},"110":{"tf":2.23606797749979},"111":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":2.23606797749979},"18":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"5":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"80":{"tf":5.5677643628300215},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":2.6457513110645907},"88":{"tf":2.6457513110645907},"9":{"tf":1.4142135623730951},"90":{"tf":1.0},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"d":{"b":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"110":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"13":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.0},"97":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"j":{"df":2,"docs":{"104":{"tf":1.0},"105":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"80":{"tf":1.0},"85":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"5":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.4142135623730951}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"109":{"tf":1.4142135623730951},"18":{"tf":1.0},"24":{"tf":1.0},"64":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":11,"docs":{"109":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"7":{"tf":1.0},"80":{"tf":3.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}}},"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":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"45":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"x":{"df":3,"docs":{"67":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"111":{"tf":1.0},"116":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"c":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}}},"a":{"df":1,"docs":{"96":{"tf":1.0}}},"b":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"/":{"a":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":6,"docs":{"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":2.23606797749979},"88":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"63":{"tf":1.0},"80":{"tf":2.23606797749979},"82":{"tf":1.0},"87":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"80":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"105":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"109":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"114":{"tf":1.0},"32":{"tf":1.0},"38":{"tf":2.6457513110645907},"78":{"tf":1.4142135623730951},"80":{"tf":2.449489742783178},"81":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"x":{":":{"'":{",":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"113":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"108":{"tf":1.4142135623730951},"109":{"tf":2.0},"111":{"tf":1.0},"113":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"106":{"tf":1.4142135623730951},"109":{"tf":3.1622776601683795},"114":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":3.872983346207417}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"65":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"28":{"tf":1.7320508075688772},"53":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"109":{"tf":1.0},"114":{"tf":1.0},"29":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"92":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"109":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"5":{"tf":1.0}},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"0":{"tf":1.7320508075688772},"3":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"49":{"tf":1.0},"5":{"tf":1.4142135623730951},"6":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"78":{"tf":1.0},"87":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.0}}},"t":{"df":7,"docs":{"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"16":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"67":{"tf":1.0}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"38":{"tf":1.0},"92":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"113":{"tf":1.0},"127":{"tf":1.0},"30":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"109":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"u":{".":{"2":{"0":{"2":{"3":{"0":{"5":{"2":{"2":{".":{"1":{"5":{"4":{"6":{"5":{"8":{".":{"1":{"4":{"5":{"7":{"7":{".":{"0":{".":{"0":{"0":{"1":{".":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"44":{"tf":1.4142135623730951},"45":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"35":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":16,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.4142135623730951},"116":{"tf":1.0},"127":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":3.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"101":{"tf":1.0},"110":{"tf":1.0},"88":{"tf":2.23606797749979},"92":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"78":{"tf":2.449489742783178},"80":{"tf":4.0},"81":{"tf":2.6457513110645907},"83":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.23606797749979},"92":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"!":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"103":{"tf":1.0},"109":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"21":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"4":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"w":{"d":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951}}}}}},"t":{"a":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.0}}}}},"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}},"df":2,"docs":{"87":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"76":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"48":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"114":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":11,"docs":{"31":{"tf":1.0},"32":{"tf":2.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}},"g":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"80":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":11,"docs":{"106":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"29":{"tf":1.0},"38":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"109":{"tf":1.7320508075688772},"113":{"tf":1.0},"29":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":2.8284271247461903},"88":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"80":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"v":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"c":{"df":0,"docs":{},"m":{"d":{"/":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"@":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":2.0},"53":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"p":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"[":{"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"109":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"df":23,"docs":{"101":{"tf":1.0},"103":{"tf":2.0},"104":{"tf":2.449489742783178},"105":{"tf":1.0},"106":{"tf":2.6457513110645907},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":3.7416573867739413},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"28":{"tf":1.4142135623730951},"71":{"tf":1.0},"8":{"tf":1.7320508075688772},"85":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":2.6457513110645907},"95":{"tf":2.0},"97":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"92":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"103":{"tf":1.0},"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"85":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":4,"docs":{"104":{"tf":1.0},"73":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"113":{"tf":1.0},"124":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"41":{"tf":1.0},"65":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}},"v":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}}},"df":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":{"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":4,"docs":{"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":7,"docs":{"103":{"tf":1.0},"113":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"6":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"102":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"133":{"tf":1.0},"5":{"tf":1.0},"88":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"29":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"28":{"tf":2.23606797749979},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"45":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"36":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.0}}}}},"o":{"c":{"1":{"df":1,"docs":{"75":{"tf":1.0}}},"2":{"df":1,"docs":{"75":{"tf":1.0}}},"df":7,"docs":{"105":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.4142135623730951},"5":{"tf":1.0},"6":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":1,"docs":{"80":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":6,"docs":{"109":{"tf":1.4142135623730951},"18":{"tf":1.0},"24":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"110":{"tf":2.0},"80":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.0},"84":{"tf":1.0}}},"t":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"84":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":4,"docs":{"104":{"tf":1.0},"44":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":2.0}}}},"2":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"a":{"c":{"df":0,"docs":{},"h":{"df":20,"docs":{"102":{"tf":1.0},"106":{"tf":1.7320508075688772},"109":{"tf":1.7320508075688772},"110":{"tf":2.23606797749979},"111":{"tf":1.0},"116":{"tf":1.0},"133":{"tf":1.0},"30":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.0},"82":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.7320508075688772},"93":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"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":4,"docs":{"104":{"tf":1.7320508075688772},"109":{"tf":1.0},"113":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"114":{"tf":2.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"110":{"tf":1.0},"34":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"113":{"tf":1.0},"53":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}}}},"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":8,"docs":{"103":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.4142135623730951},"28":{"tf":1.0},"45":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"133":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"111":{"tf":1.4142135623730951},"51":{"tf":1.0},"88":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"38":{"tf":1.0}}},"y":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"13":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.4142135623730951}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"41":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}},"s":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":5,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":2.449489742783178},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"109":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"53":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}},"t":{"c":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":9,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"104":{"tf":1.7320508075688772},"65":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"109":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.4142135623730951}},"t":{"df":2,"docs":{"33":{"tf":1.0},"43":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"40":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":22,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"13":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":2.0},"69":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":2.0},"82":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"c":{"_":{"b":{"a":{"d":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"80":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"102":{"tf":1.0},"37":{"tf":1.0},"67":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"29":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}}},"t":{"df":1,"docs":{"45":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"81":{"tf":1.0},"87":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"41":{"tf":1.0}}},"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"81":{"tf":1.4142135623730951}},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"81":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"109":{"tf":1.0},"55":{"tf":1.0},"72":{"tf":1.0},"90":{"tf":1.0}}}},"n":{"df":9,"docs":{"104":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"40":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":7,"docs":{"105":{"tf":1.0},"106":{"tf":2.0},"109":{"tf":1.0},"114":{"tf":2.0},"29":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"106":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"113":{"tf":2.0},"35":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"109":{"tf":1.7320508075688772},"87":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":5,"docs":{"11":{"tf":1.0},"32":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.6457513110645907},"84":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":2,"docs":{"78":{"tf":1.0},"80":{"tf":3.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"a":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"73":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}},"t":{"df":1,"docs":{"109":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"16":{"tf":1.0},"22":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":1,"docs":{"88":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"127":{"tf":1.0},"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":3,"docs":{"106":{"tf":1.0},"110":{"tf":1.0},"80":{"tf":1.7320508075688772}}}},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"83":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"102":{"tf":1.0},"104":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":22,"docs":{"103":{"tf":1.7320508075688772},"109":{"tf":1.0},"20":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"29":{"tf":2.23606797749979},"38":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":2.0},"54":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":3.872983346207417},"81":{"tf":2.0},"82":{"tf":1.0},"84":{"tf":3.0},"87":{"tf":2.23606797749979},"88":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"75":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{".":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"19":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"87":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"106":{"tf":1.0},"110":{"tf":1.7320508075688772},"113":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"80":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}}},"d":{"df":9,"docs":{"102":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.0},"81":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"29":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"0":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.4142135623730951},"55":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"37":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"82":{"tf":1.0}}},"x":{"df":4,"docs":{"18":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.0},"51":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":3.3166247903554}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"l":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"65":{"tf":1.0},"87":{"tf":2.0}}}}},"n":{"df":2,"docs":{"29":{"tf":1.0},"35":{"tf":1.0}},"m":{"df":1,"docs":{"13":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"109":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"108":{"tf":1.0},"113":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"28":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":16,"docs":{"114":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.7320508075688772},"47":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}},"o":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"104":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":5,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":3.605551275463989},"109":{"tf":2.0},"114":{"tf":2.449489742783178},"95":{"tf":1.4142135623730951}}},"r":{"c":{"df":1,"docs":{"80":{"tf":2.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"51":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"85":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"133":{"tf":1.0},"46":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"80":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"88":{"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":3,"docs":{"109":{"tf":3.0},"75":{"tf":2.0},"88":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"35":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"106":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":4,"docs":{"80":{"tf":2.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":16,"docs":{"109":{"tf":1.0},"114":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"131":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"40":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"133":{"tf":1.7320508075688772}}}}},"df":4,"docs":{"44":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":15,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":2.23606797749979},"110":{"tf":2.449489742783178},"113":{"tf":1.7320508075688772},"114":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"44":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":2.0},"88":{"tf":2.449489742783178}}}}},"t":{"df":4,"docs":{"0":{"tf":1.0},"53":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"103":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}},"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":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"1":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"80":{"tf":1.0},"87":{"tf":1.0}},"n":{"df":4,"docs":{"109":{"tf":1.7320508075688772},"111":{"tf":1.0},"116":{"tf":1.0},"87":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"73":{"tf":1.0},"80":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":6,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"32":{"tf":1.0},"80":{"tf":2.449489742783178},"81":{"tf":1.0},"88":{"tf":1.4142135623730951}},"e":{"df":2,"docs":{"5":{"tf":1.0},"88":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"84":{"tf":1.0}}}},"o":{"d":{"df":10,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"3":{"tf":1.4142135623730951},"55":{"tf":1.0},"59":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"h":{"df":5,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"93":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"78":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"5":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"64":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"80":{"tf":2.23606797749979},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"53":{"tf":1.0}},"l":{"df":10,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":3.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"r":{"d":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":4,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.0},"109":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"106":{"tf":1.0},"109":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":9,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":1.4142135623730951},"64":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.7320508075688772}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":4,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.0},"88":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":12,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"13":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"109":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.7320508075688772}}}}},"o":{"d":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":2,"docs":{"110":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"95":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"#":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"110":{"tf":1.0},"85":{"tf":1.0}}}}}},"i":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}}},".":{"df":1,"docs":{"116":{"tf":1.0}}},"6":{"8":{"6":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":2,"docs":{"106":{"tf":1.0},"37":{"tf":1.0}},"e":{"a":{"df":4,"docs":{"109":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"87":{"tf":1.0}},"l":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":6,"docs":{"102":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"40":{"tf":1.0},"63":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"80":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":13,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"41":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":2.23606797749979},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.7320508075688772}}}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"81":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{".":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":16,"docs":{"104":{"tf":2.0},"106":{"tf":3.4641016151377544},"109":{"tf":2.449489742783178},"116":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"53":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.7320508075688772},"80":{"tf":6.082762530298219},"83":{"tf":2.0},"84":{"tf":1.0},"87":{"tf":2.449489742783178},"88":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"df":1,"docs":{"109":{"tf":1.0}}},"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"40":{"tf":1.0},"85":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":10,"docs":{"16":{"tf":1.0},"22":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"!":{"=":{"!":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"j":{"df":3,"docs":{"104":{"tf":2.449489742783178},"116":{"tf":1.0},"96":{"tf":1.0}},"s":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"#":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"75":{"tf":1.4142135623730951}}}},"i":{"c":{"df":4,"docs":{"103":{"tf":1.0},"110":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":2,"docs":{"43":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":4,"docs":{"33":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"45":{"tf":1.0},"51":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"109":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"42":{"tf":1.0},"88":{"tf":1.0}}}}},"r":{"a":{"df":3,"docs":{"18":{"tf":1.0},"24":{"tf":1.0},"5":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"109":{"tf":2.0},"114":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"i":{"df":2,"docs":{"32":{"tf":1.0},"88":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"102":{"tf":1.7320508075688772},"104":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"80":{"tf":2.8284271247461903},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772},"87":{"tf":3.1622776601683795},"88":{"tf":2.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"11":{"tf":1.4142135623730951},"13":{"tf":2.8284271247461903},"32":{"tf":2.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"8":{"tf":2.449489742783178}}},"n":{"c":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"53":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"33":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":2.449489742783178}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"80":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.0},"4":{"tf":1.0},"50":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}},"n":{"df":9,"docs":{"103":{"tf":1.4142135623730951},"113":{"tf":1.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"69":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":11,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"50":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"45":{"tf":1.4142135623730951},"63":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"5":{"tf":1.0},"6":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":11,"docs":{"0":{"tf":1.4142135623730951},"109":{"tf":1.0},"3":{"tf":1.7320508075688772},"4":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0}}}}},"t":{"'":{"df":19,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"110":{"tf":2.0},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"38":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.4142135623730951},"76":{"tf":1.0},"78":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.7320508075688772}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"110":{"tf":1.7320508075688772},"122":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":5,"docs":{"102":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"df":8,"docs":{"106":{"tf":1.0},"113":{"tf":1.0},"36":{"tf":1.4142135623730951},"76":{"tf":1.0},"80":{"tf":3.4641016151377544},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"88":{"tf":2.449489742783178}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}},"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}}},"o":{"b":{"df":2,"docs":{"110":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":4.0}}}},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"75":{"tf":1.0}},"s":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"#":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":10,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"44":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"80":{"tf":2.6457513110645907},"87":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"104":{"tf":1.0},"42":{"tf":1.0},"76":{"tf":1.0}}}},"x":{"df":2,"docs":{"82":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":2,"docs":{"51":{"tf":1.0},"63":{"tf":1.0}}}},"y":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"n":{"d":{"df":11,"docs":{"110":{"tf":1.0},"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"84":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"114":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":5,"docs":{"110":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"127":{"tf":1.4142135623730951},"3":{"tf":1.0},"55":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"80":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"80":{"tf":1.0}},"r":{"df":8,"docs":{"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"114":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"46":{"tf":1.0},"47":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}}}}},":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":2.0}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"2":{"0":{"2":{"3":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":4,"docs":{"32":{"tf":1.4142135623730951},"35":{"tf":1.0},"38":{"tf":2.0},"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"128":{"tf":1.0},"51":{"tf":1.4142135623730951}}}},"v":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"80":{"tf":2.0},"81":{"tf":2.0},"87":{"tf":1.4142135623730951}}}},"t":{"'":{"df":5,"docs":{"109":{"tf":1.0},"116":{"tf":1.0},"37":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":15,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":3,"docs":{"110":{"tf":1.0},"19":{"tf":1.0},"25":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"k":{"df":3,"docs":{"110":{"tf":1.0},"51":{"tf":1.0},"88":{"tf":1.0}}},"t":{":":{"df":0,"docs":{},"j":{"df":1,"docs":{"51":{"tf":1.0}}},"r":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"47":{"tf":2.0},"49":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"54":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"72":{"tf":1.0},"80":{"tf":2.23606797749979},"88":{"tf":1.4142135623730951}}}}}},"l":{"d":{"b":{"df":2,"docs":{"35":{"tf":2.23606797749979},"38":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"a":{"d":{"df":5,"docs":{"68":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"!":{".":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"74":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"'":{"df":1,"docs":{"88":{"tf":1.0}}},"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"80":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"?":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"!":{".":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"74":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"103":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}}}}}},"df":28,"docs":{"102":{"tf":2.23606797749979},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"44":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":3.0},"64":{"tf":1.0},"65":{"tf":3.0},"67":{"tf":4.0},"68":{"tf":1.0},"69":{"tf":3.1622776601683795},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":2.23606797749979},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"78":{"tf":2.6457513110645907},"80":{"tf":8.12403840463596},"81":{"tf":2.449489742783178},"82":{"tf":1.4142135623730951},"84":{"tf":3.4641016151377544},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":6.48074069840786},"88":{"tf":3.7416573867739413},"89":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"s":{"!":{".":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"51":{"tf":1.0}}},"t":{"df":6,"docs":{"103":{"tf":1.0},"133":{"tf":1.0},"45":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"o":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"[":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"]":{"!":{"=":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"72":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":7,"docs":{"106":{"tf":1.0},"109":{"tf":1.4142135623730951},"113":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"69":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}}},"s":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}},"t":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"w":{"df":1,"docs":{"100":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"13":{"tf":2.0}}}},"m":{"a":{"c":{"df":2,"docs":{"40":{"tf":1.0},"45":{"tf":1.4142135623730951}},"o":{"df":1,"docs":{"37":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"109":{"tf":1.4142135623730951},"111":{"tf":1.0},"19":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"105":{"tf":1.4142135623730951},"5":{"tf":1.0},"51":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":14,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"55":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"#":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"50":{"tf":1.0},"87":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":2,"docs":{"106":{"tf":1.0},"38":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"k":{"!":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":4,"docs":{"69":{"tf":1.0},"75":{"tf":1.0},"92":{"tf":1.7320508075688772},"95":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"102":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":4.242640687119285},"82":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"87":{"tf":3.4641016151377544},"88":{"tf":2.449489742783178},"96":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"75":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"106":{"tf":1.0},"109":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"38":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"73":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0}},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"67":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"133":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"127":{"tf":1.0},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"110":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.23606797749979}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"80":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"78":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":1,"docs":{"53":{"tf":2.0}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}},"s":{"c":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"92":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"103":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"63":{"tf":1.0}}}}},"x":{"df":2,"docs":{"36":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951}}}},"o":{"d":{"df":1,"docs":{"109":{"tf":1.0}},"e":{"df":4,"docs":{"103":{"tf":1.0},"113":{"tf":1.0},"37":{"tf":1.0},"95":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"109":{"tf":2.0}},"i":{"df":7,"docs":{"109":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"67":{"tf":1.0},"80":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":26,"docs":{"101":{"tf":1.0},"102":{"tf":2.8284271247461903},"103":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"105":{"tf":2.0},"106":{"tf":3.7416573867739413},"109":{"tf":2.0},"110":{"tf":2.0},"111":{"tf":1.7320508075688772},"114":{"tf":1.0},"116":{"tf":1.7320508075688772},"20":{"tf":1.0},"26":{"tf":1.0},"67":{"tf":1.7320508075688772},"74":{"tf":1.0},"76":{"tf":2.23606797749979},"78":{"tf":1.7320508075688772},"80":{"tf":2.449489742783178},"81":{"tf":2.23606797749979},"84":{"tf":1.4142135623730951},"87":{"tf":2.23606797749979},"88":{"tf":4.358898943540674},"89":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772}},"e":{"'":{"df":1,"docs":{"110":{"tf":1.0}}},".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"114":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":3.3166247903554},"81":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":8,"docs":{"104":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.0}},"e":{"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":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"104":{"tf":2.0},"105":{"tf":1.0},"106":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":3,"docs":{"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":14,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":2.23606797749979},"113":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"111":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"132":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"85":{"tf":1.0},"88":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"47":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"28":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":6,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"29":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":2.449489742783178}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"32":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":8,"docs":{"63":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":2.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"df":1,"docs":{"80":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"29":{"tf":1.0},"38":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":13,"docs":{"123":{"tf":1.0},"125":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"19":{"tf":1.0},"25":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}}}}}},"w":{"df":9,"docs":{"109":{"tf":2.0},"127":{"tf":1.0},"29":{"tf":1.0},"51":{"tf":1.7320508075688772},"6":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}}},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"46":{"tf":1.0},"48":{"tf":1.7320508075688772}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":13,"docs":{"12":{"tf":1.0},"13":{"tf":2.8284271247461903},"15":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"51":{"tf":1.0},"7":{"tf":1.0},"76":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"df":11,"docs":{"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"26":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":2.23606797749979},"38":{"tf":3.1622776601683795},"44":{"tf":1.0},"63":{"tf":1.0},"8":{"tf":1.0}},"j":{"df":2,"docs":{"40":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}},"n":{"df":1,"docs":{"88":{"tf":1.0}},"e":{"df":1,"docs":{"80":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":11,"docs":{"102":{"tf":1.0},"116":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"45":{"tf":1.0},"63":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"88":{"tf":3.1622776601683795}},"e":{"#":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}},"y":{"#":{"c":{"df":0,"docs":{},"r":{"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":{}}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"76":{"tf":1.4142135623730951},"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":1,"docs":{"78":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"df":4,"docs":{"37":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.0},"8":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"85":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"106":{"tf":2.0},"108":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"13":{"tf":2.23606797749979}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"k":{"df":1,"docs":{"85":{"tf":1.0}}},"l":{"d":{"df":3,"docs":{"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":2.0},"80":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"c":{"df":3,"docs":{"35":{"tf":1.0},"45":{"tf":1.0},"85":{"tf":1.0}}},"df":7,"docs":{"109":{"tf":1.0},"116":{"tf":1.0},"15":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"29":{"tf":1.0},"67":{"tf":1.0},"81":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"29":{"tf":1.0}}}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"2":{"4":{"4":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":8,"docs":{"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.7320508075688772},"84":{"tf":2.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"103":{"tf":1.0},"29":{"tf":1.0},"43":{"tf":1.0},"52":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"109":{"tf":2.0},"69":{"tf":1.4142135623730951},"80":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"113":{"tf":1.0},"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"67":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"76":{"tf":1.0},"93":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"t":{"df":6,"docs":{"109":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"45":{"tf":2.0},"84":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"85":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"84":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"4":{"tf":1.0},"87":{"tf":1.0}}}}}}}}},"x":{"c":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"19":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"5":{"tf":1.0},"51":{"tf":2.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"35":{"tf":1.7320508075688772},"45":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"46":{"tf":1.0},"55":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}},"r":{"df":1,"docs":{"109":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"109":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}},"s":{"df":7,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"35":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":3,"docs":{"106":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.449489742783178}}}}},"t":{"(":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":11,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.7320508075688772},"18":{"tf":1.0},"24":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.449489742783178},"82":{"tf":1.7320508075688772},"86":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.0}},"i":{"df":2,"docs":{"82":{"tf":1.0},"84":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":14,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"108":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"109":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":1.0}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":10,"docs":{"102":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"29":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":2.0},"80":{"tf":3.605551275463989},"88":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"29":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951}}}}}}}}},"c":{"df":1,"docs":{"47":{"tf":1.7320508075688772}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":2,"docs":{"72":{"tf":1.0},"88":{"tf":1.0}}}},"r":{"df":2,"docs":{"109":{"tf":1.0},"125":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"40":{"tf":1.0},"44":{"tf":1.0},"63":{"tf":1.7320508075688772},"69":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"133":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"65":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"67":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"122":{"tf":1.0},"125":{"tf":1.0}}},"y":{"df":1,"docs":{"133":{"tf":1.0}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"27":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"1":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"103":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"114":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"78":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":3.1622776601683795}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"|":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"81":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"m":{"@":{"7":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"19":{"tf":1.7320508075688772},"25":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"45":{"tf":1.0},"51":{"tf":1.7320508075688772},"8":{"tf":2.0},"9":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"28":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"30":{"tf":1.0},"38":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"69":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"92":{"tf":1.0}}}}},"df":1,"docs":{"84":{"tf":1.0}}}}},"r":{"df":6,"docs":{"127":{"tf":1.4142135623730951},"49":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.7320508075688772},"62":{"tf":1.0},"75":{"tf":1.0}},"e":{"df":3,"docs":{"102":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"105":{"tf":1.0},"54":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"87":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"37":{"tf":1.0},"7":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}}}},"s":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.4142135623730951}},"s":{"df":3,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.0},"43":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"109":{"tf":1.0},"4":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"53":{"tf":1.4142135623730951},"73":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"110":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"45":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"113":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"df":8,"docs":{"102":{"tf":1.0},"110":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}}}}}}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"42":{"tf":1.0},"45":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"35":{"tf":1.7320508075688772}},"f":{"df":1,"docs":{"44":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"40":{"tf":1.7320508075688772},"42":{"tf":1.0},"44":{"tf":2.0},"45":{"tf":2.0}},"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":{"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"35":{"tf":1.0},"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"37":{"tf":1.0},"4":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":7,"docs":{"28":{"tf":2.0},"29":{"tf":1.7320508075688772},"3":{"tf":1.0},"30":{"tf":1.0},"45":{"tf":1.7320508075688772},"54":{"tf":1.0},"80":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"}":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"80":{"tf":2.23606797749979},"82":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"75":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":10,"docs":{"102":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":2.23606797749979},"4":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.7320508075688772},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"80":{"tf":2.0}}}},"df":0,"docs":{}}}},"u":{"b":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"46":{"tf":1.0},"49":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"51":{"tf":2.0}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"68":{"tf":1.0},"75":{"tf":1.4142135623730951},"82":{"tf":1.0},"88":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"75":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"49":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":6,"docs":{"111":{"tf":1.0},"114":{"tf":1.0},"45":{"tf":1.0},"63":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"106":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"w":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"78":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}},"df":1,"docs":{"35":{"tf":1.4142135623730951}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.0}}},"t":{"df":1,"docs":{"87":{"tf":1.0}}}},"d":{"df":4,"docs":{"106":{"tf":1.0},"51":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":1.7320508075688772}}},"df":0,"docs":{},"l":{"df":9,"docs":{"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"76":{"tf":1.0},"80":{"tf":2.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"92":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"35":{"tf":1.0},"63":{"tf":1.4142135623730951}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"110":{"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":7,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":2,"docs":{"113":{"tf":1.0},"45":{"tf":2.23606797749979}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"114":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"75":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":2,"docs":{"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"64":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"75":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"108":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"38":{"tf":1.0},"66":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":2.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"110":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"88":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"102":{"tf":1.0},"84":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"80":{"tf":1.0}},"p":{"df":1,"docs":{"92":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"29":{"tf":1.0},"69":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.0},"115":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}}}},"df":2,"docs":{"74":{"tf":1.0},"87":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":8,"docs":{"124":{"tf":2.0},"125":{"tf":2.8284271247461903},"33":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"102":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"109":{"tf":1.0},"80":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"127":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"c":{"df":6,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":2.23606797749979},"111":{"tf":2.0},"113":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"127":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"5":{"tf":1.0},"51":{"tf":1.4142135623730951}}},"y":{"'":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":1.0},"67":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"53":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":1,"docs":{"53":{"tf":1.0}}}}},"q":{"df":1,"docs":{"109":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"102":{"tf":1.4142135623730951},"104":{"tf":2.23606797749979},"38":{"tf":2.0},"51":{"tf":2.0},"67":{"tf":1.4142135623730951},"74":{"tf":2.449489742783178},"75":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.0},"87":{"tf":2.23606797749979},"88":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"104":{"tf":1.0},"109":{"tf":1.7320508075688772},"110":{"tf":2.0},"80":{"tf":1.0},"87":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"80":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"v":{"df":8,"docs":{"103":{"tf":2.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"63":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.23606797749979}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":10,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"75":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":3.0},"82":{"tf":1.7320508075688772},"84":{"tf":2.23606797749979},"87":{"tf":2.23606797749979},"88":{"tf":2.6457513110645907}},"e":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"75":{"tf":1.0},"80":{"tf":2.23606797749979},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":4.123105625617661}}}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"110":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"39":{"tf":1.0},"65":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"74":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":8,"docs":{"109":{"tf":1.4142135623730951},"114":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"80":{"tf":4.242640687119285},"82":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"s":{"df":7,"docs":{"68":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"f":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"i":{"d":{"df":2,"docs":{"81":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"110":{"tf":1.0},"87":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":6,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"37":{"tf":1.0},"87":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"#":{"2":{"7":{"8":{"0":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"8":{"df":1,"docs":{"62":{"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"28":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"32":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"46":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"41":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"33":{"tf":1.0},"41":{"tf":1.4142135623730951}},"e":{"=":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"c":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"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":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"&":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":2,"docs":{"33":{"tf":1.0},"43":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":35,"docs":{"0":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"133":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":2.0},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":2.0},"26":{"tf":1.0},"29":{"tf":2.6457513110645907},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.7320508075688772},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"81":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}},"1":{"df":1,"docs":{"84":{"tf":1.0}}},"2":{"df":1,"docs":{"84":{"tf":1.0}}},"df":9,"docs":{"28":{"tf":1.0},"29":{"tf":1.0},"78":{"tf":2.6457513110645907},"80":{"tf":3.4641016151377544},"81":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"89":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}}}},"n":{"df":19,"docs":{"103":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.7320508075688772},"19":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":1.7320508075688772},"25":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"51":{"tf":2.449489742783178},"7":{"tf":1.0},"9":{"tf":1.7320508075688772}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":3,"docs":{"63":{"tf":1.0},"67":{"tf":2.0},"93":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":2.8284271247461903},"111":{"tf":1.0},"35":{"tf":1.0},"80":{"tf":1.0},"96":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":2.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"110":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"11":{"tf":1.7320508075688772},"129":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"35":{"tf":2.23606797749979},"36":{"tf":1.4142135623730951},"45":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":2.23606797749979},"69":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":11,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"45":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":4,"docs":{"76":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":2.449489742783178}}}}}},">":{"<":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"80":{"tf":2.6457513110645907}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"110":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"110":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"109":{"tf":2.0},"40":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":17,"docs":{"104":{"tf":1.0},"109":{"tf":2.23606797749979},"113":{"tf":1.0},"114":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.4142135623730951},"87":{"tf":2.0},"88":{"tf":1.7320508075688772},"92":{"tf":1.0}},"n":{"df":1,"docs":{"113":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"32":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"df":2,"docs":{"35":{"tf":1.0},"53":{"tf":1.0}}}},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"124":{"tf":1.0}}}}}},"df":1,"docs":{"46":{"tf":1.0}}}}}},"n":{"d":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"74":{"tf":1.0},"80":{"tf":1.7320508075688772},"87":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772}}}}}},"t":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"df":13,"docs":{"110":{"tf":1.0},"113":{"tf":1.4142135623730951},"15":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"51":{"tf":1.0}}}}}},"f":{"c":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"?":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"80":{"tf":2.0}}}}}},"df":1,"docs":{"80":{"tf":3.4641016151377544}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"114":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"109":{"tf":1.0},"28":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":1.0},"53":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":9,"docs":{"104":{"tf":1.7320508075688772},"113":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"44":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"67":{"tf":2.449489742783178},"69":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"63":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.4142135623730951}},"i":{"df":2,"docs":{"45":{"tf":1.0},"84":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"109":{"tf":1.0},"81":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":5,"docs":{"0":{"tf":1.0},"133":{"tf":1.0},"51":{"tf":1.4142135623730951},"69":{"tf":1.0},"80":{"tf":1.7320508075688772}}}}},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":1,"docs":{"84":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"102":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"80":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":6,"docs":{"16":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"22":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}},"i":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0}}}},"v":{"df":1,"docs":{"109":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"109":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":2.23606797749979}}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"51":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":15,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"106":{"tf":2.0},"109":{"tf":4.795831523312719},"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"113":{"tf":2.0},"114":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":2.449489742783178},"90":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"[":{"0":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.0}}}},"c":{"df":2,"docs":{"35":{"tf":1.0},"76":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"80":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":6,"docs":{"109":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"54":{"tf":1.0}},"i":{"df":5,"docs":{"106":{"tf":2.0},"74":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"44":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"c":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"109":{"tf":2.0},"63":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"16":{"tf":1.0},"22":{"tf":1.0}}}}}},"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.7320508075688772},"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"78":{"tf":1.0}}}},"t":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":6,"docs":{"106":{"tf":1.4142135623730951},"109":{"tf":2.23606797749979},"116":{"tf":1.0},"80":{"tf":2.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":5,"docs":{"110":{"tf":1.4142135623730951},"114":{"tf":1.0},"69":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":2.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"72":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":2.23606797749979},"88":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"35":{"tf":1.7320508075688772},"45":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":4,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"108":{"tf":1.0},"29":{"tf":2.8284271247461903},"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"104":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"131":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"[":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"]":{"!":{"=":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"87":{"tf":1.0}}}}}}},":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},">":{"<":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"51":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.7320508075688772},"80":{"tf":3.872983346207417},"81":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":2,"docs":{"105":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":2.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":2.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"63":{"tf":1.0},"72":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":16,"docs":{"1":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"63":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":2.23606797749979},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":2.0},"89":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"51":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"g":{"df":2,"docs":{"82":{"tf":1.0},"87":{"tf":1.4142135623730951}},"o":{"df":1,"docs":{"87":{"tf":1.0}}},"r":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}}},"df":2,"docs":{"82":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"w":{"c":{"'":{"df":1,"docs":{"88":{"tf":1.0}}},"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"114":{"tf":1.0},"45":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"y":{"b":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"104":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"80":{"tf":2.0},"87":{"tf":2.6457513110645907},"88":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":9,"docs":{"103":{"tf":1.4142135623730951},"110":{"tf":1.0},"37":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":1,"docs":{"32":{"tf":1.0}},"l":{"df":3,"docs":{"45":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"106":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":6,"docs":{"0":{"tf":1.0},"106":{"tf":1.0},"45":{"tf":1.0},"80":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":1,"docs":{"105":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":4,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"35":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"133":{"tf":1.7320508075688772},"54":{"tf":1.0},"80":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":4,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"65":{"tf":1.7320508075688772},"80":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"72":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"80":{"tf":1.0},"88":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"/":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"109":{"tf":3.1622776601683795},"110":{"tf":1.0},"114":{"tf":1.0},"45":{"tf":1.4142135623730951},"53":{"tf":1.0},"80":{"tf":3.1622776601683795},"92":{"tf":1.0}},"e":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},">":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"2":{"df":1,"docs":{"109":{"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":{"109":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"a":{"d":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}},"df":1,"docs":{"109":{"tf":3.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"40":{"tf":1.0},"43":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"t":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}},"df":22,"docs":{"15":{"tf":1.4142135623730951},"16":{"tf":2.23606797749979},"17":{"tf":2.23606797749979},"18":{"tf":3.7416573867739413},"19":{"tf":3.4641016151377544},"20":{"tf":4.0},"21":{"tf":1.4142135623730951},"22":{"tf":2.23606797749979},"23":{"tf":2.23606797749979},"24":{"tf":3.7416573867739413},"25":{"tf":3.4641016151377544},"26":{"tf":4.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"51":{"tf":2.0},"78":{"tf":2.6457513110645907},"80":{"tf":3.4641016151377544},"81":{"tf":2.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"]":{"(":{"#":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"x":{"df":0,"docs":{},"t":{"(":{"*":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"49":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":2,"docs":{"110":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"111":{"tf":1.0},"115":{"tf":1.0},"84":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"df":0,"docs":{}}},"k":{"df":2,"docs":{"108":{"tf":1.0},"88":{"tf":1.0}}}},"r":{"d":{"df":4,"docs":{"110":{"tf":1.0},"28":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}}},"a":{"d":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":1,"docs":{"88":{"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.7320508075688772}},"}":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"!":{"=":{"!":{"$":{"df":0,"docs":{},"{":{"_":{"_":{"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":0,"docs":{},"e":{"df":0,"docs":{},"}":{"!":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"!":{"=":{"!":{"$":{"df":0,"docs":{},"{":{"_":{"_":{"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":0,"docs":{},"e":{"df":0,"docs":{},"}":{"!":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"?":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"82":{"tf":1.0},"84":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"110":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":7,"docs":{"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"116":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"49":{"tf":1.0},"80":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":8,"docs":{"102":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"46":{"tf":1.0},"80":{"tf":2.23606797749979},"84":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":12,"docs":{"106":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"53":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.4142135623730951},"91":{"tf":1.0},"96":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":2,"docs":{"115":{"tf":1.0},"120":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"32":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"35":{"tf":1.0}}}}},"o":{"(":{"df":0,"docs":{},"i":{".":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"p":{"df":2,"docs":{"105":{"tf":1.0},"87":{"tf":1.0}},"i":{"c":{"df":2,"docs":{"123":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"!":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":7,"docs":{"33":{"tf":2.23606797749979},"34":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":2.23606797749979},"42":{"tf":2.0},"43":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951}}},"k":{"df":2,"docs":{"0":{"tf":1.0},"4":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":5,"docs":{"67":{"tf":1.0},"80":{"tf":2.8284271247461903},"82":{"tf":1.4142135623730951},"84":{"tf":2.0},"87":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"114":{"tf":1.7320508075688772}}}},"i":{"df":1,"docs":{"88":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":8,"docs":{"109":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"d":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"122":{"tf":1.0},"125":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"45":{"tf":1.0},"53":{"tf":1.0},"80":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":11,"docs":{"109":{"tf":2.23606797749979},"15":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"38":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"69":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":19,"docs":{"102":{"tf":1.7320508075688772},"103":{"tf":1.0},"104":{"tf":2.449489742783178},"106":{"tf":2.0},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"29":{"tf":2.0},"38":{"tf":2.0},"52":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":2.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"88":{"tf":3.0},"89":{"tf":1.0},"92":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"c":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"u":{"df":2,"docs":{"19":{"tf":1.0},"25":{"tf":1.0}},"i":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"42":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.0}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"35":{"tf":1.0}}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}},"r":{"df":2,"docs":{"45":{"tf":1.0},"76":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"132":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"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":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"67":{"tf":1.0},"68":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"47":{"tf":2.0},"49":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"127":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0}},"e":{"=":{"1":{"df":2,"docs":{"16":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"116":{"tf":1.4142135623730951},"51":{"tf":1.0},"7":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"74":{"tf":1.4142135623730951},"84":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"114":{"tf":1.0},"92":{"tf":1.0}}}},"df":41,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"116":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":2.0},"20":{"tf":3.1622776601683795},"26":{"tf":3.1622776601683795},"27":{"tf":1.0},"29":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"41":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"45":{"tf":2.0},"53":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":2.0},"80":{"tf":4.58257569495584},"81":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":2.449489742783178},"85":{"tf":1.7320508075688772},"87":{"tf":2.6457513110645907},"88":{"tf":2.23606797749979},"91":{"tf":1.0},"92":{"tf":2.0},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":4,"docs":{"80":{"tf":2.0},"82":{"tf":1.0},"87":{"tf":3.3166247903554},"88":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":3,"docs":{"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"v":{"1":{"4":{".":{"1":{"9":{".":{"0":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"1":{"8":{".":{"0":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"87":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":5,"docs":{"103":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"43":{"tf":1.0},"85":{"tf":1.0}}}},"r":{"df":1,"docs":{"109":{"tf":1.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"106":{"tf":1.0},"29":{"tf":1.4142135623730951},"33":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"13":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"13":{"tf":2.23606797749979},"46":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0}}}}},"u":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"i":{"a":{"df":8,"docs":{"109":{"tf":2.0},"110":{"tf":1.0},"111":{"tf":1.0},"13":{"tf":1.0},"43":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"42":{"tf":1.4142135623730951},"43":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"109":{"tf":1.0},"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"32":{"tf":1.0}}},"/":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"32":{"tf":1.0},"38":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":4,"docs":{"11":{"tf":1.0},"32":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"75":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"78":{"tf":2.449489742783178},"80":{"tf":7.810249675906654},"87":{"tf":1.7320508075688772}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}}}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"85":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"4":{"tf":1.0},"80":{"tf":1.7320508075688772},"84":{"tf":2.0},"96":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"33":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951}}}},"t":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"92":{"tf":1.7320508075688772},"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":0,"docs":{}},"y":{"df":9,"docs":{"0":{"tf":1.0},"133":{"tf":1.0},"41":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.0},"85":{"tf":1.0},"87":{"tf":1.7320508075688772}}}},"df":1,"docs":{"32":{"tf":1.0}},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.0}}}},"r":{"df":1,"docs":{"80":{"tf":1.0}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"/":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"5":{"tf":1.4142135623730951}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"'":{"df":5,"docs":{"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"78":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.4142135623730951}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"87":{"tf":1.0}}}},"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"[":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"85":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}}}},"df":42,"docs":{"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"109":{"tf":2.449489742783178},"110":{"tf":2.0},"111":{"tf":1.0},"113":{"tf":2.449489742783178},"114":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":3.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":3.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":2.0},"78":{"tf":1.4142135623730951},"80":{"tf":4.0},"81":{"tf":2.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":2.0},"85":{"tf":2.0},"87":{"tf":3.4641016151377544},"88":{"tf":3.1622776601683795},"89":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"125":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"55":{"tf":1.0},"57":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":3,"docs":{"43":{"tf":1.0},"6":{"tf":1.0},"80":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"73":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"106":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"88":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"47":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"114":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"38":{"tf":1.0},"74":{"tf":1.0},"84":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"18":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"76":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"d":{"df":5,"docs":{"109":{"tf":1.4142135623730951},"114":{"tf":1.0},"73":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":12,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"6":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"30":{"tf":1.0},"35":{"tf":1.0}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"14":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"88":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"s":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"38":{"tf":1.4142135623730951}},"i":{"c":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"d":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"76":{"tf":1.0},"88":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"109":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"67":{"tf":1.0},"87":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"x":{".":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"z":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}}},"8":{"6":{"_":{"6":{"4":{"df":2,"docs":{"47":{"tf":2.0},"49":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"40":{"tf":1.0},"45":{"tf":2.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"18":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"83":{"tf":1.0}},"x":{"df":1,"docs":{"104":{"tf":1.0}},"x":{"df":1,"docs":{"75":{"tf":1.0}},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"v":{"df":1,"docs":{"51":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}}},"z":{"df":1,"docs":{"131":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"breadcrumbs":{"root":{"0":{".":{"1":{".":{"0":{"df":1,"docs":{"124":{"tf":1.7320508075688772}}},"1":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}},"0":{":":{"0":{"7":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":1,"docs":{"35":{"tf":1.4142135623730951}},"x":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"4":{"0":{"d":{"0":{"d":{"b":{"4":{"b":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{".":{"0":{".":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"35":{"tf":1.0}}},"6":{":":{"0":{"0":{":":{"0":{"7":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"13":{"tf":2.8284271247461903}}},"df":3,"docs":{"109":{"tf":1.7320508075688772},"45":{"tf":1.0},"80":{"tf":1.0}}},"2":{"/":{"3":{"/":{"4":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"2":{"2":{"0":{"9":{"1":{"9":{"1":{"7":{"1":{"6":{"0":{"8":{"6":{"2":{"9":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"4":{"1":{"6":{"2":{"4":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"1":{"9":{"8":{"6":{"1":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"3":{"0":{"0":{"2":{"2":{"0":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"2":{"9":{"7":{"6":{"5":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{"3":{"2":{"7":{"7":{"2":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"2":{"6":{"5":{"6":{"4":{"6":{"8":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"5":{"5":{"3":{"2":{"1":{"5":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{"5":{"0":{"7":{"3":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"2":{"3":{"2":{"2":{"8":{"1":{"4":{"6":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"5":{"8":{"3":{"2":{"7":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"2":{"0":{"7":{"3":{"9":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"1":{"8":{"0":{"9":{"1":{"5":{"3":{"2":{"6":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"1":{"1":{"0":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{"df":1,"docs":{"35":{"tf":1.0}}},"2":{"df":1,"docs":{"35":{"tf":1.0}}},"3":{"df":1,"docs":{"35":{"tf":1.0}}},"4":{"df":1,"docs":{"35":{"tf":1.0}}},"5":{"df":1,"docs":{"35":{"tf":1.0}}},"6":{"df":1,"docs":{"35":{"tf":1.0}}},"7":{"df":1,"docs":{"35":{"tf":1.0}}},"_":{"1":{"1":{".":{"3":{"2":{".":{"0":{"6":{"_":{"9":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"3":{"a":{"6":{"3":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"109":{"tf":1.0},"80":{"tf":1.0}}},"3":{"1":{"5":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"83":{"tf":1.0}}},"5":{"7":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"3":{"8":{".":{"0":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{".":{"0":{"df":2,"docs":{"72":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"9":{"2":{"2":{"9":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"47":{"tf":1.0}}},"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"52":{"tf":1.0}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"_":{".":{"d":{"(":{"_":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"_":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"(":{"_":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"_":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"29":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"_":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"0":{"_":{"_":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":2.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"a":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}}},".":{"df":0,"docs":{},"k":{".":{"a":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"6":{"4":{"df":2,"docs":{"47":{"tf":2.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"65":{"tf":1.0},"80":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"v":{"df":7,"docs":{"104":{"tf":1.0},"109":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.0},"69":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"74":{"tf":1.0},"75":{"tf":2.0},"88":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"104":{"tf":1.0},"88":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"80":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"51":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"109":{"tf":1.0},"65":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"80":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"46":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"df":7,"docs":{"103":{"tf":1.0},"109":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":2.23606797749979},"52":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"=":{"0":{"df":0,"docs":{},"x":{"7":{"0":{"0":{"0":{"0":{"c":{"c":{"6":{"6":{"5":{"6":{"0":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"51":{"tf":1.0}}}}}}},"df":4,"docs":{"103":{"tf":1.0},"110":{"tf":1.0},"51":{"tf":1.0},"80":{"tf":1.0}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"75":{"tf":1.0},"80":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"80":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"101":{"tf":1.4142135623730951},"105":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.4142135623730951},"75":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"{":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"|":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"36":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"4":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":3,"docs":{"53":{"tf":1.0},"80":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"109":{"tf":1.0},"5":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.4142135623730951}},"i":{"df":3,"docs":{"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0}}}},"z":{"df":3,"docs":{"11":{"tf":1.0},"32":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"103":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"p":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":1,"docs":{"45":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"38":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"80":{"tf":1.0}},"i":{"df":0,"docs":{},"x":{"df":6,"docs":{"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951}},"i":{"c":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.0}}},"df":7,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"78":{"tf":2.23606797749979},"80":{"tf":2.0},"84":{"tf":1.4142135623730951}}},"y":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"109":{"tf":2.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"114":{"tf":1.0},"51":{"tf":1.0}}}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"109":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"70":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"g":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"80":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"l":{"df":3,"docs":{"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.7320508075688772},"133":{"tf":1.0}}},"s":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951}}}},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"76":{"tf":1.0},"81":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"76":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"76":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"110":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"81":{"tf":2.449489742783178},"84":{"tf":3.1622776601683795},"87":{"tf":1.7320508075688772},"88":{"tf":1.0}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"109":{"tf":2.23606797749979},"92":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}}},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":2,"docs":{"85":{"tf":2.8284271247461903},"88":{"tf":2.449489742783178}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"38":{"tf":2.0}}},"df":0,"docs":{}}}},"df":2,"docs":{"38":{"tf":2.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"103":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0}}}},"df":1,"docs":{"46":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"8":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}}},"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"80":{"tf":1.0},"87":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{")":{"[":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"1":{"1":{"8":{"0":{"2":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":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":{"73":{"tf":1.0},"75":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"104":{"tf":1.7320508075688772}}}},"df":2,"docs":{"104":{"tf":1.0},"106":{"tf":2.0}}},"s":{"df":0,"docs":{},"e":{"df":9,"docs":{"110":{"tf":1.0},"114":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.0},"90":{"tf":1.0}}},"i":{"c":{"df":6,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"63":{"tf":1.0},"80":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":2,"docs":{"133":{"tf":1.0},"53":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"102":{"tf":1.0},"35":{"tf":1.0},"42":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"{":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"|":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"20":{"tf":2.449489742783178},"26":{"tf":2.449489742783178},"84":{"tf":1.0},"87":{"tf":2.0},"95":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"j":{"df":1,"docs":{"48":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.0},"51":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"104":{"tf":1.0},"36":{"tf":1.7320508075688772},"69":{"tf":1.0},"93":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"85":{"tf":1.0},"97":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"38":{"tf":1.0},"45":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.0}}}}},"d":{"df":4,"docs":{"114":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":3,"docs":{"72":{"tf":1.0},"80":{"tf":2.449489742783178},"88":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"80":{"tf":3.1622776601683795},"87":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"n":{"d":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"127":{"tf":1.0}},"h":{"df":3,"docs":{"76":{"tf":1.0},"84":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"40":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"113":{"tf":1.4142135623730951},"51":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"64":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"u":{"df":1,"docs":{"35":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}}}}},"g":{"df":3,"docs":{"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"51":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{":":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"32":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"j":{"df":1,"docs":{"37":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":33,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.7320508075688772},"14":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"20":{"tf":2.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"26":{"tf":2.0},"29":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":2.0},"34":{"tf":1.0},"35":{"tf":2.449489742783178},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":2.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":2.0},"9":{"tf":2.0}}},"df":0,"docs":{},"t":{"df":4,"docs":{"45":{"tf":1.0},"47":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"87":{"tf":1.0}}}},"d":{"df":0,"docs":{},"l":{"df":5,"docs":{"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}},"df":4,"docs":{"110":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"87":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"c":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"29":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":7,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"46":{"tf":1.0},"49":{"tf":2.449489742783178}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":4,"docs":{"16":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"18":{"tf":1.7320508075688772},"20":{"tf":3.1622776601683795},"24":{"tf":1.7320508075688772},"26":{"tf":3.1622776601683795},"28":{"tf":2.449489742783178},"30":{"tf":1.7320508075688772},"52":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"48":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"103":{"tf":1.0},"104":{"tf":2.449489742783178},"105":{"tf":1.0},"106":{"tf":1.0},"28":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":5,"docs":{"38":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"74":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"n":{"c":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":13,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"19":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.0},"51":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":2.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"81":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":2.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"a":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":10,"docs":{"109":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"29":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":1.0},"41":{"tf":1.0},"51":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{"/":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"40":{"tf":1.0},"42":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":3,"docs":{"110":{"tf":2.23606797749979},"116":{"tf":1.0},"80":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"110":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"109":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"110":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"i":{"df":1,"docs":{"51":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"133":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"104":{"tf":1.0},"109":{"tf":2.23606797749979},"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"109":{"tf":2.0},"90":{"tf":1.0}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"109":{"tf":1.0}}}}},"df":2,"docs":{"30":{"tf":1.0},"88":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"35":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"=":{"2":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}},"df":22,"docs":{"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":4.123105625617661},"110":{"tf":2.23606797749979},"111":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":2.23606797749979},"18":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"5":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"80":{"tf":5.5677643628300215},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":2.6457513110645907},"88":{"tf":2.6457513110645907},"9":{"tf":1.4142135623730951},"90":{"tf":1.0},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"d":{"b":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"110":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"13":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.0},"97":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"j":{"df":2,"docs":{"104":{"tf":1.0},"105":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"80":{"tf":1.0},"85":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"5":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.4142135623730951}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"109":{"tf":1.4142135623730951},"18":{"tf":1.0},"24":{"tf":1.0},"64":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":11,"docs":{"109":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"80":{"tf":3.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}}},"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":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"45":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"x":{"df":3,"docs":{"67":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"111":{"tf":1.0},"116":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"c":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}}},"a":{"df":1,"docs":{"96":{"tf":1.0}}},"b":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"/":{"a":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":6,"docs":{"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":2.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":2.23606797749979},"88":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"63":{"tf":1.0},"80":{"tf":2.23606797749979},"82":{"tf":1.0},"87":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"80":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"105":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"109":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"114":{"tf":1.0},"32":{"tf":1.0},"38":{"tf":2.8284271247461903},"78":{"tf":1.7320508075688772},"80":{"tf":2.449489742783178},"81":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"x":{":":{"'":{",":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"113":{"tf":1.7320508075688772}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"108":{"tf":1.4142135623730951},"109":{"tf":2.0},"111":{"tf":1.0},"113":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"106":{"tf":1.4142135623730951},"109":{"tf":3.1622776601683795},"114":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":3.872983346207417}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"65":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"28":{"tf":1.7320508075688772},"53":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"109":{"tf":1.0},"114":{"tf":1.0},"29":{"tf":1.0},"61":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"92":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"109":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"5":{"tf":1.0}},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"0":{"tf":1.7320508075688772},"3":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"49":{"tf":1.0},"5":{"tf":1.4142135623730951},"6":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"78":{"tf":1.0},"87":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.0}}},"t":{"df":7,"docs":{"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"16":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"67":{"tf":1.0}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"38":{"tf":1.0},"92":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"113":{"tf":1.0},"127":{"tf":1.0},"30":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"109":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"u":{".":{"2":{"0":{"2":{"3":{"0":{"5":{"2":{"2":{".":{"1":{"5":{"4":{"6":{"5":{"8":{".":{"1":{"4":{"5":{"7":{"7":{".":{"0":{".":{"0":{"0":{"1":{".":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"44":{"tf":1.4142135623730951},"45":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"35":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":16,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.4142135623730951},"116":{"tf":1.0},"127":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":3.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"101":{"tf":1.4142135623730951},"110":{"tf":1.0},"88":{"tf":2.23606797749979},"92":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"78":{"tf":2.449489742783178},"80":{"tf":4.0},"81":{"tf":2.6457513110645907},"83":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.23606797749979},"92":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"!":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"103":{"tf":1.0},"109":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"21":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"4":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"w":{"d":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951}}}}}},"t":{"a":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.0}}}}},"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}},"df":2,"docs":{"87":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"76":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"48":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"114":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":11,"docs":{"31":{"tf":1.7320508075688772},"32":{"tf":2.449489742783178},"33":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":2.23606797749979},"37":{"tf":2.0},"38":{"tf":2.23606797749979},"39":{"tf":2.23606797749979},"41":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}},"g":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"80":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":11,"docs":{"106":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"29":{"tf":1.0},"38":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"109":{"tf":1.7320508075688772},"113":{"tf":1.0},"29":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":2.8284271247461903},"88":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"80":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"v":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"c":{"df":0,"docs":{},"m":{"d":{"/":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"@":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":2.0},"53":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"p":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"[":{"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"109":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"df":36,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"103":{"tf":2.23606797749979},"104":{"tf":2.8284271247461903},"105":{"tf":1.4142135623730951},"106":{"tf":3.0},"107":{"tf":1.7320508075688772},"108":{"tf":2.0},"109":{"tf":3.872983346207417},"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.7320508075688772},"119":{"tf":1.0},"120":{"tf":1.0},"28":{"tf":1.4142135623730951},"71":{"tf":1.0},"8":{"tf":2.0},"85":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":3.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":2.449489742783178},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"92":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"103":{"tf":1.0},"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"85":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":4,"docs":{"104":{"tf":1.0},"73":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"113":{"tf":1.0},"124":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"41":{"tf":1.0},"65":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}},"v":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}}},"df":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":{"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":4,"docs":{"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":7,"docs":{"103":{"tf":1.0},"113":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"6":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"102":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"133":{"tf":1.0},"5":{"tf":1.0},"88":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"29":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"28":{"tf":2.23606797749979},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"45":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"36":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.0}}}}},"o":{"c":{"1":{"df":1,"docs":{"75":{"tf":1.0}}},"2":{"df":1,"docs":{"75":{"tf":1.0}}},"df":7,"docs":{"105":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.7320508075688772},"5":{"tf":1.0},"6":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":1,"docs":{"80":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":6,"docs":{"109":{"tf":1.4142135623730951},"18":{"tf":1.0},"24":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"110":{"tf":2.0},"80":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.0},"84":{"tf":1.0}}},"t":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"102":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"84":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":4,"docs":{"104":{"tf":1.0},"44":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":2.0}}}},"2":{"df":4,"docs":{"27":{"tf":2.23606797749979},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"h":{"df":20,"docs":{"102":{"tf":1.0},"106":{"tf":1.7320508075688772},"109":{"tf":1.7320508075688772},"110":{"tf":2.23606797749979},"111":{"tf":1.0},"116":{"tf":1.0},"133":{"tf":1.0},"30":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.0},"82":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.7320508075688772},"93":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"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":4,"docs":{"104":{"tf":1.7320508075688772},"109":{"tf":1.0},"113":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"114":{"tf":2.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"110":{"tf":1.0},"34":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"113":{"tf":1.0},"53":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}}}},"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":8,"docs":{"103":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.4142135623730951},"28":{"tf":1.0},"45":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"133":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"111":{"tf":1.4142135623730951},"51":{"tf":1.0},"88":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"38":{"tf":1.0}}},"y":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"13":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.4142135623730951}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"41":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}},"s":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":5,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":2.449489742783178},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"109":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"53":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}},"t":{"c":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":9,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"104":{"tf":1.7320508075688772},"65":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"109":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.4142135623730951}},"t":{"df":2,"docs":{"33":{"tf":1.0},"43":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"40":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":22,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"13":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":2.449489742783178},"69":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":2.0},"82":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"c":{"_":{"b":{"a":{"d":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"80":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"102":{"tf":1.0},"37":{"tf":1.0},"67":{"tf":2.0},"69":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"29":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}}},"t":{"df":1,"docs":{"45":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"81":{"tf":1.0},"87":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"41":{"tf":1.0}}},"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"81":{"tf":1.4142135623730951}},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"81":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"109":{"tf":1.0},"55":{"tf":1.0},"72":{"tf":1.0},"90":{"tf":1.0}}}},"n":{"df":9,"docs":{"104":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"40":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":7,"docs":{"105":{"tf":1.0},"106":{"tf":2.0},"109":{"tf":1.0},"114":{"tf":2.0},"29":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"106":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"113":{"tf":2.0},"35":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"109":{"tf":1.7320508075688772},"87":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":5,"docs":{"11":{"tf":1.0},"32":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.6457513110645907},"84":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":2,"docs":{"78":{"tf":1.0},"80":{"tf":3.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"a":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"73":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}},"t":{"df":1,"docs":{"109":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"16":{"tf":1.0},"22":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":1,"docs":{"88":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"127":{"tf":1.0},"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":3,"docs":{"106":{"tf":1.0},"110":{"tf":1.0},"80":{"tf":1.7320508075688772}}}},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"83":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"102":{"tf":1.0},"104":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":22,"docs":{"103":{"tf":1.7320508075688772},"109":{"tf":1.0},"20":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"29":{"tf":2.23606797749979},"38":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":2.0},"54":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":3.872983346207417},"81":{"tf":2.0},"82":{"tf":1.0},"84":{"tf":3.0},"87":{"tf":2.23606797749979},"88":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"75":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{".":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"19":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"87":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"106":{"tf":1.0},"110":{"tf":1.7320508075688772},"113":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"80":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}}},"d":{"df":9,"docs":{"102":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.0},"81":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"29":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"0":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.7320508075688772},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"67":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"37":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"82":{"tf":1.0}}},"x":{"df":4,"docs":{"18":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.0},"51":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":3.4641016151377544}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"l":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"65":{"tf":1.0},"87":{"tf":2.0}}}}},"n":{"df":2,"docs":{"29":{"tf":1.0},"35":{"tf":1.0}},"m":{"df":1,"docs":{"13":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"109":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"108":{"tf":1.0},"113":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"28":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":16,"docs":{"114":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.7320508075688772},"47":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}},"o":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"104":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":5,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":3.605551275463989},"109":{"tf":2.0},"114":{"tf":2.449489742783178},"95":{"tf":1.4142135623730951}}},"r":{"c":{"df":1,"docs":{"80":{"tf":2.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"51":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"85":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"133":{"tf":1.0},"46":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"80":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"88":{"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":3,"docs":{"109":{"tf":3.0},"75":{"tf":2.0},"88":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"35":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"106":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":4,"docs":{"80":{"tf":2.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":16,"docs":{"109":{"tf":1.0},"114":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"40":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"133":{"tf":2.0}}}}},"df":4,"docs":{"44":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":15,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":2.23606797749979},"110":{"tf":2.449489742783178},"113":{"tf":1.7320508075688772},"114":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"44":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":2.0},"88":{"tf":2.449489742783178}}}}},"t":{"df":9,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"103":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}},"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":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"1":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"80":{"tf":1.0},"87":{"tf":1.0}},"n":{"df":4,"docs":{"109":{"tf":1.7320508075688772},"111":{"tf":1.0},"116":{"tf":1.0},"87":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"73":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":6,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"32":{"tf":1.0},"80":{"tf":2.449489742783178},"81":{"tf":1.0},"88":{"tf":1.4142135623730951}},"e":{"df":2,"docs":{"5":{"tf":1.0},"88":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"84":{"tf":1.0}}}},"o":{"d":{"df":10,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"3":{"tf":1.7320508075688772},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"h":{"df":5,"docs":{"101":{"tf":1.4142135623730951},"104":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"93":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"78":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"5":{"tf":1.4142135623730951},"6":{"tf":2.0},"64":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"87":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"80":{"tf":2.23606797749979},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"53":{"tf":1.0}},"l":{"df":10,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":3.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"r":{"d":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":4,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.0},"109":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"106":{"tf":1.0},"109":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":9,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":1.4142135623730951},"64":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.7320508075688772}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":4,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.0},"88":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":12,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"13":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"109":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.7320508075688772}}}}},"o":{"d":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":2,"docs":{"110":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"df":2,"docs":{"111":{"tf":1.7320508075688772},"95":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"#":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"110":{"tf":1.0},"85":{"tf":1.0}}}}}},"i":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}}},".":{"df":1,"docs":{"116":{"tf":1.0}}},"6":{"8":{"6":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":2,"docs":{"106":{"tf":1.0},"37":{"tf":1.0}},"e":{"a":{"df":4,"docs":{"109":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"87":{"tf":1.0}},"l":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":6,"docs":{"102":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"40":{"tf":1.0},"63":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"80":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":13,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"41":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":2.23606797749979},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.7320508075688772}}}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"81":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{".":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":16,"docs":{"104":{"tf":2.0},"106":{"tf":3.4641016151377544},"109":{"tf":2.449489742783178},"116":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"53":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":2.0},"80":{"tf":6.082762530298219},"83":{"tf":2.23606797749979},"84":{"tf":1.0},"87":{"tf":2.449489742783178},"88":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"df":1,"docs":{"109":{"tf":1.0}}},"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"40":{"tf":1.0},"85":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":10,"docs":{"16":{"tf":1.0},"22":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"!":{"=":{"!":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"j":{"df":3,"docs":{"104":{"tf":2.449489742783178},"116":{"tf":1.0},"96":{"tf":1.0}},"s":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"#":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"75":{"tf":1.4142135623730951}}}},"i":{"c":{"df":4,"docs":{"103":{"tf":1.0},"110":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":2,"docs":{"43":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":4,"docs":{"33":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"45":{"tf":1.0},"51":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"109":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"42":{"tf":1.0},"88":{"tf":1.0}}}}},"r":{"a":{"df":3,"docs":{"18":{"tf":1.0},"24":{"tf":1.0},"5":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"109":{"tf":2.0},"114":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"i":{"df":2,"docs":{"32":{"tf":1.0},"88":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"102":{"tf":1.7320508075688772},"104":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"80":{"tf":2.8284271247461903},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772},"87":{"tf":3.1622776601683795},"88":{"tf":2.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"11":{"tf":1.4142135623730951},"13":{"tf":3.0},"32":{"tf":2.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"8":{"tf":2.6457513110645907}}},"n":{"c":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"53":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"33":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":2.6457513110645907}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"80":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.0},"4":{"tf":1.0},"50":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}},"n":{"df":9,"docs":{"103":{"tf":1.4142135623730951},"113":{"tf":1.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"69":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":11,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":7,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"50":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"45":{"tf":1.4142135623730951},"63":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"5":{"tf":1.0},"6":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":11,"docs":{"0":{"tf":1.4142135623730951},"109":{"tf":1.0},"3":{"tf":2.0},"4":{"tf":2.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0}}}}},"t":{"'":{"df":19,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"110":{"tf":2.0},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"38":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.4142135623730951},"76":{"tf":1.0},"78":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.7320508075688772}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"110":{"tf":1.7320508075688772},"122":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":5,"docs":{"102":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"df":8,"docs":{"106":{"tf":1.0},"113":{"tf":1.0},"36":{"tf":1.7320508075688772},"76":{"tf":1.0},"80":{"tf":3.4641016151377544},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"88":{"tf":2.449489742783178}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}},"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}}},"o":{"b":{"df":2,"docs":{"110":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":4.0}}}},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"75":{"tf":1.0}},"s":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"#":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":10,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"44":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"80":{"tf":2.6457513110645907},"87":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"104":{"tf":1.0},"42":{"tf":1.0},"76":{"tf":1.0}}}},"x":{"df":2,"docs":{"82":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":2,"docs":{"51":{"tf":1.0},"63":{"tf":1.0}}}},"y":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"n":{"d":{"df":11,"docs":{"110":{"tf":1.0},"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"84":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"114":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":5,"docs":{"110":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":7,"docs":{"127":{"tf":1.7320508075688772},"3":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"80":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"80":{"tf":1.0}},"r":{"df":8,"docs":{"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"114":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"46":{"tf":1.0},"47":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}}}}}},":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":2.0}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"2":{"0":{"2":{"3":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":4,"docs":{"32":{"tf":1.4142135623730951},"35":{"tf":1.0},"38":{"tf":2.0},"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":1.0},"51":{"tf":1.4142135623730951}}}},"v":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"80":{"tf":2.0},"81":{"tf":2.0},"87":{"tf":1.4142135623730951}}}},"t":{"'":{"df":5,"docs":{"109":{"tf":1.0},"116":{"tf":1.0},"37":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":15,"docs":{"0":{"tf":1.0},"100":{"tf":1.4142135623730951},"28":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":3,"docs":{"110":{"tf":1.0},"19":{"tf":1.0},"25":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"k":{"df":3,"docs":{"110":{"tf":1.0},"51":{"tf":1.0},"88":{"tf":1.0}}},"t":{":":{"df":0,"docs":{},"j":{"df":1,"docs":{"51":{"tf":1.0}}},"r":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"47":{"tf":2.0},"49":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"54":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"72":{"tf":1.0},"80":{"tf":2.23606797749979},"88":{"tf":1.4142135623730951}}}}}},"l":{"d":{"b":{"df":2,"docs":{"35":{"tf":2.449489742783178},"38":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"a":{"d":{"df":5,"docs":{"68":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"!":{".":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"74":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"'":{"df":1,"docs":{"88":{"tf":1.0}}},"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"80":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"?":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"!":{".":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"74":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"103":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}}}}}},"df":34,"docs":{"102":{"tf":2.23606797749979},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"44":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":3.1622776601683795},"64":{"tf":1.4142135623730951},"65":{"tf":3.3166247903554},"66":{"tf":1.0},"67":{"tf":4.242640687119285},"68":{"tf":1.4142135623730951},"69":{"tf":3.3166247903554},"71":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":2.449489742783178},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":3.0},"79":{"tf":1.0},"80":{"tf":8.18535277187245},"81":{"tf":2.6457513110645907},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":3.605551275463989},"85":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"87":{"tf":6.6332495807108},"88":{"tf":3.872983346207417},"89":{"tf":2.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"s":{"!":{".":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"51":{"tf":1.0}}},"t":{"df":6,"docs":{"103":{"tf":1.0},"133":{"tf":1.0},"45":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"o":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"[":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"]":{"!":{"=":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"72":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":7,"docs":{"106":{"tf":1.0},"109":{"tf":1.4142135623730951},"113":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"69":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}}},"s":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}},"t":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"w":{"df":1,"docs":{"100":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"13":{"tf":2.0}}}},"m":{"a":{"c":{"df":2,"docs":{"40":{"tf":1.0},"45":{"tf":1.7320508075688772}},"o":{"df":1,"docs":{"37":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"109":{"tf":1.4142135623730951},"111":{"tf":1.0},"19":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"105":{"tf":1.4142135623730951},"5":{"tf":1.0},"51":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":14,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"13":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"#":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"50":{"tf":1.0},"87":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":2,"docs":{"106":{"tf":1.0},"38":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"k":{"!":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":4,"docs":{"69":{"tf":1.0},"75":{"tf":1.0},"92":{"tf":1.7320508075688772},"95":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"102":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":4.242640687119285},"82":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"87":{"tf":3.4641016151377544},"88":{"tf":2.449489742783178},"96":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"75":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"106":{"tf":1.0},"109":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"38":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"73":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0}},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"67":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"133":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"127":{"tf":1.0},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"110":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.23606797749979}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"80":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"78":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":1,"docs":{"53":{"tf":2.449489742783178}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}},"s":{"c":{"df":2,"docs":{"126":{"tf":1.7320508075688772},"127":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"92":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"103":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"63":{"tf":1.0}}}}},"x":{"df":4,"docs":{"36":{"tf":2.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"39":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"109":{"tf":1.0}},"e":{"df":4,"docs":{"103":{"tf":1.0},"113":{"tf":1.0},"37":{"tf":1.0},"95":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"109":{"tf":2.0}},"i":{"df":7,"docs":{"109":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"67":{"tf":1.0},"80":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":26,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":3.0},"103":{"tf":2.0},"104":{"tf":2.0},"105":{"tf":2.23606797749979},"106":{"tf":3.872983346207417},"109":{"tf":2.0},"110":{"tf":2.0},"111":{"tf":2.0},"114":{"tf":1.0},"116":{"tf":1.7320508075688772},"20":{"tf":1.0},"26":{"tf":1.0},"67":{"tf":1.7320508075688772},"74":{"tf":1.0},"76":{"tf":2.23606797749979},"78":{"tf":1.7320508075688772},"80":{"tf":2.449489742783178},"81":{"tf":2.449489742783178},"84":{"tf":1.4142135623730951},"87":{"tf":2.23606797749979},"88":{"tf":4.358898943540674},"89":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772}},"e":{"'":{"df":1,"docs":{"110":{"tf":1.0}}},".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"114":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":3.3166247903554},"81":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":8,"docs":{"104":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.0}},"e":{"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":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"104":{"tf":2.0},"105":{"tf":1.0},"106":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":14,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":2.23606797749979},"113":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"111":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"85":{"tf":1.0},"88":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"47":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"28":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":6,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"29":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":2.449489742783178}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"32":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":8,"docs":{"63":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":2.23606797749979},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"df":1,"docs":{"80":{"tf":1.4142135623730951}},"e":{"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":{"105":{"tf":1.0},"109":{"tf":1.0},"29":{"tf":1.0},"38":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":13,"docs":{"123":{"tf":1.0},"125":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"19":{"tf":1.0},"25":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}}}}}},"w":{"df":9,"docs":{"109":{"tf":2.0},"127":{"tf":1.0},"29":{"tf":1.0},"51":{"tf":1.7320508075688772},"6":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}}},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"46":{"tf":1.0},"48":{"tf":2.0}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":13,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":3.0},"15":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"51":{"tf":1.0},"7":{"tf":1.0},"76":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772},"9":{"tf":1.0}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"df":11,"docs":{"13":{"tf":1.0},"17":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"32":{"tf":1.0},"35":{"tf":2.23606797749979},"38":{"tf":3.1622776601683795},"44":{"tf":1.0},"63":{"tf":1.0},"8":{"tf":1.0}},"j":{"df":2,"docs":{"40":{"tf":1.0},"44":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}},"n":{"df":1,"docs":{"88":{"tf":1.0}},"e":{"df":1,"docs":{"80":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":11,"docs":{"102":{"tf":1.0},"116":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"45":{"tf":1.0},"63":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"88":{"tf":3.1622776601683795}},"e":{"#":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}},"y":{"#":{"c":{"df":0,"docs":{},"r":{"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":{}}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"76":{"tf":1.7320508075688772},"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":1,"docs":{"78":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"df":4,"docs":{"37":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.0},"8":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"85":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"106":{"tf":2.0},"108":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"13":{"tf":2.23606797749979}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"k":{"df":1,"docs":{"85":{"tf":1.0}}},"l":{"d":{"df":3,"docs":{"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":2.0},"80":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"c":{"df":3,"docs":{"35":{"tf":1.0},"45":{"tf":1.0},"85":{"tf":1.0}}},"df":7,"docs":{"109":{"tf":1.0},"116":{"tf":1.0},"15":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"29":{"tf":1.0},"67":{"tf":1.0},"81":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"29":{"tf":1.0}}}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"2":{"4":{"4":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":8,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"69":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"84":{"tf":2.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"103":{"tf":1.0},"29":{"tf":1.0},"43":{"tf":1.0},"52":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.23606797749979},"78":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"109":{"tf":2.0},"69":{"tf":1.4142135623730951},"80":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"113":{"tf":1.0},"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"67":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"76":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"t":{"df":6,"docs":{"109":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"45":{"tf":2.0},"84":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"85":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"84":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"4":{"tf":1.0},"87":{"tf":1.0}}}}}}}}},"x":{"c":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"34":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"19":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"5":{"tf":1.0},"51":{"tf":2.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"35":{"tf":1.7320508075688772},"45":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"46":{"tf":1.0},"55":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}},"r":{"df":1,"docs":{"109":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"109":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}},"s":{"df":7,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"35":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":3,"docs":{"106":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.449489742783178}}}}},"t":{"(":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":11,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.7320508075688772},"18":{"tf":1.0},"24":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.449489742783178},"82":{"tf":1.7320508075688772},"86":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.0}},"i":{"df":2,"docs":{"82":{"tf":1.0},"84":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":14,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"108":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"109":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":1.0}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":10,"docs":{"102":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"29":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":2.0},"80":{"tf":3.605551275463989},"88":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"29":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951}}}}}}}}},"c":{"df":1,"docs":{"47":{"tf":1.7320508075688772}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":2,"docs":{"72":{"tf":1.0},"88":{"tf":1.0}}}},"r":{"df":2,"docs":{"109":{"tf":1.0},"125":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"40":{"tf":1.0},"44":{"tf":1.0},"63":{"tf":1.7320508075688772},"69":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"133":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"65":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.0},"67":{"tf":1.0},"69":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"122":{"tf":1.0},"125":{"tf":1.0}}},"y":{"df":1,"docs":{"133":{"tf":1.0}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"27":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"1":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"103":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"114":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"78":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":3.1622776601683795}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"|":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"81":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"m":{"@":{"7":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"19":{"tf":1.7320508075688772},"25":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"45":{"tf":1.0},"51":{"tf":1.7320508075688772},"8":{"tf":2.0},"9":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"28":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"30":{"tf":1.0},"38":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"69":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"92":{"tf":1.0}}}}},"df":1,"docs":{"84":{"tf":1.0}}}}},"r":{"df":6,"docs":{"127":{"tf":1.4142135623730951},"49":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":2.0},"62":{"tf":1.4142135623730951},"75":{"tf":1.0}},"e":{"df":3,"docs":{"102":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"105":{"tf":1.0},"54":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"87":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"37":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"106":{"tf":1.0},"108":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772}}}}},"s":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.4142135623730951}},"s":{"df":3,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.0},"43":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"109":{"tf":1.0},"4":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"53":{"tf":1.4142135623730951},"73":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"110":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"45":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"113":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"df":8,"docs":{"102":{"tf":1.0},"110":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}}}}}}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"42":{"tf":1.0},"45":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"35":{"tf":1.7320508075688772}},"f":{"df":1,"docs":{"44":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"40":{"tf":2.23606797749979},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":2.449489742783178},"45":{"tf":2.23606797749979}},"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":{"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"35":{"tf":1.0},"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"37":{"tf":1.0},"4":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":7,"docs":{"28":{"tf":2.0},"29":{"tf":1.7320508075688772},"3":{"tf":1.0},"30":{"tf":1.0},"45":{"tf":1.7320508075688772},"54":{"tf":1.0},"80":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"}":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"80":{"tf":2.23606797749979},"82":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"75":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":10,"docs":{"102":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":2.23606797749979},"4":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.7320508075688772},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"80":{"tf":2.0}}}},"df":0,"docs":{}}}},"u":{"b":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"46":{"tf":1.0},"49":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"51":{"tf":2.23606797749979}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"68":{"tf":1.0},"75":{"tf":1.4142135623730951},"82":{"tf":1.0},"88":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.0},"75":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"49":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":6,"docs":{"111":{"tf":1.0},"114":{"tf":1.0},"45":{"tf":1.0},"63":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"106":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"w":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"78":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}},"df":1,"docs":{"35":{"tf":1.4142135623730951}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.0}}},"t":{"df":1,"docs":{"87":{"tf":1.0}}}},"d":{"df":4,"docs":{"106":{"tf":1.0},"51":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":1.7320508075688772}}},"df":0,"docs":{},"l":{"df":9,"docs":{"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"76":{"tf":1.0},"80":{"tf":2.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"92":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"35":{"tf":1.0},"63":{"tf":1.4142135623730951}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"110":{"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":7,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":2,"docs":{"113":{"tf":1.0},"45":{"tf":2.23606797749979}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"114":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"75":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":2,"docs":{"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"64":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"75":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"108":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.4142135623730951},"38":{"tf":1.0},"66":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":2.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"110":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"88":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"102":{"tf":1.0},"84":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"80":{"tf":1.0}},"p":{"df":1,"docs":{"92":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"29":{"tf":1.0},"69":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"20":{"tf":1.0},"26":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}}}},"df":2,"docs":{"74":{"tf":1.0},"87":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":8,"docs":{"124":{"tf":2.449489742783178},"125":{"tf":3.1622776601683795},"33":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":2.23606797749979},"47":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"49":{"tf":2.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"102":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"109":{"tf":1.0},"80":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"127":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"c":{"df":6,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":2.23606797749979},"111":{"tf":2.23606797749979},"113":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"127":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"5":{"tf":1.0},"51":{"tf":1.4142135623730951}}},"y":{"'":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":1.0},"67":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"53":{"tf":2.6457513110645907}}},"df":0,"docs":{}}},"df":1,"docs":{"53":{"tf":1.0}}}}},"q":{"df":1,"docs":{"109":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"102":{"tf":1.4142135623730951},"104":{"tf":2.23606797749979},"38":{"tf":2.0},"51":{"tf":2.23606797749979},"67":{"tf":1.4142135623730951},"74":{"tf":2.6457513110645907},"75":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.0},"87":{"tf":2.23606797749979},"88":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"104":{"tf":1.0},"109":{"tf":1.7320508075688772},"110":{"tf":2.0},"80":{"tf":1.0},"87":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"80":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}},"v":{"df":8,"docs":{"103":{"tf":2.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"63":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.23606797749979}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":12,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":1.0},"75":{"tf":2.0},"78":{"tf":1.0},"80":{"tf":3.0},"82":{"tf":1.7320508075688772},"84":{"tf":2.23606797749979},"87":{"tf":2.23606797749979},"88":{"tf":2.6457513110645907}},"e":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"75":{"tf":1.0},"80":{"tf":2.23606797749979},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":4.123105625617661}}}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"110":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"39":{"tf":1.0},"65":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"74":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":8,"docs":{"109":{"tf":1.4142135623730951},"114":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"80":{"tf":4.242640687119285},"82":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"s":{"df":7,"docs":{"68":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"f":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"i":{"d":{"df":2,"docs":{"81":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"110":{"tf":1.0},"87":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":6,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"37":{"tf":1.0},"87":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"#":{"2":{"7":{"8":{"0":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"8":{"df":1,"docs":{"62":{"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"28":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"32":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"46":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"41":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"33":{"tf":1.0},"41":{"tf":1.4142135623730951}},"e":{"=":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"c":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"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":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"&":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":2,"docs":{"33":{"tf":1.0},"43":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":40,"docs":{"0":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"133":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":2.23606797749979},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":2.23606797749979},"26":{"tf":1.0},"29":{"tf":2.6457513110645907},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.7320508075688772},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":2.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"81":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}},"1":{"df":1,"docs":{"84":{"tf":1.0}}},"2":{"df":1,"docs":{"84":{"tf":1.0}}},"df":9,"docs":{"28":{"tf":1.0},"29":{"tf":1.0},"78":{"tf":2.6457513110645907},"80":{"tf":3.4641016151377544},"81":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"89":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}}}},"n":{"df":25,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.7320508075688772},"19":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":1.7320508075688772},"25":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"51":{"tf":2.449489742783178},"7":{"tf":1.7320508075688772},"8":{"tf":1.0},"9":{"tf":2.0}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":3,"docs":{"63":{"tf":1.0},"67":{"tf":2.0},"93":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":3.0},"111":{"tf":1.0},"35":{"tf":1.0},"80":{"tf":1.0},"96":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":2.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"110":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"11":{"tf":2.0},"129":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.7320508075688772},"21":{"tf":1.0},"22":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"35":{"tf":2.449489742783178},"36":{"tf":1.7320508075688772},"45":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":2.23606797749979},"69":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":11,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"45":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":4,"docs":{"76":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":2.449489742783178}}}}}},">":{"<":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"80":{"tf":2.6457513110645907}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"110":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"110":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"109":{"tf":2.0},"40":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":17,"docs":{"104":{"tf":1.0},"109":{"tf":2.23606797749979},"113":{"tf":1.0},"114":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.4142135623730951},"87":{"tf":2.0},"88":{"tf":1.7320508075688772},"92":{"tf":1.0}},"n":{"df":1,"docs":{"113":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"32":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"df":2,"docs":{"35":{"tf":1.0},"53":{"tf":1.0}}}},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"124":{"tf":1.0}}}}}},"df":1,"docs":{"46":{"tf":1.0}}}}}},"n":{"d":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"74":{"tf":1.0},"80":{"tf":1.7320508075688772},"87":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772}}}}}},"t":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"df":13,"docs":{"110":{"tf":1.0},"113":{"tf":1.4142135623730951},"15":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"51":{"tf":1.0}}}}}},"f":{"c":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"?":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"80":{"tf":2.0}}}}}},"df":1,"docs":{"80":{"tf":3.4641016151377544}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"114":{"tf":2.0}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"109":{"tf":1.0},"28":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":1.0},"53":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":9,"docs":{"104":{"tf":1.7320508075688772},"113":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"44":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"67":{"tf":2.449489742783178},"69":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"63":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.4142135623730951}},"i":{"df":2,"docs":{"45":{"tf":1.0},"84":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"109":{"tf":1.0},"81":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":5,"docs":{"0":{"tf":1.0},"133":{"tf":1.0},"51":{"tf":1.4142135623730951},"69":{"tf":1.0},"80":{"tf":1.7320508075688772}}}}},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":1,"docs":{"84":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"102":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"80":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":6,"docs":{"16":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"22":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}},"i":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0}}}},"v":{"df":1,"docs":{"109":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"109":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":2.23606797749979}}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"51":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":15,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"106":{"tf":2.0},"109":{"tf":4.795831523312719},"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"113":{"tf":2.0},"114":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":2.449489742783178},"90":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"[":{"0":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.0}}}},"c":{"df":2,"docs":{"35":{"tf":1.0},"76":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"80":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":6,"docs":{"109":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"54":{"tf":1.0}},"i":{"df":5,"docs":{"106":{"tf":2.0},"74":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"44":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"c":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"109":{"tf":2.0},"63":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"16":{"tf":1.0},"22":{"tf":1.0}}}}}},"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":16,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.7320508075688772},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"4":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"t":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":6,"docs":{"106":{"tf":1.4142135623730951},"109":{"tf":2.23606797749979},"116":{"tf":1.0},"80":{"tf":2.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":5,"docs":{"110":{"tf":1.4142135623730951},"114":{"tf":1.0},"69":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":2.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"72":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":2.23606797749979},"88":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"35":{"tf":1.7320508075688772},"45":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":4,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"108":{"tf":1.0},"29":{"tf":2.8284271247461903},"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"104":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":4,"docs":{"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"[":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"]":{"!":{"=":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"87":{"tf":1.0}}}}}}},":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},">":{"<":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"51":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.7320508075688772},"80":{"tf":3.872983346207417},"81":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":2,"docs":{"105":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.7320508075688772}}}}}}},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":2.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":2.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"63":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":16,"docs":{"1":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"63":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":2.449489742783178},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":2.0},"89":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"51":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"g":{"df":2,"docs":{"82":{"tf":1.0},"87":{"tf":1.4142135623730951}},"o":{"df":1,"docs":{"87":{"tf":1.0}}},"r":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}}},"df":2,"docs":{"82":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"w":{"c":{"'":{"df":1,"docs":{"88":{"tf":1.0}}},"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"114":{"tf":1.0},"45":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"y":{"b":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"104":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"80":{"tf":2.0},"87":{"tf":2.6457513110645907},"88":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":9,"docs":{"103":{"tf":1.4142135623730951},"110":{"tf":1.0},"37":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":1,"docs":{"32":{"tf":1.0}},"l":{"df":3,"docs":{"45":{"tf":1.0},"61":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"106":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":6,"docs":{"0":{"tf":1.0},"106":{"tf":1.0},"45":{"tf":1.0},"80":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":1,"docs":{"105":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":4,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"35":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"133":{"tf":2.0},"54":{"tf":1.7320508075688772},"80":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":4,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"65":{"tf":1.7320508075688772},"80":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"72":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"80":{"tf":1.0},"88":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"/":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"109":{"tf":3.3166247903554},"110":{"tf":1.0},"114":{"tf":1.0},"45":{"tf":1.4142135623730951},"53":{"tf":1.0},"80":{"tf":3.1622776601683795},"92":{"tf":1.0}},"e":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},">":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"2":{"df":1,"docs":{"109":{"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":{"109":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"a":{"d":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}},"df":1,"docs":{"109":{"tf":3.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"40":{"tf":1.0},"43":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"t":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}},"df":22,"docs":{"15":{"tf":2.0},"16":{"tf":2.6457513110645907},"17":{"tf":2.6457513110645907},"18":{"tf":4.0},"19":{"tf":3.7416573867739413},"20":{"tf":4.242640687119285},"21":{"tf":2.0},"22":{"tf":2.6457513110645907},"23":{"tf":2.6457513110645907},"24":{"tf":4.0},"25":{"tf":3.7416573867739413},"26":{"tf":4.242640687119285},"27":{"tf":1.7320508075688772},"28":{"tf":2.0},"29":{"tf":2.0},"30":{"tf":1.7320508075688772},"51":{"tf":2.0},"78":{"tf":2.6457513110645907},"80":{"tf":3.4641016151377544},"81":{"tf":2.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"]":{"(":{"#":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"x":{"df":0,"docs":{},"t":{"(":{"*":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"49":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":2,"docs":{"110":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"84":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"df":0,"docs":{}}},"k":{"df":2,"docs":{"108":{"tf":1.0},"88":{"tf":1.0}}}},"r":{"d":{"df":4,"docs":{"110":{"tf":1.0},"28":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}}},"a":{"d":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":1,"docs":{"88":{"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.7320508075688772}},"}":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"!":{"=":{"!":{"$":{"df":0,"docs":{},"{":{"_":{"_":{"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":0,"docs":{},"e":{"df":0,"docs":{},"}":{"!":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"!":{"=":{"!":{"$":{"df":0,"docs":{},"{":{"_":{"_":{"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":0,"docs":{},"e":{"df":0,"docs":{},"}":{"!":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"?":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"82":{"tf":1.0},"84":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"110":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":7,"docs":{"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"116":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"49":{"tf":1.0},"80":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":8,"docs":{"102":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"46":{"tf":1.0},"80":{"tf":2.23606797749979},"84":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"123":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":12,"docs":{"106":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"53":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.4142135623730951},"91":{"tf":1.0},"96":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.7320508075688772}}}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":2,"docs":{"115":{"tf":1.0},"120":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"32":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"35":{"tf":1.0}}}}},"o":{"(":{"df":0,"docs":{},"i":{".":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"p":{"df":2,"docs":{"105":{"tf":1.0},"87":{"tf":1.0}},"i":{"c":{"df":2,"docs":{"123":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"!":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":7,"docs":{"33":{"tf":2.449489742783178},"34":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":2.449489742783178},"42":{"tf":2.0},"43":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951}}},"k":{"df":2,"docs":{"0":{"tf":1.0},"4":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":5,"docs":{"67":{"tf":1.0},"80":{"tf":2.8284271247461903},"82":{"tf":1.4142135623730951},"84":{"tf":2.23606797749979},"87":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"114":{"tf":2.0}}}},"i":{"df":1,"docs":{"88":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":8,"docs":{"109":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"d":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"45":{"tf":1.0},"53":{"tf":1.0},"80":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":11,"docs":{"109":{"tf":2.23606797749979},"15":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"38":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"69":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":19,"docs":{"102":{"tf":1.7320508075688772},"103":{"tf":1.0},"104":{"tf":2.449489742783178},"106":{"tf":2.23606797749979},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"29":{"tf":2.0},"38":{"tf":2.0},"52":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":2.23606797749979},"84":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"88":{"tf":3.0},"89":{"tf":1.0},"92":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"c":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"u":{"df":2,"docs":{"19":{"tf":1.0},"25":{"tf":1.0}},"i":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"42":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.0}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"35":{"tf":1.0}}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}},"r":{"df":2,"docs":{"45":{"tf":1.0},"76":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"132":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"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":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"67":{"tf":1.0},"68":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"47":{"tf":2.0},"49":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"127":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0}},"e":{"=":{"1":{"df":2,"docs":{"16":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"116":{"tf":1.7320508075688772},"51":{"tf":1.0},"7":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"74":{"tf":1.4142135623730951},"84":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"114":{"tf":1.0},"92":{"tf":1.0}}}},"df":41,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"116":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":2.0},"20":{"tf":3.1622776601683795},"26":{"tf":3.1622776601683795},"27":{"tf":1.0},"29":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"41":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"45":{"tf":2.0},"53":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":2.0},"80":{"tf":4.58257569495584},"81":{"tf":2.0},"82":{"tf":1.0},"84":{"tf":2.449489742783178},"85":{"tf":1.7320508075688772},"87":{"tf":2.6457513110645907},"88":{"tf":2.23606797749979},"91":{"tf":1.0},"92":{"tf":2.0},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":4,"docs":{"80":{"tf":2.0},"82":{"tf":1.0},"87":{"tf":3.3166247903554},"88":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":3,"docs":{"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"v":{"1":{"4":{".":{"1":{"9":{".":{"0":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"1":{"8":{".":{"0":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"87":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":5,"docs":{"103":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"43":{"tf":1.0},"85":{"tf":1.0}}}},"r":{"df":1,"docs":{"109":{"tf":1.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"106":{"tf":1.0},"29":{"tf":1.4142135623730951},"33":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"13":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"13":{"tf":2.23606797749979},"46":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0}}}}},"u":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"i":{"a":{"df":8,"docs":{"109":{"tf":2.0},"110":{"tf":1.0},"111":{"tf":1.0},"13":{"tf":1.0},"43":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"42":{"tf":1.4142135623730951},"43":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"109":{"tf":1.0},"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"32":{"tf":1.0}}},"/":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"32":{"tf":1.0},"38":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":4,"docs":{"11":{"tf":1.0},"32":{"tf":1.7320508075688772},"37":{"tf":1.0},"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"75":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"78":{"tf":2.449489742783178},"80":{"tf":7.810249675906654},"87":{"tf":1.7320508075688772}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}}}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"85":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"4":{"tf":1.0},"80":{"tf":1.7320508075688772},"84":{"tf":2.0},"96":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"33":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951}}}},"t":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"92":{"tf":1.7320508075688772},"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":0,"docs":{}},"y":{"df":9,"docs":{"0":{"tf":1.0},"133":{"tf":1.0},"41":{"tf":1.0},"5":{"tf":1.7320508075688772},"50":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.0},"85":{"tf":1.0},"87":{"tf":1.7320508075688772}}}},"df":1,"docs":{"32":{"tf":1.0}},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.0}}}},"r":{"df":1,"docs":{"80":{"tf":1.0}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"/":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"5":{"tf":1.4142135623730951}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"'":{"df":5,"docs":{"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"78":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.4142135623730951}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"87":{"tf":1.0}}}},"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"[":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"85":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}}}},"df":64,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":2.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":2.6457513110645907},"110":{"tf":2.23606797749979},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":2.6457513110645907},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"133":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":3.1622776601683795},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":3.1622776601683795},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"76":{"tf":2.23606797749979},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"80":{"tf":4.123105625617661},"81":{"tf":2.23606797749979},"82":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"84":{"tf":2.23606797749979},"85":{"tf":2.23606797749979},"86":{"tf":1.0},"87":{"tf":3.605551275463989},"88":{"tf":3.3166247903554},"89":{"tf":2.0},"90":{"tf":2.0},"91":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"97":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"125":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"55":{"tf":1.0},"57":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"l":{"df":3,"docs":{"43":{"tf":1.0},"6":{"tf":1.0},"80":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"73":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"106":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"88":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"47":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"114":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"38":{"tf":1.0},"74":{"tf":1.0},"84":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"18":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"76":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"d":{"df":5,"docs":{"109":{"tf":1.4142135623730951},"114":{"tf":1.0},"73":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":12,"docs":{"0":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.4142135623730951},"4":{"tf":1.0},"42":{"tf":1.0},"6":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"30":{"tf":1.0},"35":{"tf":1.0}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"14":{"tf":1.7320508075688772},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"88":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"s":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"38":{"tf":1.4142135623730951}},"i":{"c":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"d":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"76":{"tf":1.0},"88":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"109":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"67":{"tf":1.0},"87":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"x":{".":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"z":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}}},"8":{"6":{"_":{"6":{"4":{"df":2,"docs":{"47":{"tf":2.0},"49":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"40":{"tf":1.0},"45":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"18":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"83":{"tf":1.0}},"x":{"df":1,"docs":{"104":{"tf":1.0}},"x":{"df":1,"docs":{"75":{"tf":1.0}},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"v":{"df":1,"docs":{"51":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}}},"z":{"df":3,"docs":{"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"title":{"root":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"128":{"tf":1.0},"131":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}},"t":{"df":1,"docs":{"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"133":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"28":{"tf":1.0}}}}},"df":1,"docs":{"56":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"38":{"tf":1.0},"78":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"61":{"tf":1.0},"71":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"57":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":4,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"118":{"tf":1.0},"8":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"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":{"106":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"2":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"53":{"tf":1.0},"79":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"64":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"3":{"tf":1.0},"59":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}},"n":{"df":1,"docs":{"131":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"133":{"tf":1.0}}}}},"df":1,"docs":{"58":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"107":{"tf":1.0}}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"73":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"3":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"6":{"tf":1.0},"64":{"tf":1.0},"77":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"92":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"76":{"tf":1.0},"83":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"13":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":3,"docs":{"3":{"tf":1.0},"4":{"tf":1.0},"59":{"tf":1.0}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"127":{"tf":1.0},"55":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":9,"docs":{"100":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}}},"l":{"d":{"b":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"65":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":1,"docs":{"100":{"tf":1.0}}}}},"m":{"a":{"c":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.0}}}}},"s":{"c":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"36":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":8,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"df":1,"docs":{"80":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"8":{"tf":1.0}}}},"df":4,"docs":{"17":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0}},"j":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"112":{"tf":1.0},"69":{"tf":1.0},"88":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"76":{"tf":1.0},"93":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}}}}}}},"x":{"c":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"34":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"65":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":2,"docs":{"52":{"tf":1.0},"62":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"37":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"92":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"40":{"tf":1.0},"44":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"120":{"tf":1.0},"66":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"115":{"tf":1.0},"62":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"51":{"tf":1.0},"74":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"v":{"df":1,"docs":{"105":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"128":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"19":{"tf":1.0},"25":{"tf":1.0},"60":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"7":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"11":{"tf":1.0},"129":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"11":{"tf":1.0},"12":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"63":{"tf":1.0},"72":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"61":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"133":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"115":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"33":{"tf":1.0},"41":{"tf":1.0}}},"k":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"114":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"106":{"tf":1.0},"81":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"116":{"tf":1.0}}},"s":{"df":1,"docs":{"81":{"tf":1.0}}}},"v":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"32":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"130":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"2":{"tf":1.0},"30":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"131":{"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":"AND","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}} \ No newline at end of file +{"doc_urls":["getting-started.html#getting-started","getting-started.html#asking-questions","getting-started.html#what-should-i-work-on","getting-started.html#good-first-issue","getting-started.html#tracking-issue","getting-started.html#other-ways-to-contribute","about-this-guide.html#about-this-guide","building/intro.html#how-to-build-and-run-the-compiler","building/intro.html#install-nodejs-dependencies","building/intro.html#building-rspack","building/prerequisites.html#prerequisites","building/prerequisites.html#setup-rust","building/prerequisites.html#setup-nodejs","building/prerequisites.html#install-nodejs","building/suggested.html#suggested-workflows","testing/intro.html#testing","testing/intro.html#rust-testing","testing/intro.html#node-testing","testing/intro.html#webpack-testing","testing/intro.html#rspack-testing","testing/intro.html#node-testing-suite-overview","testing/intro.html#testing","testing/intro.html#rust-testing","testing/intro.html#node-testing","testing/intro.html#webpack-testing","testing/intro.html#rspack-testing","testing/intro.html#node-testing-suite-overview","testing/e2e.html#e2e","testing/e2e.html#cases","testing/e2e.html#fixtures","testing/e2e.html#how-it-works","debugging/intro.html#debugging","debugging/intro.html#debugging-with-vscode","debugging/intro.html#tracing","debugging/intro.html#oxc_resolver","debugging/intro.html#rust-lldb","debugging/mix-debug.html#mixed-debugging-between-javascript-and-rust","debugging/mix-debug.html#prerequisites","debugging/mix-debug.html#configure-launchjson-in-vscode","debugging/mix-debug.html#debugging-attempt","profiling/intro.html#profiling","profiling/intro.html#tracing","profiling/intro.html#chrome","profiling/intro.html#terminal","profiling/intro.html#nodejs-profiling","profiling/intro.html#mac-xcode-instruments","releasing/intro.html#releasing","releasing/intro.html#latest-full-release","releasing/intro.html#nightly","releasing/intro.html#canary","contributing/intro.html#intro","contributing/intro.html#sending-a-pull-request","contributing/intro.html#format-of-pr-titles","contributing/repro.html#minimal-reproducible-example","contributing/team.html#about-the-team","contributing/managing-labels.html#managing-labels","contributing/managing-labels.html#c","contributing/managing-labels.html#contribution-welcome","contributing/managing-labels.html#g","contributing/managing-labels.html#good-first-issue","architecture/rspack/intro.html#rspack","architecture/rspack/intro.html#table-of-contents","architecture/rspack/loader.html#related-prs","architecture/rspack/loader.html#summary","architecture/rspack/loader.html#guide-level-explanation","architecture/rspack/loader.html#pitching-loader","architecture/rspack/loader.html#reference-level-explanation","architecture/rspack/loader.html#actor-of-loader-execution","architecture/rspack/loader.html#passing-options","architecture/rspack/loader.html#optimization-for-pitching","architecture/webpack/intro.html#webpack","architecture/webpack/intro.html#table-of-contents","architecture/webpack/loader.html#summary","architecture/webpack/loader.html#glossary","architecture/webpack/loader.html#request-related","architecture/webpack/loader.html#resource-related","architecture/webpack/loader.html#others-but-also-important-to-note","architecture/webpack/loader.html#guide-level-explanation","architecture/webpack/loader.html#loader-configuration","architecture/webpack/loader.html#examples","architecture/webpack/loader.html#vue1-to-n","architecture/webpack/loader.html#use-natively-supported-module-types","architecture/webpack/loader.html#svgr","architecture/webpack/loader.html#scheme-imports","architecture/webpack/loader.html#asset-transform-and-rename","architecture/webpack/loader.html#ast-reuse","architecture/webpack/loader.html#reference-level-explanation","architecture/webpack/loader.html#loader-composability","architecture/webpack/loader.html#performance-optimizations","architecture/webpack/loader.html#references","architecture/webpack/dependency.html#summary","architecture/webpack/dependency.html#glossary","architecture/webpack/dependency.html#high-level-presentations-of--dependencies","architecture/webpack/dependency.html#others","architecture/webpack/dependency.html#guide-level-explanation","architecture/webpack/dependency.html#dependency","architecture/webpack/dependency.html#contextdependency","architecture/webpack/dependency.html#reference-level-explanation","architecture/webpack/dependency.html#stakeholders-of--dependency","architecture/webpack/dependency.html#high-level","architecture/webpack/dependency.html#low-level","architecture/webpack/dependency.html#how--dependencies--affect-the-creation-of--module-graph-","architecture/webpack/dependency.html#duplicated-module-detection","architecture/webpack/dependency.html#module-resolution","architecture/webpack/dependency.html#module-dependency--in--modulegraph","architecture/webpack/dependency.html#resolving-a-module","architecture/webpack/dependency.html#different-types-of--module-dependencies","architecture/webpack/dependency.html#how--dependencies--affect-code-generation","architecture/webpack/dependency.html#presentational-dependency","architecture/webpack/dependency.html#template","architecture/webpack/dependency.html#runtime","architecture/webpack/dependency.html#hot-module-replacement","architecture/webpack/dependency.html#how--dependencies--affect-production-optimizations","architecture/webpack/dependency.html#constant-folding","architecture/webpack/dependency.html#tree-shaking--dce","architecture/webpack/dependency.html#things-related-to-persistent-cache","architecture/webpack/dependency.html#wrap-it-up","architecture/webpack/dependency.html#make","architecture/webpack/dependency.html#dependencies-after-make","architecture/webpack/dependency.html#seal","architecture/webpack/dependency.html#references","workflows/meetings.html#meetings","workflows/meetings.html#tuesday-meeting","workflows/meetings.html#thursday-meeting","workflows/releases.html#releases","workflows/releases.html#release-cycle","workflows/misc.html#misc","workflows/misc.html#need-documentation-label","appendix/learning-resources.html#appendix-a-learning-resources","appendix/learning-resources.html#rust","appendix/learning-resources.html#webpack","appendix/fun.html#appendix-z-fun-stuff","appendix/fun.html#motto","appendix/fun.html#team-building-game"],"index":{"documentStore":{"docInfo":{"0":{"body":22,"breadcrumbs":4,"title":2},"1":{"body":10,"breadcrumbs":4,"title":2},"10":{"body":0,"breadcrumbs":4,"title":1},"100":{"body":2,"breadcrumbs":4,"title":2},"101":{"body":0,"breadcrumbs":7,"title":5},"102":{"body":68,"breadcrumbs":5,"title":3},"103":{"body":67,"breadcrumbs":4,"title":2},"104":{"body":128,"breadcrumbs":5,"title":3},"105":{"body":27,"breadcrumbs":4,"title":2},"106":{"body":157,"breadcrumbs":6,"title":4},"107":{"body":0,"breadcrumbs":6,"title":4},"108":{"body":28,"breadcrumbs":4,"title":2},"109":{"body":453,"breadcrumbs":3,"title":1},"11":{"body":11,"breadcrumbs":5,"title":2},"110":{"body":144,"breadcrumbs":3,"title":1},"111":{"body":49,"breadcrumbs":5,"title":3},"112":{"body":0,"breadcrumbs":6,"title":4},"113":{"body":91,"breadcrumbs":4,"title":2},"114":{"body":92,"breadcrumbs":5,"title":3},"115":{"body":1,"breadcrumbs":6,"title":4},"116":{"body":36,"breadcrumbs":4,"title":2},"117":{"body":2,"breadcrumbs":3,"title":1},"118":{"body":2,"breadcrumbs":4,"title":2},"119":{"body":2,"breadcrumbs":3,"title":1},"12":{"body":0,"breadcrumbs":5,"title":2},"120":{"body":1,"breadcrumbs":3,"title":1},"121":{"body":0,"breadcrumbs":2,"title":1},"122":{"body":4,"breadcrumbs":3,"title":2},"123":{"body":5,"breadcrumbs":3,"title":2},"124":{"body":15,"breadcrumbs":2,"title":1},"125":{"body":19,"breadcrumbs":3,"title":2},"126":{"body":0,"breadcrumbs":2,"title":1},"127":{"body":21,"breadcrumbs":4,"title":3},"128":{"body":0,"breadcrumbs":6,"title":3},"129":{"body":0,"breadcrumbs":4,"title":1},"13":{"body":61,"breadcrumbs":5,"title":2},"130":{"body":0,"breadcrumbs":4,"title":1},"131":{"body":0,"breadcrumbs":8,"title":4},"132":{"body":6,"breadcrumbs":5,"title":1},"133":{"body":26,"breadcrumbs":7,"title":3},"14":{"body":0,"breadcrumbs":6,"title":2},"15":{"body":9,"breadcrumbs":2,"title":1},"16":{"body":19,"breadcrumbs":3,"title":2},"17":{"body":11,"breadcrumbs":3,"title":2},"18":{"body":92,"breadcrumbs":3,"title":2},"19":{"body":49,"breadcrumbs":3,"title":2},"2":{"body":0,"breadcrumbs":3,"title":1},"20":{"body":117,"breadcrumbs":5,"title":4},"21":{"body":9,"breadcrumbs":3,"title":1},"22":{"body":19,"breadcrumbs":4,"title":2},"23":{"body":11,"breadcrumbs":4,"title":2},"24":{"body":92,"breadcrumbs":4,"title":2},"25":{"body":49,"breadcrumbs":4,"title":2},"26":{"body":117,"breadcrumbs":6,"title":4},"27":{"body":10,"breadcrumbs":3,"title":1},"28":{"body":46,"breadcrumbs":3,"title":1},"29":{"body":133,"breadcrumbs":3,"title":1},"3":{"body":18,"breadcrumbs":5,"title":3},"30":{"body":40,"breadcrumbs":3,"title":1},"31":{"body":0,"breadcrumbs":2,"title":1},"32":{"body":41,"breadcrumbs":3,"title":2},"33":{"body":43,"breadcrumbs":2,"title":1},"34":{"body":9,"breadcrumbs":2,"title":1},"35":{"body":104,"breadcrumbs":3,"title":2},"36":{"body":9,"breadcrumbs":8,"title":5},"37":{"body":38,"breadcrumbs":4,"title":1},"38":{"body":117,"breadcrumbs":6,"title":3},"39":{"body":12,"breadcrumbs":5,"title":2},"4":{"body":17,"breadcrumbs":4,"title":2},"40":{"body":23,"breadcrumbs":2,"title":1},"41":{"body":44,"breadcrumbs":2,"title":1},"42":{"body":33,"breadcrumbs":2,"title":1},"43":{"body":22,"breadcrumbs":2,"title":1},"44":{"body":42,"breadcrumbs":3,"title":2},"45":{"body":137,"breadcrumbs":4,"title":3},"46":{"body":19,"breadcrumbs":2,"title":1},"47":{"body":48,"breadcrumbs":4,"title":3},"48":{"body":29,"breadcrumbs":2,"title":1},"49":{"body":30,"breadcrumbs":2,"title":1},"5":{"body":38,"breadcrumbs":4,"title":2},"50":{"body":8,"breadcrumbs":3,"title":1},"51":{"body":115,"breadcrumbs":5,"title":3},"52":{"body":25,"breadcrumbs":5,"title":3},"53":{"body":58,"breadcrumbs":6,"title":3},"54":{"body":18,"breadcrumbs":2,"title":1},"55":{"body":13,"breadcrumbs":4,"title":2},"56":{"body":0,"breadcrumbs":3,"title":1},"57":{"body":0,"breadcrumbs":4,"title":2},"58":{"body":0,"breadcrumbs":3,"title":1},"59":{"body":0,"breadcrumbs":5,"title":3},"6":{"body":13,"breadcrumbs":2,"title":1},"60":{"body":4,"breadcrumbs":2,"title":1},"61":{"body":1,"breadcrumbs":3,"title":2},"62":{"body":2,"breadcrumbs":4,"title":2},"63":{"body":74,"breadcrumbs":3,"title":1},"64":{"body":14,"breadcrumbs":5,"title":3},"65":{"body":40,"breadcrumbs":4,"title":2},"66":{"body":0,"breadcrumbs":5,"title":3},"67":{"body":98,"breadcrumbs":5,"title":3},"68":{"body":21,"breadcrumbs":4,"title":2},"69":{"body":61,"breadcrumbs":4,"title":2},"7":{"body":7,"breadcrumbs":5,"title":3},"70":{"body":3,"breadcrumbs":2,"title":1},"71":{"body":2,"breadcrumbs":3,"title":2},"72":{"body":23,"breadcrumbs":3,"title":1},"73":{"body":16,"breadcrumbs":3,"title":1},"74":{"body":47,"breadcrumbs":4,"title":2},"75":{"body":79,"breadcrumbs":4,"title":2},"76":{"body":64,"breadcrumbs":5,"title":3},"77":{"body":0,"breadcrumbs":5,"title":3},"78":{"body":117,"breadcrumbs":4,"title":2},"79":{"body":0,"breadcrumbs":3,"title":1},"8":{"body":24,"breadcrumbs":5,"title":3},"80":{"body":983,"breadcrumbs":4,"title":2},"81":{"body":113,"breadcrumbs":7,"title":5},"82":{"body":75,"breadcrumbs":3,"title":1},"83":{"body":25,"breadcrumbs":4,"title":2},"84":{"body":228,"breadcrumbs":5,"title":3},"85":{"body":80,"breadcrumbs":4,"title":2},"86":{"body":8,"breadcrumbs":5,"title":3},"87":{"body":466,"breadcrumbs":4,"title":2},"88":{"body":383,"breadcrumbs":4,"title":2},"89":{"body":32,"breadcrumbs":3,"title":1},"9":{"body":20,"breadcrumbs":4,"title":2},"90":{"body":22,"breadcrumbs":3,"title":1},"91":{"body":16,"breadcrumbs":3,"title":1},"92":{"body":57,"breadcrumbs":6,"title":4},"93":{"body":17,"breadcrumbs":3,"title":1},"94":{"body":0,"breadcrumbs":5,"title":3},"95":{"body":32,"breadcrumbs":3,"title":1},"96":{"body":57,"breadcrumbs":3,"title":1},"97":{"body":11,"breadcrumbs":5,"title":3},"98":{"body":0,"breadcrumbs":4,"title":2},"99":{"body":2,"breadcrumbs":4,"title":2}},"docs":{"0":{"body":"We are grateful for your interest in contributing to Rspack! Every single contribution counts and helps us take Rspack to the next level. Asking Questions What should I work on? Good First Issue Tracking Issue Other ways to contribute","breadcrumbs":"Getting started » Getting Started","id":"0","title":"Getting Started"},"1":{"body":"If you have any questions, please do not hesitate to ask in either the Discord support channel or on the Github discussion board .","breadcrumbs":"Getting started » Asking Questions","id":"1","title":"Asking Questions"},"10":{"body":"","breadcrumbs":"Building and running » Prerequisites » Prerequisites","id":"10","title":"Prerequisites"},"100":{"body":"image-20220919171841624","breadcrumbs":"webpack » dependency » Low-level","id":"100","title":"Low-level"},"101":{"body":"","breadcrumbs":"webpack » dependency » How dependencies affect the creation of module graph ?","id":"101","title":"How dependencies affect the creation of module graph ?"},"102":{"body":"Each module will have its own identifier, for NormalModule, you can find this in NormalModule#identifier. If the identifier will be duplicated if inserted in this._module, then webpack will directly skip the remaining build process. [source] Basically, an NormalModule identifier contains these parts: type [string]: The module type of a module. If the type of the module is javascript/auto, this field can be omitted request [string]: Request to the module. All loaders whether it's inline or matched by a config will be stringified. If inline match resource exists, inline loaders will be executed before any normal-loaders after pre-loaders. A module with a different loader passed through will be treated as a different module regardless of its path. layer: applied if provided","breadcrumbs":"webpack » dependency » Duplicated module detection","id":"102","title":"Duplicated module detection"},"103":{"body":"getResolve is a loader API on the LoaderContext. Loader developers can pass dependencyType to its option which indicates the category of the module dependency that will be created. Values like esm can be passed, then webpack will use type esm to resolve the dependency. The resolved dependencies are automatically added to the current module. This is driven by the internal plugin system of enhanced-resolve. Internally, enhanced-resolve uses plugins to handle the dependency registration like FileExistsPlugin [source] to detect whether a file is located on the file system or will add this file to a list of missingDependency and report in respect of the running mode of webpack. The collecting end of Webpack is generated by the getResolveContext in NormalModule [source]","breadcrumbs":"webpack » dependency » Module resolution","id":"103","title":"Module resolution"},"104":{"body":"Here's a module graph with esm import between modules: image-20220919172119861 The dependency type introduced by import or require is a derived dependency: ModuleDependency . A ModuleDependency contains three important fields. category: used to describe the category of dependency. e.g. \"esm\" | \"commonjs\" request: see the explanation above. userRequest: Resource and its inline loader syntax will be stringified and applied, but loaders in module.rules will be omitted. It's also good to note a field we will talk about later: assertions: assertions in import xx from \"foo.json\" assert { type: \"json\" } More fields can be found in abstract class of Dependency and ModuleDependency . source: Dependency source: ModuleDependency // null -> index.js EntryDependency { category: \"esm\", request: \"./index.js\", type: \"entry\", _parentModule: undefined\n} // index.js -> foo.js HarmonyImportSideEffectDependency { category: \"esm\", request: \"./foo\", type: \"harmony side effect evaluation\", _parentModule: NormalModule { identifier: \"index.js\" }\n} // index.js -> bar.js HarmonyImportSideEffectDependency { category: \"esm\", request: \"./bar\", type: \"harmony side effect evaluation\", _parentModule: NormalModule { identifier: \"index.js\" }\n} // bar.js -> foo.js\nHarmonyImportSideEffectDependency { category: \"esm\", request: \"./foo\", type: \"harmony side effect evaluation\", _parentModule: NormalModule { identifier: \"bar.js\" }\n}","breadcrumbs":"webpack » dependency » Module dependency in ModuleGraph","id":"104","title":"Module dependency in ModuleGraph"},"105":{"body":"ModuleDependencies with different dependency category such as esm or commonjs will affect the resolving part. For ECMAScript modules, they may prefer \"module\" to \"main\", and for CommonJS modules, they may use \"main\" in package.json. On top of that, conditional exports are also necessary to be taken into account. doc","breadcrumbs":"webpack » dependency » Resolving a module","id":"105","title":"Resolving a module"},"106":{"body":"ESM-related derived types There are a few of ModuleDependencies introduced in ESM imports. A full list of each derived type can be reached at [source] Import HarmonyImportDependency The basic type of harmony-related module dependencies are below. [source] HarmonyImportSideEffectDependency import { foo, bar } from \"./module\"\nimport * as module from \"./module\"\nimport foo from \"./module\"\nimport \"./module\" Every import statement will come with a HarmonyImportSideEffectDependency, no matter how the specifiers look like. The speicifier will be handled by HarmonyImportSpecifierDendency below. The field assertions will be stored if any import assertions exist for later consumption. The field category will be used as dependencyType to resolve modules. HarmonyImportSpecifierDependency import { foo, bar } from \"./module\"\nimport * as module from \"./module\"\nimport foo from \"./module\" Example: import { foo, bar } from \"./module\" console.log(foo, bar) Specifier will be mapped into a specifier dependency if and only if it is used. JavaScript parser will first tag each variable [source] , and then create corresponding dependencies on each reading of dependency. [source] and finally be replaced to the generated importVar. Export(They are not module dependencies to be actual, but I placed here for convenience) HarmonyExportHeaderDependency PresentationalDependency export const foo = \"foo\";\nexport default \"foo\"; This is a presentational dependency . We will take more time on this later. HarmonyExportSpecifierDependency export const foo = \"foo\"; // `foo` is a specifier HarmonyExportSpecifierDependency { id: string; name: string;\n} HarmonyExportExpressionDependency export default \"foo\"; // \"foo\" is an expression HarmonyExportExpressionDependency { range: [number, number] // range of the expression rangeStatement: [number, number] // range of the whole statement\n}","breadcrumbs":"webpack » dependency » Different types of module dependencies","id":"106","title":"Different types of module dependencies"},"107":{"body":"","breadcrumbs":"webpack » dependency » How dependencies affect code generation","id":"107","title":"How dependencies affect code generation"},"108":{"body":"A type of dependency that only affects code presentation. ConstDependency ConstDependency { expression: string range: [number, number] runtimeRequirements: Set | null\n} You can think of the passed expression as a replacement for the corresponding range. For the real world example, you can directly refer to Constant Folding .","breadcrumbs":"webpack » dependency » Presentational dependency","id":"108","title":"Presentational dependency"},"109":{"body":"Remember the fact that Webpack is an architecture wrapped around source code modifications. Template is the solution that helps Webpack to do the real patch on the source code. Each dependency has its associated template which affects a part of the code generation scoped per dependency. In other words, the effect of each template is strictly scoped to its associated dependency. image-20220919173300220 There are three types of modification: source fragments runtimeRequirements A boilerplate of the dependency template looks like this: class SomeDependency {} SomeDependency.Template = class SomeDependencyTemplate { /** * @param {Dependency} dependency the dependency for which the template should be applied * @param {ReplaceSource} source the current replace source which can be modified * @param {DependencyTemplateContext} templateContext the context object * @returns {void} */ apply(dependency, source, templateContext) { // do code mod here }\n} There are three parameters in the function signature: dependency: The associated dependency of this template source: The source code represent in ReplaceSource, which can be used to replace a snippet of code with a new one, given the start and end position templateContext: A context of template, which stores the corresponding module, InitFragments, moduleGraph, runtimeRequirements, etc. (not important in this section) Source Again, given an example of ConstDependency , even if you don't have an idea what it is, it doesn't matter. We will cover this in the later sections. The associated template modifies the code with Source(ReplaceSource to be more specific): ConstDependency.Template = class ConstDependencyTemplate extends ( NullDependency.Template\n) { apply(dependency, source, templateContext) { const dep = /** @type {ConstDependency} */ (dependency); // not necessary code is removed for clearer demonstration if (dep.runtimeRequirements) { for (const req of dep.runtimeRequirements) { templateContext.runtimeRequirements.add(req); } } source.replace(dep.range[0], dep.range[1] - 1, dep.expression); }\n}; runtimeRequirements As you can see from the Source section above, there is another modification we talked about: runtimeRequirements, It adds runtime requirements for the current compilation. We will explain more in the later sections. Fragments Essentially, a fragment is a pair of code snippet that to be wrapped around each module source. Note the wording \"wrap\", it could contain two parts content and endContent [source] . To make it more illustrative, see this: The order of the fragment comes from two parts: The stage of a fragment: if the stage of two fragments is different, then it will be replaced corresponding to the order define by the stage If two fragments share the same order, then it will be replaced in position order. [source] A real-world example import { foo } from \"./foo\" foo() Given the example above, here's the code to generate a dependency that replaces import statement with __webpack_require__. // some code is omitted for cleaner demonstration\nparser.hooks.import.tap( \"HarmonyImportDependencyParserPlugin\", (statement, source) => { const clearDep = new ConstDependency( \"\", statement.range ); clearDep.loc = statement.loc; parser.state.module.addPresentationalDependency(clearDep); const sideEffectDep = new HarmonyImportSideEffectDependency( source ); sideEffectDep.loc = statement.loc; parser.state.module.addDependency(sideEffectDep); return true; }\n); Webpack will create two dependencies ConstDependency and HarmonyImportSideEffectDependency while parsing [source] . Let me focus on HarmonyImportSideEffectDependency more, since it uses Fragment to do some patch. // some code is omitted for cleaner demonstration\nHarmonyImportSideEffectDependency.Template = class HarmonyImportSideEffectDependencyTemplate extends ( HarmonyImportDependency.Template\n) { apply(dependency, source, templateContext) { super.apply(dependency, source, templateContext); }\n}; As you can see in its associated template [source] , the modification to the code is made via its superclass HarmonyImportDependency.Template [source] . // some code is omitted for cleaner demonstration\nHarmonyImportDependency.Template = class HarmonyImportDependencyTemplate extends ( ModuleDependency.Template\n) { apply(dependency, source, templateContext) { const dep = /** @type {HarmonyImportDependency} */ (dependency); const { module, chunkGraph, moduleGraph, runtime } = templateContext; const referencedModule = connection && connection.module; const moduleKey = referencedModule ? referencedModule.identifier() : dep.request; const key = `harmony import ${moduleKey}`; // 1 const importStatement = dep.getImportStatement(false, templateContext); // 2 templateContext.initFragments.push( new ConditionalInitFragment( importStatement[0] + importStatement[1], InitFragment.STAGE_HARMONY_IMPORTS, dep.sourceOrder, key, // omitted for cleaner code ) ); }\n} As you can see from the simplified source code above, the actual patch made to the generated code is via templateContext.initFragments(2). The import statement generated from dependency looks like this. /* harmony import */ var _foo__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./foo */ \"./src/foo.js\"); //(1) Note, the real require statement is generated via initFragments , ConditionalInitFragment to be specific. Don't be afraid of the naming, for more information you can see the (background)[https://github.com/webpack/webpack/pull/11802] of this fragment , which let's webpack to change it from InitFragment to ConditionalInitFragment. How does webpack solve the compatibility issue? For ESM modules, webpack will additionally call a helper to define _esModule on exports as an hint: __webpack_require__.r(__webpack_exports__); The call of a helper is always placed ahead of any require statements. Probably you have already get this as the stage of STAGE_HARMONY_EXPORTS has high priority than STAGE_HARMONY_IMPORTS. Again, this is achieved via initFragments. The logic of the compatibility helper is defined in this file, you can check it out.","breadcrumbs":"webpack » dependency » Template","id":"109","title":"Template"},"11":{"body":"Install Rust using rustup . If you are using VSCode, we recommend installing the rust-analyzer extension.","breadcrumbs":"Building and running » Prerequisites » Setup Rust","id":"11","title":"Setup Rust"},"110":{"body":"Runtime generation is based on the previously collected runtimeRequirements in different dependency templates and is done after the code generation of each module. Note: it's not after the renderManifest, but it's after the code generation of each module. image-20220919173829765 In the first iteration of collection, Sets of runtimeRequirements are collected from the module's code generation results and added to each ChunkGraphModule. In the second iteration of collection, the collected runtimeRequirements are already stored in ChunkGraphModule, so Webpack again collects them from there and stores the runtimes required by each chunk of ChunkGraphChunk. It's kind of the hoisting procedure of the required runtimes. Finally, also known as the third iteration of collection, Webpack hoists runtimeRequirements from those chunks that are referenced by the entry chunk and get it hoisted on the ChunkGraphChunk using a different field named runtimeRequirementsInTree which indicates not only does it contains the runtime requirements by the chunk but also it's children runtime requirements. image-20220919174132772 The referenced source code you can be found it here and these steps are basically done in processRuntimeRequirements. This let me recall the linking procedure of a rollup-like bundler. Anyway, after this procedure, we can finally generate runtime modules . Actually, I lied here, huge thanks to the hook system of Webpack, the creation of runtime modules is done in this method via calls to runtimeRequirementInTree [source] . No doubt, this is all done in the seal step. After that, webpack will process each chunk and create a few code generation jobs, and finally, emit assets.","breadcrumbs":"webpack » dependency » Runtime","id":"110","title":"Runtime"},"111":{"body":"Changes made via hot module replacement is mostly come from HotModuleReplacementPlugin. Given the code below: if (module.hot) { module.hot.accept(...)\n} Webpack will replace expressions like module.hot and module.hot.accept, etc with ConstDependency as the presentationalDependency as I previously talked about. [source] With the help of a simple expression replacement is not enough, the plugin also introduce additional runtime modules for each entries. [source] The plugin is quite complicated, and you should definitely checkout what it actually does, but for things related to dependency, it's enough.","breadcrumbs":"webpack » dependency » Hot module replacement","id":"111","title":"Hot module replacement"},"112":{"body":"","breadcrumbs":"webpack » dependency » How dependencies affect production optimizations","id":"112","title":"How dependencies affect production optimizations"},"113":{"body":"The logic is defined in ConstPlugin : [source] Constant folding is a technique that used as an optimization for optimization. For example: Source if (process.env.NODE_ENV === \"development\") { ...\n} else { ...\n} Generated if (true) { ...\n} With mode set to \"development\", webpack will \"fold\" the expression process.env.NODE_ENV === \"development\" into an expression of \"true\" as you can see for the code generation result. In the make procedure of webpack, Webpack internally uses an JavaScriptParser for JavaScript parsing. If an ifStatement is encountered, Webpack creates a corresponding ConstDependency. Essentially, for the ifStatement, the ConstDependency looks like this : ConstDependency { expression: \"true\", range: [start, end] // range to replace\n} It's almost the same with else branch, if there is no side effects (refer to source code for more detail), Webpack will create another ConstDependency with expression set to \"\", which in the end removes the else branch. In the seal procedure of Webpack, the record of the dependency will be applied to the original source code and generate the final result as you may have already seen above.","breadcrumbs":"webpack » dependency » Constant folding","id":"113","title":"Constant folding"},"114":{"body":"Tree-shaking is a technique of a bundle-wise DCE(dead code elimination). In the following content, I will use tree-shaking as a wording for bundle-wise and DCE for module-wise code elimination. (I know it's not quite appropriate, but you get the point) Here's an example: // webpack configuration\nmodule.exports = { optimization: { usedExports: true }\n} image-20220919182656468 image-20220919190553215 image-20220919190925073 As you can see from the red square, the initFragment is generated based on the usage of the exported symbol in the HarmonyExportSpecifierDependency [source] If foo is used in the graph, then the generated result will be this: /* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"foo\": function() { return /* binding */ foo; }\n/* harmony export */ });\nconst foo = \"foo\"; In the example above, the foo is not used, so it will be excluded in the code generation of the template of HarmonyExportSpecifierDependency and it will be dead-code-eliminated in later steps. For terser plugin, it eliminates all unreachable code in processAssets [source] .","breadcrumbs":"webpack » dependency » Tree shaking & DCE","id":"114","title":"Tree shaking & DCE"},"115":{"body":"TODO","breadcrumbs":"webpack » dependency » Things related to Persistent cache","id":"115","title":"Things related to Persistent cache"},"116":{"body":"Let's wrap everything up in a simple example! Isn't it exciting? image-20220919223228146 Given a module graph that contains three modules, the entry point of this bundle is index.js. To not make this example too complicated, we use normal import statements to reference each module (i.e: only one chunk that bundles everything will be created).","breadcrumbs":"webpack » dependency » Wrap it up!","id":"116","title":"Wrap it up!"},"117":{"body":"image-20220919223558327","breadcrumbs":"webpack » dependency » Make","id":"117","title":"Make"},"118":{"body":"image-20220919223720739","breadcrumbs":"webpack » dependency » Dependencies after make","id":"118","title":"Dependencies after make"},"119":{"body":"image-20220920180915326","breadcrumbs":"webpack » dependency » seal","id":"119","title":"seal"},"12":{"body":"","breadcrumbs":"Building and running » Prerequisites » Setup Node.js","id":"12","title":"Setup Node.js"},"120":{"body":"TODO","breadcrumbs":"webpack » dependency » References","id":"120","title":"References"},"121":{"body":"","breadcrumbs":"Meetings » Meetings","id":"121","title":"Meetings"},"122":{"body":"Go through the iteration plan","breadcrumbs":"Meetings » Tuesday meeting","id":"122","title":"Tuesday meeting"},"123":{"body":"Go through any topics that need to be discussed","breadcrumbs":"Meetings » Thursday meeting","id":"123","title":"Thursday meeting"},"124":{"body":"0.1.0 -> 0.1.1 is a patch release. 0.1.0 -> 0.2.0 is a minor release. 0.1.0 -> 1.0.0 is a major release. See details at semver.org","breadcrumbs":"Releases » Releases","id":"124","title":"Releases"},"125":{"body":"Patch releases are released Tuesday per week. Minor releases are released as needed. Major releases are released as needed. See milestones to follow our release plan.","breadcrumbs":"Releases » Release Cycle","id":"125","title":"Release Cycle"},"126":{"body":"","breadcrumbs":"Misc » Misc","id":"126","title":"Misc"},"127":{"body":"This is used for reminding ourselves to update the Rspack website for a new feature. When a PR is merged with the \"need documentation\" label, rspack-bot will create a corresponding PR in the rspack-website repo.","breadcrumbs":"Misc » \"need documentation\" label","id":"127","title":"\"need documentation\" label"},"128":{"body":"","breadcrumbs":"Appendix A: Learning resources » Appendix A: Learning resources","id":"128","title":"Appendix A: Learning resources"},"129":{"body":"","breadcrumbs":"Appendix A: Learning resources » Rust","id":"129","title":"Rust"},"13":{"body":"We recommend using the LTS version of Node.js 16. You can check your currently used Node.js version with the following command: node -v\n#v16.18.0 If you do not have Node.js installed in your current environment, you can use nvm or fnm to install it. Here is an example of how to install the Node.js 16 LTS version via nvm: # Install the LTS version of Node.js 16\nnvm install 16 --lts # Make the newly installed Node.js 16 as the default version\nnvm alias default 16 # Switch to the newly installed Node.js 16\nnvm use 16","breadcrumbs":"Building and running » Prerequisites » Install Node.js","id":"13","title":"Install Node.js"},"130":{"body":"","breadcrumbs":"Appendix A: Learning resources » Webpack","id":"130","title":"Webpack"},"131":{"body":"","breadcrumbs":"Appendix Z: Fun stuff » Appendix Z: Fun stuff","id":"131","title":"Appendix Z: Fun stuff"},"132":{"body":"Question webpack, understand webpack, become webpack","breadcrumbs":"Appendix Z: Fun stuff » Motto","id":"132","title":"Motto"},"133":{"body":"Despite being located across different cities, the rspack team has found an enjoyable way to bond when we meet in person. We play a team building game where we ask each other webpack questions. @hardfist hasn't lost a single game yet.","breadcrumbs":"Appendix Z: Fun stuff » Team building game","id":"133","title":"Team building game"},"14":{"body":"","breadcrumbs":"Building and running » Suggested Workflows » Suggested Workflows","id":"14","title":"Suggested Workflows"},"15":{"body":"We currently have two sets of test suites, one for Rust and one for Node.js.","breadcrumbs":"Testing » Testing","id":"15","title":"Testing"},"16":{"body":"cargo test will run all the rust side tests, which includes standalone tests for core functionality and plugins. UPDATE=1 cargo test will automatically update the failed snapshot","breadcrumbs":"Testing » Rust Testing","id":"16","title":"Rust Testing"},"17":{"body":"We are maintaining two test suites for Node Testing in Rspack, Rspack Testing and Webpack Testing","breadcrumbs":"Testing » Node Testing","id":"17","title":"Node Testing"},"18":{"body":"We copy the whole webpack test suites into webpack-test folder to check the compatibility with webpack. If you add features or fix bugs we recommend you check whether this feature or bug is covered in webpack test suites first. If it's covered and testable in Webpack Testing, you can enable specific test case by setting return value to true in test.filter.js in this case folder to enable this case. See more details in https://github.com/web-infra-dev/rspack/blob/main/webpack-test/README.md, Please note that don't modify original test code in Webpack Testing, if you find difficulties in running test suites without modifying original code, you can copy this test code in the following [Rspack Testing](#Rspack Testing). Run Tests # In root path\n./x build -a # build binding and js part\n./x test webpack # run webpack test suites","breadcrumbs":"Testing » Webpack Testing","id":"18","title":"Webpack Testing"},"19":{"body":"We maintain test suites in Rspack Testing which is not coverable or need to be modified in Webpack Testing. The test suites lies in rspack-test . This folder structure is similar with Webpack Testing. Run Tests # In root path\n./x build -a\n./x test js Or only test the package that you made the changes: # In the Node.js package path\npnpm run build && pnpm run test To update snapshots: pnpm --filter '@rspack/*' test -- -u","breadcrumbs":"Testing » Rspack Testing","id":"19","title":"Rspack Testing"},"2":{"body":"","breadcrumbs":"Getting started » What should I work on?","id":"2","title":"What should I work on?"},"20":{"body":"We use jest for Node.js tests, The most important test cases are the case in the packages/rspack. most of these cases comes from webpack https://github.com/webpack/webpack/tree/main/test because we want to make sure that Rspack can work as same as webpack. There are three kinds of integration cases in @rspack/core. case.test.ts Cases are used to test normal build behavior, we use these cases to test against bundler core functionality, like entry, output, module resolve, etc. it will first build your test file to test whether the input could be compiled successfully, then it will use the bundled test file to run test cases in the test file to test bundler's all kinds of behavior. configCase.test.ts Cases are used to test custom build behavior, you could use custom webpack.config.js to override default build behavior, you can use these cases to test against behavior related to specific config. statsTestCase.test.ts Cases are used to test your stats, By Default we will use jest's snapshot to snapshot your stats, and we highly recommend to avoid snapshot except statsCase. you can use statsCase to test behaviors like code splitting | bundle splitting, which is hard to test by just running code.","breadcrumbs":"Testing » Node Testing Suite Overview","id":"20","title":"Node Testing Suite Overview"},"21":{"body":"We currently have two sets of test suites, one for Rust and one for Node.js.","breadcrumbs":"Testing » intro » Testing","id":"21","title":"Testing"},"22":{"body":"cargo test will run all the rust side tests, which includes standalone tests for core functionality and plugins. UPDATE=1 cargo test will automatically update the failed snapshot","breadcrumbs":"Testing » intro » Rust Testing","id":"22","title":"Rust Testing"},"23":{"body":"We are maintaining two test suites for Node Testing in Rspack, Rspack Testing and Webpack Testing","breadcrumbs":"Testing » intro » Node Testing","id":"23","title":"Node Testing"},"24":{"body":"We copy the whole webpack test suites into webpack-test folder to check the compatibility with webpack. If you add features or fix bugs we recommend you check whether this feature or bug is covered in webpack test suites first. If it's covered and testable in Webpack Testing, you can enable specific test case by setting return value to true in test.filter.js in this case folder to enable this case. See more details in https://github.com/web-infra-dev/rspack/blob/main/webpack-test/README.md, Please note that don't modify original test code in Webpack Testing, if you find difficulties in running test suites without modifying original code, you can copy this test code in the following [Rspack Testing](#Rspack Testing). Run Tests # In root path\n./x build -a # build binding and js part\n./x test webpack # run webpack test suites","breadcrumbs":"Testing » intro » Webpack Testing","id":"24","title":"Webpack Testing"},"25":{"body":"We maintain test suites in Rspack Testing which is not coverable or need to be modified in Webpack Testing. The test suites lies in rspack-test . This folder structure is similar with Webpack Testing. Run Tests # In root path\n./x build -a\n./x test js Or only test the package that you made the changes: # In the Node.js package path\npnpm run build && pnpm run test To update snapshots: pnpm --filter '@rspack/*' test -- -u","breadcrumbs":"Testing » intro » Rspack Testing","id":"25","title":"Rspack Testing"},"26":{"body":"We use jest for Node.js tests, The most important test cases are the case in the packages/rspack. most of these cases comes from webpack https://github.com/webpack/webpack/tree/main/test because we want to make sure that Rspack can work as same as webpack. There are three kinds of integration cases in @rspack/core. case.test.ts Cases are used to test normal build behavior, we use these cases to test against bundler core functionality, like entry, output, module resolve, etc. it will first build your test file to test whether the input could be compiled successfully, then it will use the bundled test file to run test cases in the test file to test bundler's all kinds of behavior. configCase.test.ts Cases are used to test custom build behavior, you could use custom webpack.config.js to override default build behavior, you can use these cases to test against behavior related to specific config. statsTestCase.test.ts Cases are used to test your stats, By Default we will use jest's snapshot to snapshot your stats, and we highly recommend to avoid snapshot except statsCase. you can use statsCase to test behaviors like code splitting | bundle splitting, which is hard to test by just running code.","breadcrumbs":"Testing » intro » Node Testing Suite Overview","id":"26","title":"Node Testing Suite Overview"},"27":{"body":"The packages/playground provides e2e testing feature. We use playwright as the e2e testing framework.","breadcrumbs":"Testing » E2E » E2E","id":"27","title":"E2E"},"28":{"body":"The entry point of a test case is a file ending with .test.ts, and the parent directory of this file is the project directory. Here are some rules about test cases: The project directory must contain rspack.config.js to start the dev server. The project directory can contain multi *.test.ts. All test cases share dependencies, so just add dependencies in packages/playground/package.json. The cases folder should contain the category folders and then is the project folders. In principle, there should be no third-level directory.","breadcrumbs":"Testing » E2E » Cases","id":"28","title":"Cases"},"29":{"body":"The fixtures is a feature of playwright, in short it provides a variable that is generated in before{Each|All} and destroyed in after{Each|All}. More information see test-fixtures Here are some rules when defining a new fixture: Private fixtures should start with _ and are used only in the current file. A file only provides fixtures with the same name. A file can only provide one option and starts with default Register fixtures in fixtures/index.ts and export only necessary variables and types. Here are some existing fixtures: pathInfo This fixture will generate test environment, and calculate the PathInfo. type PathInfo = { // test file path testFile: string; // project dir testProjectDir: string // temporary project directory to be copied into tempProjectDir: string\n} rspack This fixture will start the rspack dev server and provide some useful methods. type Rspack = { // rspack running project directory projectDir: string // rspack compiler compiler: Compiler // rspack dev server devServer: DevServer // waiting for rspack build finish waitingForBuild: () => Promise // waiting for hmr finish, the poll function is used to check waitingForHmr: (poll: () => Promise) => Promise\n} fileAction This fixture will provide file change operations. type fileAction = { updateFile(relativePath: string, fn: (content: string) => string): void deleteFile(relativePath: string): void\n}","breadcrumbs":"Testing » E2E » Fixtures","id":"29","title":"Fixtures"},"3":{"body":"If you are looking to dive into the codebase and get started, we recommend checking out our issue list labeled with good first issue . This will help you get acquainted with the project and start contributing.","breadcrumbs":"Getting started » Good First Issue","id":"3","title":"Good First Issue"},"30":{"body":"playwright scan all test case and allocates a worker to run each case. pathInfo copy the project directory corresponding to the current case to temp/${worker_index}. rspack rewrite dev server port to 8000 + worker_index and start compiler and dev server in temp/${worker_index}. run current tests. rspack close dev server and compiler. pathInfo clear temp/${worker_index}","breadcrumbs":"Testing » E2E » How it works","id":"30","title":"How it works"},"31":{"body":"","breadcrumbs":"Debugging » Debugging","id":"31","title":"Debugging"},"32":{"body":"Install go install github.com/go-delve/delve/cmd/dlv@latest Install VSCode extension rust-analyzer and CodeLLDB build @rspack/cli and napi binding by run pnpm install && pnpm -w build:cli:debug In VSCode's Run and Debug tab, select debug-rspack to start debugging the initial launch of @rspack/cli. This task can be configured in .vscode/launch.json, which launches the Node and Rust debugger together.","breadcrumbs":"Debugging » Debugging with VSCode","id":"32","title":"Debugging with VSCode"},"33":{"body":"tracing is used to instrumenting Rspack. The supported tracing levels for release builds are INFO, WARN and ERROR debug builds are TRACE, DEBUG, INFO, WARN and ERROR Use the RSPACK_PROFILE environment variable for displaying trace information RSPACK_PROFILE=TRACE=layer=logger rspack build\n# filter for an event\nRSPACK_PROFILE='TRACE=layer=logger&filter=rspack_core::compiler::compilation' rspack build\n# disable ansi color escape codes\nNO_COLOR=1 RSPACK_PROFILE=TRACE=layer=logger rspack build","breadcrumbs":"Debugging » Tracing","id":"33","title":"Tracing"},"34":{"body":"oxc_resolver emits some tracing information for debugging purposes. RSPACK_PROFILE='TRACE=filter=oxc_resolver=trace&layer=logger' rspack build","breadcrumbs":"Debugging » oxc_resolver","id":"34","title":"oxc_resolver"},"35":{"body":"rust-lldb can be used to get panic information from debug builds rust-lldb -- node /path/to/rspack build Once it launches, press r for running the program. For example, examples/arco-pro crashes without any information before this fix : rspack/examples/arco-pro ❯ node ../../packages/rspack-cli/bin/rspack build\nRspack ██████████████████████░░░░░░░░░░░░░░░░░░ 56% building ./pages/welcome\nzsh: bus error node ../../packages/rspack-cli/bin/rspack build Using rust-lldb rspack/examples/arco-pro ❯ rust-lldb -- node ../../packages/rspack-cli/bin/rspack build Press r and it prints: Process 23110 stopped\n* thread #10, name = 'tokio-runtime-worker', stop reason = EXC_BAD_ACCESS (code=2, address=0x70000cc66560) frame #0: 0x0000000140d0db4b rspack.darwin-x64.node`swc_ecma_parser::parser::expr::ops::_$LT$impl$u20$swc_ecma_parser..parser..Parser$LT$I$GT$$GT$::parse_unary_expr::h29f49330a806839c(self=0x0000000000000000) at ops.rs:244 241 /// Parse unary expression and update expression. 242 /// 243 /// spec: 'UnaryExpression'\n-> 244 pub(in crate::parser) fn parse_unary_expr(&mut self) -> PResult> { 245 trace_cur!(self, parse_unary_expr); 246 let start = cur_pos!(self); 247\nTarget 0: (node) stopped.","breadcrumbs":"Debugging » rust-lldb","id":"35","title":"rust-lldb"},"36":{"body":"This discussion aims to illustrate the method for mixed debugging between JavaScript and Rust.","breadcrumbs":"Debugging » Mixed debug » Mixed Debugging Between JavaScript and Rust","id":"36","title":"Mixed Debugging Between JavaScript and Rust"},"37":{"body":"To illustrate this process, I'll use an example. Let's start by introduce the environment and example I have used. System: macos IDE: vscode Debugging target: rspack build ${projectRoot}/basic Firstly, you need to build rspack in debug mode. To do this, execute the following commands in the project's root directory: npm run build:binding:debug\nnpm run build:js","breadcrumbs":"Debugging » Mixed debug » Prerequisites","id":"37","title":"Prerequisites"},"38":{"body":"It's necessary to configure two debug configurations within in .vscode/launch.json. attach for node: { \"name\": \"attach:node”, \"request\": \"attach\", // refer: https://code.visualstudio.com/docs/editor/debugging#_launch-versus-attach-configurations \"type\": \"node\", // `9229` is the default port of message \"port\": 9229\n} and launch for lldb { \"name\": \"launch:rust-from-node\", \"request\": \"launch”, \"type\": \"lldb\", // it means we use `lldb` to launch the binary file of `node` \"program\": \"node”, \"args\": [ \"--inspect\", \"--enable-source-maps\", \"${workspaceFolder}/packages/rspack-cli/bin/rspack\", \"build\", \"-c\", \"${workspaceFolder}/examples/basic/rspack.config.js\", ], // `cwd` is just for repack find the correctly entry. \"cwd\": \"${workspaceFolder}/examples/basic/\"\n} Next, we can utilize compounds to amalgamate the two commands: { \"name\": \"mix-debug\", \"configurations\": [ \"attach:node\", \"launch:rust-from-node\" ]\n} Finally, your launch.json should appear as follows: { \"configurations\": [ { \"name\": \"attach:node\", \"request\": \"attach\", \"type\": \"node\", \"port\": 9229 }, { \"name\": \"launch:rust-from-node\", \"request\": \"launch\", \"type\": \"lldb\", \"program\": \"node\", \"args\": [ \"--inspect\", \"--enable-source-maps\", \"${workspaceFolder}/packages/rspack-cli/bin/rspack\", \"build\", \"-c\", \"${workspaceFolder}/examples/basic/rspack.config.js\", ], \"cwd\": \"${workspaceFolder}/examples/basic/\" } ], \"compounds\": [ { \"name\": \"mix-debug\", \"configurations\": [ \"attach:node\", \"launch:rust-from-node\" ] } ]\n}","breadcrumbs":"Debugging » Mixed debug » Configure launch.json in vscode","id":"38","title":"Configure launch.json in vscode"},"39":{"body":"Next, we can introduce some breakpoints and commence debugging. The result appears as follows: Your browser does not support the video tag.","breadcrumbs":"Debugging » Mixed debug » Debugging Attempt","id":"39","title":"Debugging Attempt"},"4":{"body":"If you are interested in understanding our project's direction and want to work on issues that are aligned with our priorities, our tracking issues list provides an overview of our progress and current goals.","breadcrumbs":"Getting started » Tracking Issue","id":"4","title":"Tracking Issue"},"40":{"body":"In this section, we'll explore how to profile Rspack for identifying bottlenecks. By examining where Rspack spends its time, we can gain insights into how to improve performance. Tracing Chrome Terminal Nodejs Profiling Mac Xcode Instruments","breadcrumbs":"Profiling » Profiling","id":"40","title":"Profiling"},"41":{"body":"tracing is used to instrumenting Rspack. The supported tracing levels for release builds are INFO, WARN and ERROR debug builds are TRACE, DEBUG, INFO, WARN and ERROR Two ways to enable tracing: if you are using @rspack/cli, you can enable it by RSPACK_PROFILE environment variable. if you are using @rspack/core without @rspack/cli, you can enable it by experimental_registerGlobalTrace and experimental_cleanupGlobalTrace, checkout how we implement RSPACK_PROFILE in @rspack/cli with these two function for more details.","breadcrumbs":"Profiling » Tracing","id":"41","title":"Tracing"},"42":{"body":"tracing-chrome is supported for viewing tracing information graphically. Setting the environment variable RSPACK_PROFILE=TRACE=layer=chrome before running Rspack, for example RSPACK_PROFILE=TRACE=layer=chrome rspack build produces a trace file (.rspack-profile-${timestamp}/trace.json) in the current working directory. The JSON trace file can be viewed in either chrome://tracing or ui.perfetto.dev .","breadcrumbs":"Profiling » Chrome","id":"42","title":"Chrome"},"43":{"body":"Granular tracing event values can be viewed inside the terminal via RSPACK_PROFILE=TRACE=layer=logger, for example RSPACK_PROFILE=TRACE=layer=logger rspack build will print the options passed to Rspack as well as each individual tracing event.","breadcrumbs":"Profiling » Terminal","id":"43","title":"Terminal"},"44":{"body":"If we find that the performance bottleneck is on the JS side (e.g. js loader), then we need to further analyse the js side, and we can use Nodejs Profiling to analyse. for example node --cpu-prof {rspack_bin_path} -c rspack.config.js or RSPACK_PROFILE=JSCPU rspack build this will generates a cpu profile like CPU.20230522.154658.14577.0.001.cpuprofile, and we can use speedscope to visualize the profile, for example npm install -g speedscope\nspeedscope CPU.20230522.154658.14577.0.001.cpuprofile","breadcrumbs":"Profiling » Nodejs Profiling","id":"44","title":"Nodejs Profiling"},"45":{"body":"Xcode instruments can be used to produce a CPU profile if you are on a Mac. To install Xcode Instruments, simply install the Command Line Tools: xcode-select --install For normal Rust builds, cargo instruments can be used as the glue for profiling and creating the trace file. Since Rspack takes quite a while to build, you can use the following procedure without invoking cargo instruments. It has the same effect. In crates/node_binding/Cargo.toml, turn on debug symbols and disable symbol stripping in the [profile.release] section [profile.release]\ndebug = 1 # debug info with line tables only\nstrip = false # do not strip symbols Then build the project pnpm run build:cli:release The final binary is located at packages/rspack-cli/bin/rspack once the project is built. Under the hood, cargo instruments invokes the xcrun command, which means we can run the following in our own project that uses Rspack. xcrun xctrace record --template 'Time Profile' --output . --launch -- /path/to/rspack/packages/rspack-cli/bin/rspack build It produces the following output Starting recording with the Time Profiler template. Launching process: rspack.\nCtrl-C to stop the recording\nTarget app exited, ending recording...\nRecording completed. Saving output file...\nOutput file saved as: Launch_rspack_2023-04-24_11.32.06_9CFE3A63.trace We can open the trace file by open Launch_rspack_2023-04-24_11.32.06_9CFE3A63.trace","breadcrumbs":"Profiling » Mac Xcode Instruments","id":"45","title":"Mac Xcode Instruments"},"46":{"body":"All releases are automated through GitHub actions. All published releases of @rspack/cli can be found on the npm versions page . They are tagged as latest with semver version x.y.z nightly canary","breadcrumbs":"Releasing » Releasing","id":"46","title":"Releasing"},"47":{"body":"The full release workflow is currently triggered manually every Tuesday with full release notes. The following 9 targets are built x86_64-unknown-linux-gnu aarch64-unknown-linux-gnu x86_64-unknown-linux-musl aarch64-unknown-linux-musl i686-pc-windows-msvc x86_64-pc-windows-msvc aarch64-pc-windows-msvc x86_64-apple-darwin aarch64-apple-darwin","breadcrumbs":"Releasing » Latest Full Release","id":"47","title":"Latest Full Release"},"48":{"body":"The nightly release workflow is triggered every day at UTC 16:00:07, which is 00:07 AM Beijing Time (offset with an odd minute to avoid cron jobs firing off at the same time). The nightly build fully replicates the full release build for catching errors early.","breadcrumbs":"Releasing » Nightly","id":"48","title":"Nightly"},"49":{"body":"Commenting on a PR with the text !canary triggers the canary release workflow . Only contributors have the permission to publish canary releases. The canary release only builds three targets for quicker feedback aarch64-apple-darwin x86_64-apple-darwin x86_64-unknown-linux-gnu","breadcrumbs":"Releasing » Canary","id":"49","title":"Canary"},"5":{"body":"We are always looking for contributors, and that goes beyond just our main repository. Check out these other ways to get involved and start making a difference today. The documentation website is at web-infra-dev/rspack-website This dev guide is at web-infra-dev/rspack-dev-guide Community packages is at https://github.com/rspack-contrib As a reminder, all contributors are expected to follow our Code of Conduct .","breadcrumbs":"Getting started » Other ways to contribute","id":"5","title":"Other ways to contribute"},"50":{"body":"Thank you for your interest in contributing to Rspack! There are many ways to contribute, and we appreciate all of them.","breadcrumbs":"Contribution procedures » Intro","id":"50","title":"Intro"},"51":{"body":"Fork the Rspack repository into your own GitHub account. Clone the repository to your local. Checkout a new branch from main. Set up the development environment, you can read the \"Setup Development Environment\" section below to learn about it. If you've fixed a bug or added code that should be tested, then add some tests. Make sure all the tests pass, you can read the \"Testing\" section below to learn about it. Run pnpm run lint:js and pnpm run lint:rs to check the code style. If you've changed some Node.js packages, you should add a new changeset . Run pnpm run changeset, select the changed packages and add the changeset info. If you've changed some Rust packages, you should add a new changeset for @rspack/binding package. Submit the Pull Request, make sure all CI runs pass. The maintainers will review your Pull Request soon. When submitting a Pull Request, please note the following: Keep your PRs small enough, so that each PR only addresses a single issue or adds a single feature. Please include an appropriate description in the PR, and link related issues.","breadcrumbs":"Contribution procedures » Sending a Pull Request","id":"51","title":"Sending a Pull Request"},"52":{"body":"The format of PR titles follow Conventional Commits. A example feat(ui): Add `Button` component\n^ ^ ^\n| | |__ Subject\n| |_______ Scope\n|____________ Type Your PR must have a Type Optionally have a Scope Scope should be lower case must have a Subject","breadcrumbs":"Contribution procedures » Format of PR titles","id":"52","title":"Format of PR titles"},"53":{"body":"The rspack repro template can be used to create a minimal reproducible example. A minimal reproducible example (MRE) is a code that is: Short Self-contained Demonstrates the problem being encountered An MRE is essential because it allows us to quickly understand and reproduce your issue. This, in turn, increases the likelihood of getting a helpful and accurate response in a shorter amount of time. It is important to note that an MRE should not include extraneous code related to unrelated functionality, and should instead focus solely on the problem at hand. Please see also How to create a Minimal, Reproducible Example from Stackoverflow.","breadcrumbs":"Minimal reproducible example » Minimal reproducible example","id":"53","title":"Minimal reproducible example"},"54":{"body":"If you need guidance or assistance with a specific area of the project, check out the CODEOWNERS file on GitHub. This file lists the preferred person to contact for each area.","breadcrumbs":"About the team » About the team","id":"54","title":"About the team"},"55":{"body":"This page explains the meanings of Rspack repository's labels. C Contribution welcome G Good first issue","breadcrumbs":"Managing labels » Managing labels","id":"55","title":"Managing labels"},"56":{"body":"","breadcrumbs":"Managing labels » C","id":"56","title":"C"},"57":{"body":"","breadcrumbs":"Managing labels » Contribution welcome","id":"57","title":"Contribution welcome"},"58":{"body":"","breadcrumbs":"Managing labels » G","id":"58","title":"G"},"59":{"body":"","breadcrumbs":"Managing labels » Good first issue","id":"59","title":"Good first issue"},"6":{"body":"This guide is meant to help document how Rspack works, as well as to help new contributors get involved in Rspack development.","breadcrumbs":"About this guide » About this guide","id":"6","title":"About this guide"},"60":{"body":"This is the architecture of current rspack implementation","breadcrumbs":"rspack » rspack","id":"60","title":"rspack"},"61":{"body":"loader","breadcrumbs":"rspack » Table of Contents","id":"61","title":"Table of Contents"},"62":{"body":"rspack#2780 rspack#2808","breadcrumbs":"rspack » loader » Related PRs","id":"62","title":"Related PRs"},"63":{"body":"The old architecture is a quite simple version, which only supports loaders for normal stage. Pitching loader does not put into consideration. The basic concept of the old version is to convert the normal loader to a native function which can be called from the Rust side. Furthermore, for performance reason, Rspack also composes loaders from the JS side to mitigate the performance issue of Node/Rust communications. In this new architecture, loaders will not be converted directly into native functions. Instead, it is almost the same with how webpack's loader-runner resolves its loaders, by leveraging the identifier. Every time Rspack wants to invoke a JS loader, the identifiers will be passed to the handler passed by Node side to process. The implementation also keeps the feature of composing JS loaders for performance reason.","breadcrumbs":"rspack » loader » Summary","id":"63","title":"Summary"},"64":{"body":"The refactor does not introduce any other breaking changes. So it's backwards compatible. The change of the architecture also help us to implement pitching loader with composability.","breadcrumbs":"rspack » loader » Guide-level explanation","id":"64","title":"Guide-level explanation"},"65":{"body":"Pitching loader is a technique to change the loader pipeline flow. It is usually used with inline loader syntax for creating another loader pipeline. style-loader, etc and other loaders which might consume the evaluated result of the following loaders may use this technique. There are other technique to achieve the same ability, but it's out of this article's topic. See Pitching loader for more detail.","breadcrumbs":"rspack » loader » Pitching loader","id":"65","title":"Pitching loader"},"66":{"body":"","breadcrumbs":"rspack » loader » Reference-level explanation","id":"66","title":"Reference-level explanation"},"67":{"body":"In the original implementation of loader, Rspack will convert the normal loaders in the first place, then pass it to the Rust side. In the procedure of building modules, these loaders will be called directly: Old architecture The loader runner is only on the Rust side and execute the loaders directly from the Rust side. This mechanism has a strong limit for us to use webpack's loader-runner for composed loaders. In the new architecture, we will delegate the loader request from the Rust core to a dispatcher located on the JS side. The dispatcher will normalize the loader and execute these using a modified version of webpack's loader-runner: image Loader functions for pitch or normal will not be passed to the Rust side. Instead, each JS loader has its identifier to uniquely represent each one. If a module requests a loader for processing the module, Rspack will pass identifier with options to the JS side to instruct the Webpack like loader-runner to process the transform. This also reduces the complexity of writing our own loader composer.","breadcrumbs":"rspack » loader » Actor of loader execution","id":"67","title":"Actor of loader execution"},"68":{"body":"Options will normally be converted to query, but some of the options contain fields that cannot be serialized, Rspack will reuse the loader ident created by webpack to uniquely identify the option and restore it in later loading process.","breadcrumbs":"rspack » loader » Passing options","id":"68","title":"Passing options"},"69":{"body":"As we had known before, each loader has two steps, pitch and normal. For a performance friendly interoperability, we must reduce the communication between Rust and JS as minimum as possible. Normally, the execution steps of loaders will look like this: image The execution order of the loaders above will looks like this: loader-A(pitch) loader-B(pitch) loader-C(pitch) loader-B(normal)\nloader-A(normal) The example above does not contain any JS loaders, but if, say, we mark these loaders registered on the JS side: image The execution order will not change, but Rspack will compose the step 2/3/4 together for only a single round communication.","breadcrumbs":"rspack » loader » Optimization for pitching","id":"69","title":"Optimization for pitching"},"7":{"body":"Please see prerequisites for setting up Rust and Node.js.","breadcrumbs":"Building and running » How to build and run the compiler","id":"7","title":"How to build and run the compiler"},"70":{"body":"This is the architecture of webpack implementation","breadcrumbs":"webpack » webpack","id":"70","title":"webpack"},"71":{"body":"loader dependency","breadcrumbs":"webpack » Table of Contents","id":"71","title":"Table of Contents"},"72":{"body":"Based on Webpack version: 5.73.0 . Explain how webpack loader works. Even though it's a little bit long and tedious, It's still a teeny-tiny peek at the loader system of Webpack.","breadcrumbs":"webpack » loader » Summary","id":"72","title":"Summary"},"73":{"body":"What's the meaning of a word used to describe a feature? Why does the Webpack introduce this and what's the background of introducing this? What kind of problem Webpack was facing at the time?","breadcrumbs":"webpack » loader » Glossary","id":"73","title":"Glossary"},"74":{"body":"import Styles from '!style-loader!css-loader?modules!./styles.css'; Inline loader syntax : The syntax that chains the loader together within the specifier, followed by the file requested. e.g. !style-loader!css-loader?modules!./style.css request: The request with inline loader syntax retained. Webpack will convert relative URLs and module requests to absolute URLs for loaders and files requested. e.g. !full-path-to-the-loader-separated-with-exclamation-mark!full-path-to-styles.css","breadcrumbs":"webpack » loader » Request Related","id":"74","title":"Request Related"},"75":{"body":"import xxx from \"./index.js?vue=true&style#some-fragment\" resource : The absolute path to the requested file with query and fragment retained but inline loader syntax removed. e.g. absolute-path-to-index-js.js?vue=true&style#some-fragment resourcePath : The absolute path to the requested file only. e.g. absolute-path-to-index-js.js resourceQuery : Query with question mark ? included. e.g. ?vue=true&style resourceFragment : e.g. #some-fragment inline match resource: Used to redirect the module.rules to another, which is able to adjust the loader chain. We will cover this later. Ref: related PR Webpack Doc1 Webpack Doc2 virtualResource: The proposed solution to support asset type changing(A sugar to inline matchResource, which can also affect the asset filename generation) See more: the background of this property","breadcrumbs":"webpack » loader » Resource Related","id":"75","title":"Resource Related"},"76":{"body":"Virtual Module: A kind of module that does not locate in the real file system. But you can still import it. To create a virtual module, you need to follow the spec and it's also worth noting that Node.js and Webpack both support it under the scheme of data:. Also known as, data: import. Doc to Node.js Module types with native support: Webpack supports the following module types native: 'javascript/auto' | 'javascript/dynamic' | 'javascript/esm' | 'json' | 'webassembly/sync' | 'webassembly/async' | 'asset' | 'asset/source' | 'asset/resource' | 'asset/inline', for those types you can use it without a loader . From webpack version 4.0+, webpack can understand more than javascript alone.","breadcrumbs":"webpack » loader » Others but also important to note","id":"76","title":"Others but also important to note"},"77":{"body":"","breadcrumbs":"webpack » loader » Guide-level explanation","id":"77","title":"Guide-level explanation"},"78":{"body":"The way that webpack controls what kind of module that each loader would apply is based on module.rules const MiniExtractCssPlugin = require(\"mini-extract-css-plugin\") module.exports = { module: { rules: [ { test: /\\.vue$/, use: [\"vue-loader\"] }, { test: /\\.css$/, use: [MiniExtractCssPlugin.loader, \"css-loader\"] } ] }, plugins: [new MiniExtractCssPlugin()]\n} Here is a simple option for the configuration of vue-loader. module.rules[number].test is a part rule to test whether a rule should be applied . For vue-loader alone, It's kind of confusing how webpack pass the result to the rule of css, we will cover this later. But for now, It's good to notice there is not only a test option alone to test if a rule should be applied . You can find it here for full conditions supported. Here're some examples of other conditions you can use. module.exports = { module: { rules: [ { test: /\\.vue$/, // of course, test if the file extension match `vue`. scheme: \"data\", // if the specifier of a request starts with `data:` resourceQuery: \"?raw\", // if the `resourceQuery` matches then the rule will be applied. For this example, it's a great idea to apply a `raw-loader` here. type: \"css\" // use webpack's native resource handling for css } ] }\n}","breadcrumbs":"webpack » loader » Loader configuration","id":"78","title":"Loader configuration"},"79":{"body":"","breadcrumbs":"webpack » loader » Examples","id":"79","title":"Examples"},"8":{"body":"Install Node.js dependencies via pnpm . # enable pnpm with corepack, only available on node >= `v14.19.0`\ncorepack enable # or install pnpm directly\nnpm install -g pnpm@7 # Install dependencies\npnpm install","breadcrumbs":"Building and running » Install Node.js dependencies","id":"8","title":"Install Node.js dependencies"},"80":{"body":"In a single file component(SFC) of Vue, there are commonly three blocks or more blocks( custom blocks ) contained. The basic idea of implementing this loader is to convert it into JavaScript / CSS and let webpack handle the chunk generation(e.g. Style should be generated into a separate .css file) ⬇️⬇️⬇️⬇️⬇️⬇️ Vue-loader will firstly turn into the *.vue file into something like that. import \"script-path-to-vue-sfc\";\nimport \"template-path-to-vue-sfc\";\nimport \"style-path-to-vue-sfc\"; You may find it weird how webpack handles these imports and build the transformed code. But if I change the code a little bit, you will find the idea. import \"script:path-to-vue-sfc\";\nimport \"template:path-to-vue-sfc\";\nimport \"style:path-to-vue-sfc\"; and if we tweak the configuration a little bit to this, webpack will know exactly how to work with these import statements. module.exports = { module: { rules: [ { test: /\\.vue$/, use: [\"vue-loader\"] }, { scheme: \"script\", use: [\"apply-your-javascript-loader\", \"vue-script-extract-loader\"] }, { scheme: \"template\", use: [\"apply-your-javascript-loader\", \"vue-template-extract-loader\"] }, { scheme: \"style\", use: [\"apply-your-style-loader\", \"vue-style-extract-loader\"] } ] }\n} We added a few loaders to handle the splitting. I know it's still kind of weird here, but please stick with me and we will find a better way out. vue-script-extract-loader: extract the script block from a SFC file. vue-style-extract-loader: extract the style block from a SFC file. vue-template-extract-loader: extract the template block from a SFC file and convert it into JavaScript. You will find it's really noisy only to transform a *.vue file, four loaders were introduced and I believe none of you would like to separate a simple loader into four. It's a real bummer! It will be great to use a single loader vue-loader alone. The current vue loader implementation uses resourceQuery to handle this. But how? Loader optimizations I We know that webpack uses a few conditions to handle whether a rule should be applied. Even with rule.test alone, the this.reousrceQuery is still available to loaderContext which developer could access it with this in any loader function(Don't worry if you still don't catch this. You will understand this after). Based on that, we change the rule to this: module.exports = { module: { rules: [ { test: /.vue$/, use: [\"vue-loader\"] } ] }\n} This indicates \"If an import specifier is encountered, please pass me to vue-loader\"! If you remember the import transformation above, we could adjust the transformation a little bit to this: Before import \"script-path-to-vue-sfc\";\nimport \"template-path-to-vue-sfc\";\nimport \"style-path-to-vue-sfc\"; After import \"path-to-vue-sfc.vue?script=true\";\nimport \"path-to-vue-sfc.vue?template=true\";\nimport \"path-to-vue-sfc.vue?style=true\"; These requests will match the test: /.vue$/ above flawlessly and in the loader we can handle like this: // pseudo code only for proofing of the concept\nconst compiler = require(\"some-vue-template-compiler\") const loader = function(source) { const { resourceQuery /* ?script=true or something else */, resourcePath /* path-to-vue-sfc.vue */ } = this if (resourceQuery === \"?script=true\") { return compiler.giveMeCodeofScriptBlock(this.resourcePath) // javascript code } else if (resourceQuery === \"?template=true\") { return compiler.giveMeCodeofTemplateBlock(this.resourcePath) // javascript code } else if (resourceQuery === \"?style=true\") { return compiler.giveMeCodeofStyleBlock(this.resourcePath) // style code } else { return ` import `${this.resourcePath}?script=true`; import `${this.resourcePath}?template=true`; import `${this.resourcePath}?style=true`; ` }\n} module.exports = loader You can see the loader for the example above will be used for four times. Encounter a *.vue file, transform the code to a few import statements For each import statement introduced in the first transformation, the loader will be used again as they share the same extension vue. Is this the end? No! Even if you wrote the code like this, it will still fail to load. For CSS: You haven't tell webpack a way to handle the CSS, remember the CSS part is required to go through the css-loader and then mini-css-extract(if you want to generate CSS for chunk) or style-loader(if you want to append it directly to the DOM). After all, you have to make the result of style to pass these loaders. For JS: You haven't transformed the code to any transpilers, It will be failed if your runtime doesn't support the syntax(maybe in TypeScript for example) and webpack internal acorn compiler does not have the ability to help you with that. Pass the code to the corresponding loaders We tweak the configuration a little bit again. module.exports = { module: { rules: [ { test: /.vue$/, use: [\"vue-loader\"] }, { test: /.css$/, use: [MiniCssExtractPlugin.loader, \"css-loader\"] }, { test: /.js$/, use: [\"babel-loader\"] } ] }\n} It looks a bit more like the \"normal\" Webpack configuration. Note that the rule.test is based on the file extension, so vue-loader did a little bit of hack here. // pseudo code only for proofing of the concept\nconst compiler = require(\"some-vue-template-compiler\") const loader = function(source) { const { resourceQuery /* ?script=true or something else */, resourcePath /* path-to-vue-sfc.vue */ } = this if (resourceQuery === \"?script=true\") { const code = compiler.giveMeCodeofScriptBlock(this.resourcePath) // javascript code this.resourcePath += \".js\" return code } else if (resourceQuery === \"?template=true\") { const code = compiler.giveMeCodeofTemplateBlock(this.resourcePath) // javascript code this.resourcePath += \".js\" return code } else if (resourceQuery === \"?style=true\") { const code = compiler.giveMeCodeofStyleBlock(this.resourcePath) // style code this.resourcePath += \".css\" // based on the `lang` in each script, the extension will be set accordingly. return code } else { return ` import `${this.resourcePath}?script=true`; import `${this.resourcePath}?template=true`; import `${this.resourcePath}?style=true`; ` }\n} module.exports = loader Webpack uses resourcePath to match a module.rules. So this hack will let webpack treat blocks accordingly as if they are real files with extensions of js | css |... . Finally! But this is only a proof of concept, for the real implementation. You should definitely check out the vue-loader yourself. Loader Optimization II Well done! We implemented a simple and rudimentary version of vue-loader. However, the real pain-in-the-ass part of this implementation is hacking the extension to match the configuration. But since almost every user would have other js | css files included in the project, so vue team decide to use this kind of strategy to reuse the user configuration. Except for hacking the extension, webpack then provided a more legit way to handle this kind of rule matching problem which is known as inline match resource (We covered it in the glossary part). inline match resource Webpack can do almost anything with an import specifier like the loader chaining we covered in the glossary part. Inline source match is another case. By taking the advantage of it, you can force an import statement to go through a module.rules by introducing the !=! syntax. For example, if we want to force a css file to go through a less loader, it will be look like this: module.exports = { module: { rules: [ { test: /.less$/, use: [\"style-loader\", \"css-loader\", \"less-loader\"] } ] }\n} // This import should be converted with a loader // treat the file as `less`\nimport \"./index.css.less!=!./index.css\" The slice before the !=! is a way to modify the extension of a single file and force it to match the module.rules and this transformation is often done in a loader, or you will make your application code specialized for Webpack only. After going through the basic example, let's see how we're going to optimize out the hack used in vue-loader. // pseudo code only for proofing of the concept\nconst compiler = require(\"some-vue-template-compiler\") const loader = function(source) { const { resourceQuery /* ?script=true or something else */, resourcePath /* path-to-vue-sfc.vue */ } = this if (resourceQuery === \"?vue=true&script=true\") { return compiler.giveMeCodeofScriptBlock(this.resourcePath) // javascript code } else if (resourceQuery === \"?vue=true&template=true\") { return compiler.giveMeCodeofTemplateBlock(this.resourcePath) // javascript code } else if (resourceQuery === \"?vue=true&style=true\") { return compiler.giveMeCodeofStyleBlock(this.resourcePath) // style code } else { return ` import `${this.resourcePath}.js!=!${this.resourcePath}?vue=true&script=true`; import `${this.resourcePath}.js!=!${this.resourcePath}?vue=true&template=true`; import `${this.resourcePath}.css!=!${this.resourcePath}?vue=true&style=true`; ` }\n} module.exports = loader Webpack will internally use the match resource part(before !=!) as the data to match loaders. In order to let vue-loader match the resource. We have two options: Loose test Inline loader syntax 1. Loose test module.exports = { module: { rules: [ { test: /\\.vue/, // original: `/\\.vue$/`, we removed the `$` to allow resources with `.vue` included to match this rule. use: [\"vue-loader\"] } ] }\n} We removed the $ to allow resources with .vue included matching this rule. Personally speaking, this is not a good idea, because a loose match might cause mismatches. 2. Inline loader syntax // vue-loader/index.js module.exports = function() { // ... code omitted return ` import `${this.resourcePath}.js!=!${__filename}!${this.resourcePath}?vue=true&script=true`; import `${this.resourcePath}.js!=!${__filename}!${this.resourcePath}?vue=true&template=true`; import `${this.resourcePath}.css!=!${__filename}!${this.resourcePath}?vue=true&style=true`; `\n} This technique is to take advantage of the inline loader syntax to force the loader to go through the vue loader. This tackles down the tangible mismatching ideally and we can still retain the test regex /\\.vue$/ as-is. Final art and conclusion Configuration module.exports = { module: { rules: [ { test: /\\.vue$/, use: [\"vue-loader\"] }, // ... other rules for js, or css, etc. ] } } Loader // pseudo code only for proofing of the concept\nconst compiler = require(\"some-vue-template-compiler\") const loader = function(source) { const { resourceQuery /* ?script=true or something else */, resourcePath /* path-to-vue-sfc.vue */ } = this if (resourceQuery === \"?vue=true&script=true\") { return compiler.giveMeCodeofScriptBlock(resourcePath) // javascript code } else if (resourceQuery === \"?vue=true&template=true\") { return compiler.giveMeCodeofTemplateBlock(resourcePath) // javascript code } else if (resourceQuery === \"?vue=true&style=true\") { return compiler.giveMeCodeofStyleBlock(resourcePath) // style code } else { return ` import `${this.resourcePath}.js!=!${__filename}!${resourcePath}?vue=true&script=true`; import `${this.resourcePath}.js!=!${__filename}!${resourcePath}?vue=true&template=true`; import `${this.resourcePath}.css!=!${__filename}!${resourcePath}?vue=true&style=true`; ` }\n} module.exports = loader Conclusion Vue-loader is quite complex. The basic needs of the loader are: Separate a *.vue file request into a number of parts. For each block, explicitly change the resource matching mechanism (using inline match resource ). The killer inline match resource not only gives us great composability with user-defined loaders, but also the ability to interact with webpack supported native types, and we will cover this part late. When requesting the vue-loader again for a block, the code of each block is returned and let webpack handle the changed matched resource(e.g. ./App.vue.css) with user-defined loaders (Webpack did this internally).","breadcrumbs":"webpack » loader » Vue(1 to n)","id":"80","title":"Vue(1 to n)"},"81":{"body":"We know that webpack only supports JavaScript in the old time, from the version of 4.0.0+( changelog ) Simplified pre-processor's configuration With the experimental support of CSS. A.K.A webpack knows how to handle CSS files natively. Before module.exports = { module: { rules: [ { test: /\\.less$/, use: [\"style-loader\", \"css-loader\", \"less-loader\"], type: \"javascript/auto\" // this field is a implicit one, if not defined, it will be set to `\"javascript/auto\"` } ] }\n} After module.exports = { module: { rules: [ { test: /\\.less$/, use: [\"less-loader\"], type: \"css\" } ] }, experiments: { css: true }\n} With experiments.css on, webpack can experimentally understand the parsing and generating of css files which gets rid of css-loader and style-loader. For the full list of natively supported Rule.type, you can find it here . Asset modules From webpack 4.0.0+ , assets are supported natively module.exports = { module: { rules: [ { test: /\\.(png|jpg)/, type: \"asset\" } ] }\n} Rule.type === \"asset\" indicates the asset will be automatically tested whether it's going to be inlined or emitted as a file on the real file system. The possible options are: 'asset' | 'asset/source' | 'asset/resource' | 'asset/inline'","breadcrumbs":"webpack » loader » Use natively supported module types","id":"81","title":"Use natively supported module types"},"82":{"body":"Webpack loader will read the source to a UTF-8 string by default. For SVG files, this would fit the webpack load defaults. // Proof of concept of svgr-loader\nmodule.exports = function(source) { if (this.resourceQuery === \"?svgr=true\") { // the real transform part let { code } = svgrTransformer.transform(source); return code } return `require(\"${this.resourcePath}.jsx!=!${__filename}!${this.resourcePath}?svgr=true\")` // the request part\n} Again here we use double-pass to firstly convert each request to the request part with inline match resource , and do the real request with query ?svgr=true, and let inline match resource handle the jsx conversion. Before that, we have to call a third-party jsx transformer, could be ESBuild for example, for which we cannot reuse other module.rules set by the user-side. Inline match resource saved our ass again!","breadcrumbs":"webpack » loader » Svgr","id":"82","title":"Svgr"},"83":{"body":"Supported in Webpack version 5.38.0 , doc: Rule.scheme // JavaScript\nimport x from \"data:text/javascript,export default 42\"\nconsole.log('x:',x); /* CSS */\n@import (\"data:text/css, body { background: #fff; }\"); Webpack handles data: imports for JavaScript internally.","breadcrumbs":"webpack » loader » Scheme imports","id":"83","title":"Scheme imports"},"84":{"body":"Asset : This is a general term for the images, fonts, media, and any other kind of files that are typically used in websites and other applications. These typically end up as individual files within the output but can also be inlined via things like the style-loader or url-loader . Originally posted at Webpack Glossary Default resource reading override Asset could be formatted in both text(*.svg) or binary (*.png / *.jpg). For loaders, webpack provides you an option raw to override the default and built-in resource reading strategy from UTF-8 string to Buffer: module.exports = function(source /* Buffer */ ) { // loader implementation\n} module.exports.raw = true Transform and rename Image there is a need to transform an asset formatted with png to jpg. There is two abilities that webpack needs to support: Handle the asset with raw content, or a Buffer. We can simply override the default resource reading behavior by exporting raw(covered before). Change the filename, and reuse the loader for both png and jpg Configuration module.exports = { module: { rules: [ { test: /\\.png/, use: [\"png-to-jpg-loader\"] // some png to jpg loader, we will implement this }, { test: /\\.jpg/, use: [\"jpg-optimizer\"] // some jpg optimizer, we will not covert this, type: \"asset/resource\" } ] }\n} Rule1: For files with extension png, we want to use a png to jpg loader, which will be covered in this article. Rule2: For files with extension jpg, we want to use a third-party jpg-optimizer, which will not be covered in this article. type: \"asset/resource\": As soon as all the loaders have gone through, we want webpack to emit the file as an external resource on the file system regardless of the file size(type: \"asset\" will automatically detect the size of an asset to determine whether an asset will be inline-included for dynamically imported from file system). For those jpg files converted from png, we want them to apply with the jpg-optimizer too(i.e. reuse the loaders defined in module.rules) Loader module.exports = function(source) { if (this.resourceQuery === \"?pngToJPG=true\") { return pngToJpg.transform(source) } return `require(\"${this.resourcePath}.jpg!=!${__filename}${this.resourcePath}?pngToJPG=true\")`\n} module.exports.raw = true We use double-pass again, firstly we convert the extension to .jpg which will apply the matched rules(in this case test: /\\.jpg/), after the transformation of png-to-jpg-loader. Generated asset module filename will be based on the inline match resource , which is xxxx.jpg in this case.","breadcrumbs":"webpack » loader » Asset transform and rename","id":"84","title":"Asset transform and rename"},"85":{"body":"Webpack provides a way to pass metadata(the forth parameter) among the chaining loaders doc . The most commonly used value is webpackAST which accepts an ESTree compatible(webpack internally uses acorn) AST, which hugely improves the performance since webpack instead of parsing the returned code to AST again, will directly use the AST(webpackAST) returned from a loader (But the work of a complete walking of an AST can not be omitted as it's necessary for webpack for do some analysis for its dependencies and will be only done once, so it is not a big overhead.) module.exports = function(source) { let ast = AcornParser.parse(source, { // options }) this.callback(null, '', null, { webpackAST: ast })\n} Good to note that only ESTree is compatible, so you cannot pass a CSS AST, or webpack will complain with \"webpackAst is unexpected for the CssParser\". It will be ok if you don't get this, let's move to the reference-level explanation for analysis in-depth.","breadcrumbs":"webpack » loader » AST reuse","id":"85","title":"AST reuse"},"86":{"body":"This is the reference-level explanation part of webpack's internal loader implementation.","breadcrumbs":"webpack » loader » Reference-level explanation","id":"86","title":"Reference-level explanation"},"87":{"body":"If you don't quite get this concept, you may refer to the Glossary and Example part of the Guide-level explanation first and pick up this as soon as you finished. The high-level idea of previously talked inline match resource is to let loader developers to customize the behavior of matching to match the pre-defined module.rules. It's an API to write composable loaders. But what does composition mean? For those users who are familiar with React hooks and Vue composable APIs, you may get this faster. Actually, webpack provides a lot of ways to help loader developers and users do the composition. User-defined loader flows module.exports = { module: { rules: [ { test: /\\.js$/, use: [\"babel-loader\"], type: \"javascript/auto\" }, { test: /\\.svg$/, use: [\"svgr-loader\", \"svgo-loader\"], } ] }\n} Webpack users can take the advantage of module.rules[number].use with a loader list for each request that matches the corresponding conditions. Note that I use the wording of request, not the file , which can include a request to data:text/javascript not the files on the real file system only. (In Parcel bundler, it's called pipelines , but this will not be covered in this article.) Apparently, user-declared loader flow is not able to cover up every case that a loader wants. You can see from the previous examples, vue-loader wants to split a file into many blocks, and remain the reference to it. svgr-loader wants to do the transformation first and let other loaders deal with the jsx. svg-loader wants to use the internal ability of Asset Module to let Webpack decide whether an asset is inlined or emitted to the real file system. and there are more to come... Based on the complexity of the loader, Webpack also provides a syntax to allow loader implementors to do the composition by themselves. The syntax for loader composition Inline loader syntax (Chaining loaders) Supported from webpack v1 chaining-loaders It's possible to specify loaders in an import statement, or any equivalent \"importing\" method . Separate loaders from the resource with !. Each part is resolved relative to the current directory. doc import Styles from '!style-loader!css-loader?modules!./styles.css'; The inline loader syntax executes each loader for each request from right to left. Webpack handles the interaction with user-defined loaders carefully. So by default, the user-defined normal loader will be executed prior to the inline loaders, you can disable this behavior by prefixing ! , (full reference could be found here doc ). The custom specifier is parsed before the module.rules as the inline loader syntax interferes the user-defined loaders(See the source code ). Then, webpack will get the module.rules combined with the required conditions to calculate the matching rule set (See the source code ). At the moment, you cannot change the matching behavior with the syntax, loaders are always matched with the provided resourcePath , etc, which leads to a bunch of hack code in the implementations of loaders (see this code snippet in vue-loader). The possibilities for changing the matching behavior leaves to the later-coming inline match resource . Nevertheless, the architecture of Loader at this moment is sound and solid. Another good example is the implementation-nonrelative filter(i.e. the filtering logic of Loader is not declared in the loader itself), which is the fundamental root of loader composition, or the implementor will do a lot of hacks. (It's way too dirty to talk about here, but you can take the rollup svgr plugin as a reference) In conclusion, inline loader syntax gives us a chance to control the loader flow with user-defined rules. Inline match resource To extend the matching ability, inline match resource enables loader implementors to reuse some of the user-defined configurations with more flexibilities. On top of the previous example, webpack also provides a way to make use of the natively-supported module types . // For module type `css` to work, you need to enable `experiments.css`\nimport \"./style.less.webpack[css]!=path-to-less-loader!./style.less\" // webpack.config.js\nmodule.exports = { experiments: { css: true }\n} Given the configuration above, the overview of the complete flow will be like this: Webpack: Parse the specifier of the import and create the loader for the current request Webpack: Merge the result from the second step with a user-defined module.rules in webpack.config, in this case is [] Webpack: load style.less as UTF-8 string Less-loader: Accept the UTF-8 string as the first parameter of the loader function and transform it to the content of css. Webpack: Call the registered native CSS parser, and later at the code generation step the registered native CSS generator generates the result. For asset modules , you can also use this: import \"./logo.png.jpg.webpack[asset/resource]!=path-to-loaders!./logo.png\" The first part, also known as matchResource will be used as a part of the filename of the final code generation. (See the source code )","breadcrumbs":"webpack » loader » Loader composability","id":"87","title":"Loader composability"},"88":{"body":"Before moving on to the detailed implementations, here's some glossary to support your understanding the architecture as a whole. Glossary NormalModuleFactory: A factory used to create a NormalModule, which basically exposes a create method. NormalModule: A module in Webpack most of the time is a NormalModule, but with different implementations of parser/ generator / Module Type, the module could be almost any kind, and also exposes a build method. For example, a NormalModule with JavaScript parser, JavaScript generator, and type ===javascript/auto will be regarded as a module with JavaScript-related functionalities. Also, good to note that a module may not exist on the real file system, taking data: for example. The module creation workflow This will only introduce a slice of webpack's internal implementation from the Loader's perspective , for more you should directly refer to the source code. When an import statement is detected, webpack will initialize a module creation. Based on the type of Dependency (an abstraction of webpack, it's not important here), webpack can find the linked ModuleFactory (The abstraction class), in most cases, the derived factory is NormalModuleFactory, which exposes a create method. Prepare data needed for module creation The NormalModuleFactory#create is used to provide enough information to create a real NormalModule, and create the NormalModule. In the create method, webpack basically does these things(some non-loader related stuff will be omitted): Resolve loaders from request: resolve the request, parse inline loader syntax: This contains inline match resource , inline loader syntax . Do the analysis on the parsed loader syntax, to decide whether a user-defined normal/post/pre loader is going to be included. doc Resolve Resource: resolve resource to the absolute path, fragments, queries, etc(These stuff are also provided in LoaderContext). For the full source code you may refer to this Use the resolved resource data to match module.rules defined in the configuration, and get the matched rules. This is also a part of the module creation data. Do some special logic with inline match resource , since match resource ends like .webpack[css] would change Rule.type. Also store the match resource data, since it might affect the filename generation for asset modules . Create a module based on the prepared data After the data needed for module creation is prepared, NormalModuleFactory will new NormalModule with the data provided. It contains basically every that a NormalModule needs (see the source code ). Most importantly, the loaders. It contains every loader parsed and ordered from the create step. The module build step The module build step is kind of clear. Webpack will invoke the build method for each NormalModule instance, which invokes loader-runner(see the source code ) to go through every loader that was analyzed from the create step. It's clear to know that the composition of loaders is happening on the same module . A peek of the support of Module Types As far as this article goes, It might be getting a little bit tedious. But have you ever wondered how webpack supports these module types natively? I think It's still worth telling you about it to get a more complete understanding of the AST optimizations. For the support of JavaScript, webpack's JavaScript plugin will register different types of parser and generators for each module types , which will be used as the parser / generator to a NormalModule (see the source code ). Reusing AST in Webpack Based on the parser and generator we introduced before, webpack did a little hack around the fourth parameter of this.callback (from loaderContext ), with webpackAST, after each loader call, the webpackAST will be stored in the context of loader, and passed again to the next loader. Finally, the AST will be passed to the parser(It could be any type, based on the module type , but webpack makes it a JavaScript only for AST) (see the source code ). Here's an issue about trying to use SWC's AST to get rid of the time sensitive code parsing from Acorn Parser, but they are facing some AST compatibility issues and performance issues about the overhead of interop with native code(Rust).","breadcrumbs":"webpack » loader » Performance optimizations","id":"88","title":"Performance optimizations"},"89":{"body":"loader plugin api design (Analysis) #315 RFC-011 Supports data:text/javascript protocol #457 Webpack: matchResource with natively-supported module types doc Webpack: Loader context doc Webpack: Module rules doc SWC-loader for performance optimizations issue","breadcrumbs":"webpack » loader » References","id":"89","title":"References"},"9":{"body":"Run cargo build to compile Rust code. Run pnpm run build:cli:debug to compile both Node.js and Rust code. The built binary is located at packages/rspack-cli/bin/rspack.","breadcrumbs":"Building and running » Building Rspack","id":"9","title":"Building Rspack"},"90":{"body":"Based on Webpack version: 5.73.0 . Some source code is omitted for cleaner demonstration in the example. Explain how webpack dependency affects the compilation and what kind of problem that webpack was facing at the moment and the solution to the problem.","breadcrumbs":"webpack » dependency » Summary","id":"90","title":"Summary"},"91":{"body":"What's the meaning of a word used to describe a feature? Why does the Webpack introduce this and what's the background of introducing this? What kind of problem Webpack was facing at the time?","breadcrumbs":"webpack » dependency » Glossary","id":"91","title":"Glossary"},"92":{"body":"Dependency(fileDependency) : An existing dependency that is marked as watchable. This is the widely-used type of dependency. CSS Preprocessors like postcss strongly depend on this in order to mark its dependency watchable. ContextDependency : Most useful for requests in which Glob and Regexp were used. For real-world usage, see [ this ](https://webpack.js.org/guides/dependency-management/#require-with-expression). MissingDependency : A missing dependency to mark it watchable (handles the creation of files during compilation before watchers are attached correctly.) BuildDependency : Related to persistent cache. PresentationalDependency: Dependencies that only affect presentation are mostly used with their associated template.","breadcrumbs":"webpack » dependency » High-level presentations of Dependencies","id":"92","title":"High-level presentations of Dependencies"},"93":{"body":"LoaderContext : Context provided by Webpack loader-runner , which can be accessed through this in each loader function. ModuleGraph: A graph to describe the relationship between modules.","breadcrumbs":"webpack » dependency » Others","id":"93","title":"Others"},"94":{"body":"","breadcrumbs":"webpack » dependency » Guide-level explanation","id":"94","title":"Guide-level explanation"},"95":{"body":"dependency(fileDependency) stands for the file dependency among missingDependency and contextDependency, etc. The created dependency will be marked as watchable, which is useful in Hot Module Replacement in developer mode. The implicit behavior for webpack internally in the case below is to create two dependencies internally. import foo from \"./foo\";\nimport \"./style.css\";","breadcrumbs":"webpack » dependency » Dependency","id":"95","title":"Dependency"},"96":{"body":"contextDependency is mostly used in scenarios where we want to dynamic load some module in runtime. In this case, webpack cannot assure which module it will be included in the final bundle at compile time. In order to make the code runnable in runtime, webpack has to firstly create multiple bundle modules corresponding to the matching filename such as ./components/a.js and ./components/b.js, etc. // index.js\nimport(\"./components\" + componentName).then(...) // components/a.js\n...\nexport default ComponentA; // components/b.js\n...\nexport default ComponentB; For loaders, you can access to this.addContextDependency in each loader function. For plugins, you can access via module.buildInfo.contextDependencies.","breadcrumbs":"webpack » dependency » ContextDependency","id":"96","title":"ContextDependency"},"97":{"body":"The abstraction of Dependency of Webpack was introduced in Webpack version 0.9 with a big refactor. Redirect to the commit","breadcrumbs":"webpack » dependency » Reference-level explanation","id":"97","title":"Reference-level explanation"},"98":{"body":"","breadcrumbs":"webpack » dependency » Stakeholders of Dependency","id":"98","title":"Stakeholders of Dependency"},"99":{"body":"image-20220919171608629","breadcrumbs":"webpack » dependency » High-level","id":"99","title":"High-level"}},"length":134,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"1":{".":{"0":{"df":1,"docs":{"124":{"tf":1.7320508075688772}}},"1":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}},"0":{":":{"0":{"7":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":1,"docs":{"35":{"tf":1.4142135623730951}},"x":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"4":{"0":{"d":{"0":{"d":{"b":{"4":{"b":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{".":{"0":{".":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"35":{"tf":1.0}}},"6":{":":{"0":{"0":{":":{"0":{"7":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"13":{"tf":2.8284271247461903}}},"df":3,"docs":{"109":{"tf":1.7320508075688772},"45":{"tf":1.0},"80":{"tf":1.0}}},"2":{"/":{"3":{"/":{"4":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"2":{"2":{"0":{"9":{"1":{"9":{"1":{"7":{"1":{"6":{"0":{"8":{"6":{"2":{"9":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"4":{"1":{"6":{"2":{"4":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"1":{"9":{"8":{"6":{"1":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"3":{"0":{"0":{"2":{"2":{"0":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"2":{"9":{"7":{"6":{"5":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{"3":{"2":{"7":{"7":{"2":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"2":{"6":{"5":{"6":{"4":{"6":{"8":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"5":{"5":{"3":{"2":{"1":{"5":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{"5":{"0":{"7":{"3":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"2":{"3":{"2":{"2":{"8":{"1":{"4":{"6":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"5":{"8":{"3":{"2":{"7":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"2":{"0":{"7":{"3":{"9":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"1":{"8":{"0":{"9":{"1":{"5":{"3":{"2":{"6":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"1":{"1":{"0":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{"df":1,"docs":{"35":{"tf":1.0}}},"2":{"df":1,"docs":{"35":{"tf":1.0}}},"3":{"df":1,"docs":{"35":{"tf":1.0}}},"4":{"df":1,"docs":{"35":{"tf":1.0}}},"5":{"df":1,"docs":{"35":{"tf":1.0}}},"6":{"df":1,"docs":{"35":{"tf":1.0}}},"7":{"df":1,"docs":{"35":{"tf":1.0}}},"_":{"1":{"1":{".":{"3":{"2":{".":{"0":{"6":{"_":{"9":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"3":{"a":{"6":{"3":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"109":{"tf":1.0},"80":{"tf":1.0}}},"3":{"1":{"5":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"83":{"tf":1.0}}},"5":{"7":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"3":{"8":{".":{"0":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{".":{"0":{"df":2,"docs":{"72":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"9":{"2":{"2":{"9":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"47":{"tf":1.0}}},"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"52":{"tf":1.0}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"_":{".":{"d":{"(":{"_":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"_":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"(":{"_":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"_":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"29":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"_":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"0":{"_":{"_":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":2.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"a":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}}},".":{"df":0,"docs":{},"k":{".":{"a":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"6":{"4":{"df":2,"docs":{"47":{"tf":2.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"65":{"tf":1.0},"80":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"v":{"df":7,"docs":{"104":{"tf":1.0},"109":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.0},"69":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"74":{"tf":1.0},"75":{"tf":2.0},"88":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"104":{"tf":1.0},"88":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"80":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"51":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"109":{"tf":1.0},"65":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"80":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"46":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"df":7,"docs":{"103":{"tf":1.0},"109":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":2.23606797749979},"52":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"=":{"0":{"df":0,"docs":{},"x":{"7":{"0":{"0":{"0":{"0":{"c":{"c":{"6":{"6":{"5":{"6":{"0":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"51":{"tf":1.0}}}}}}},"df":4,"docs":{"103":{"tf":1.0},"110":{"tf":1.0},"51":{"tf":1.0},"80":{"tf":1.0}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"75":{"tf":1.0},"80":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"80":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"75":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"{":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"|":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"36":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"4":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":3,"docs":{"53":{"tf":1.0},"80":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"109":{"tf":1.0},"5":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.4142135623730951}},"i":{"df":3,"docs":{"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0}}}},"z":{"df":3,"docs":{"11":{"tf":1.0},"32":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"103":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"p":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":1,"docs":{"45":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"38":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"80":{"tf":1.0}},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"128":{"tf":1.0},"131":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951}},"i":{"c":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.0}}},"df":7,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"78":{"tf":2.23606797749979},"80":{"tf":2.0},"84":{"tf":1.4142135623730951}}},"y":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"109":{"tf":2.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"114":{"tf":1.0},"51":{"tf":1.0}}}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"109":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"70":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"g":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"80":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"l":{"df":3,"docs":{"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"133":{"tf":1.0}}},"s":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951}}}},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"76":{"tf":1.0},"81":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"76":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"76":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"110":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"81":{"tf":2.449489742783178},"84":{"tf":3.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"109":{"tf":2.23606797749979},"92":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}}},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":2,"docs":{"85":{"tf":2.6457513110645907},"88":{"tf":2.449489742783178}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"38":{"tf":2.0}}},"df":0,"docs":{}}}},"df":2,"docs":{"38":{"tf":2.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"103":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0}}}},"df":1,"docs":{"46":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"8":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}}},"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"80":{"tf":1.0},"87":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{")":{"[":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"1":{"1":{"8":{"0":{"2":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":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":{"73":{"tf":1.0},"75":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"104":{"tf":1.7320508075688772}}}},"df":2,"docs":{"104":{"tf":1.0},"106":{"tf":2.0}}},"s":{"df":0,"docs":{},"e":{"df":9,"docs":{"110":{"tf":1.0},"114":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.0},"90":{"tf":1.0}}},"i":{"c":{"df":6,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"63":{"tf":1.0},"80":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":2,"docs":{"133":{"tf":1.0},"53":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"102":{"tf":1.0},"35":{"tf":1.0},"42":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"{":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"|":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"20":{"tf":2.449489742783178},"26":{"tf":2.449489742783178},"84":{"tf":1.0},"87":{"tf":2.0},"95":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"j":{"df":1,"docs":{"48":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.0},"51":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"104":{"tf":1.0},"36":{"tf":1.4142135623730951},"69":{"tf":1.0},"93":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"85":{"tf":1.0},"97":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"38":{"tf":1.0},"45":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.0}}}}},"d":{"df":4,"docs":{"114":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":3,"docs":{"72":{"tf":1.0},"80":{"tf":2.449489742783178},"88":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"80":{"tf":3.1622776601683795},"87":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"n":{"d":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"127":{"tf":1.0}},"h":{"df":3,"docs":{"76":{"tf":1.0},"84":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"40":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"113":{"tf":1.4142135623730951},"51":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"64":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"u":{"df":1,"docs":{"35":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}}}}},"g":{"df":3,"docs":{"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"51":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{":":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"32":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"j":{"df":1,"docs":{"37":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":27,"docs":{"102":{"tf":1.0},"133":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"20":{"tf":2.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"26":{"tf":2.0},"29":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":2.23606797749979},"34":{"tf":1.0},"35":{"tf":2.449489742783178},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":2.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":2.0},"9":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":4,"docs":{"45":{"tf":1.0},"47":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"87":{"tf":1.0}}}},"d":{"df":0,"docs":{},"l":{"df":5,"docs":{"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}},"df":4,"docs":{"110":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"87":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"c":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"29":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":7,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"46":{"tf":1.0},"49":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":4,"docs":{"16":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"18":{"tf":1.7320508075688772},"20":{"tf":3.1622776601683795},"24":{"tf":1.7320508075688772},"26":{"tf":3.1622776601683795},"28":{"tf":2.23606797749979},"30":{"tf":1.7320508075688772},"52":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"48":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"103":{"tf":1.0},"104":{"tf":2.449489742783178},"105":{"tf":1.0},"106":{"tf":1.0},"28":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":5,"docs":{"38":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"74":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"n":{"c":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":13,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"19":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.0},"51":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":2.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"81":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":2.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"a":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":10,"docs":{"109":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"29":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":1.0},"41":{"tf":1.0},"51":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{"/":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"40":{"tf":1.0},"42":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":3,"docs":{"110":{"tf":2.23606797749979},"116":{"tf":1.0},"80":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"110":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"109":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"110":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"i":{"df":1,"docs":{"51":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"133":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"104":{"tf":1.0},"109":{"tf":2.23606797749979},"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"109":{"tf":2.0},"90":{"tf":1.0}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"109":{"tf":1.0}}}}},"df":2,"docs":{"30":{"tf":1.0},"88":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"35":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"=":{"2":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}},"df":23,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":4.123105625617661},"110":{"tf":2.23606797749979},"111":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":2.23606797749979},"18":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"33":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"80":{"tf":5.5677643628300215},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":2.6457513110645907},"88":{"tf":2.6457513110645907},"9":{"tf":1.4142135623730951},"90":{"tf":1.0},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"d":{"b":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"110":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"13":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.0},"97":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"j":{"df":2,"docs":{"104":{"tf":1.0},"105":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"80":{"tf":1.0},"85":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"5":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.4142135623730951}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"109":{"tf":1.4142135623730951},"18":{"tf":1.0},"24":{"tf":1.0},"64":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":11,"docs":{"109":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"7":{"tf":1.0},"80":{"tf":3.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}}},"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":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"45":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"x":{"df":3,"docs":{"67":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"111":{"tf":1.0},"116":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"c":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}}},"a":{"df":1,"docs":{"96":{"tf":1.0}}},"b":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"/":{"a":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":6,"docs":{"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":2.23606797749979},"88":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"63":{"tf":1.0},"80":{"tf":2.23606797749979},"82":{"tf":1.0},"87":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"80":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"105":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"109":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"114":{"tf":1.0},"32":{"tf":1.0},"38":{"tf":2.6457513110645907},"78":{"tf":1.4142135623730951},"80":{"tf":2.449489742783178},"81":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"x":{":":{"'":{",":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"113":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"108":{"tf":1.4142135623730951},"109":{"tf":2.0},"111":{"tf":1.0},"113":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"106":{"tf":1.4142135623730951},"109":{"tf":3.1622776601683795},"114":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":3.872983346207417}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"65":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"28":{"tf":1.7320508075688772},"53":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"109":{"tf":1.0},"114":{"tf":1.0},"29":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"92":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"109":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"5":{"tf":1.0}},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"0":{"tf":1.7320508075688772},"3":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"49":{"tf":1.0},"5":{"tf":1.4142135623730951},"6":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"78":{"tf":1.0},"87":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.0}}},"t":{"df":7,"docs":{"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"16":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"67":{"tf":1.0}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"38":{"tf":1.0},"92":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"113":{"tf":1.0},"127":{"tf":1.0},"30":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"109":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"u":{".":{"2":{"0":{"2":{"3":{"0":{"5":{"2":{"2":{".":{"1":{"5":{"4":{"6":{"5":{"8":{".":{"1":{"4":{"5":{"7":{"7":{".":{"0":{".":{"0":{"0":{"1":{".":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"44":{"tf":1.4142135623730951},"45":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"35":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":16,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.4142135623730951},"116":{"tf":1.0},"127":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":3.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"101":{"tf":1.0},"110":{"tf":1.0},"88":{"tf":2.23606797749979},"92":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"78":{"tf":2.449489742783178},"80":{"tf":4.0},"81":{"tf":2.6457513110645907},"83":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.23606797749979},"92":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"!":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"103":{"tf":1.0},"109":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"21":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"4":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"w":{"d":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951}}}}}},"t":{"a":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.0}}}}},"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}},"df":2,"docs":{"87":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"76":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"48":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"114":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":11,"docs":{"31":{"tf":1.0},"32":{"tf":2.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}},"g":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"80":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":11,"docs":{"106":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"29":{"tf":1.0},"38":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"109":{"tf":1.7320508075688772},"113":{"tf":1.0},"29":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":2.8284271247461903},"88":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"80":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"v":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"c":{"df":0,"docs":{},"m":{"d":{"/":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"@":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":2.0},"53":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"p":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"[":{"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"109":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"df":23,"docs":{"101":{"tf":1.0},"103":{"tf":2.0},"104":{"tf":2.449489742783178},"105":{"tf":1.0},"106":{"tf":2.6457513110645907},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":3.7416573867739413},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"28":{"tf":1.4142135623730951},"71":{"tf":1.0},"8":{"tf":1.7320508075688772},"85":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":2.6457513110645907},"95":{"tf":2.0},"97":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"92":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"103":{"tf":1.0},"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"85":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":4,"docs":{"104":{"tf":1.0},"73":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"113":{"tf":1.0},"124":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"41":{"tf":1.0},"65":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}},"v":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}}},"df":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":{"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":4,"docs":{"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":7,"docs":{"103":{"tf":1.0},"113":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"6":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"102":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"133":{"tf":1.0},"5":{"tf":1.0},"88":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"29":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"28":{"tf":2.23606797749979},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"33":{"tf":1.0},"45":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"36":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.0}}}}},"o":{"c":{"1":{"df":1,"docs":{"75":{"tf":1.0}}},"2":{"df":1,"docs":{"75":{"tf":1.0}}},"df":7,"docs":{"105":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.4142135623730951},"5":{"tf":1.0},"6":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":1,"docs":{"80":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":6,"docs":{"109":{"tf":1.4142135623730951},"18":{"tf":1.0},"24":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"110":{"tf":2.0},"80":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.0},"84":{"tf":1.0}}},"t":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"84":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":4,"docs":{"104":{"tf":1.0},"44":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":2.0}}}},"2":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"a":{"c":{"df":0,"docs":{},"h":{"df":20,"docs":{"102":{"tf":1.0},"106":{"tf":1.7320508075688772},"109":{"tf":1.7320508075688772},"110":{"tf":2.23606797749979},"111":{"tf":1.0},"116":{"tf":1.0},"133":{"tf":1.0},"30":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.0},"82":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.7320508075688772},"93":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"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":4,"docs":{"104":{"tf":1.7320508075688772},"109":{"tf":1.0},"113":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"114":{"tf":2.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"110":{"tf":1.0},"34":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"113":{"tf":1.0},"53":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}}}},"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":8,"docs":{"103":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.4142135623730951},"28":{"tf":1.0},"45":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"133":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"111":{"tf":1.4142135623730951},"51":{"tf":1.0},"88":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"38":{"tf":1.0}}},"y":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"13":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.4142135623730951}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"41":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}},"s":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":5,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":2.449489742783178},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"109":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"53":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}},"t":{"c":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":9,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"104":{"tf":1.7320508075688772},"65":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"109":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.4142135623730951}},"t":{"df":2,"docs":{"33":{"tf":1.0},"43":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"40":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":22,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"13":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":2.0},"69":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":2.0},"82":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"c":{"_":{"b":{"a":{"d":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"80":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"102":{"tf":1.0},"37":{"tf":1.0},"67":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"29":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}}},"t":{"df":1,"docs":{"45":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"81":{"tf":1.0},"87":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"41":{"tf":1.0}}},"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"81":{"tf":1.4142135623730951}},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"81":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"109":{"tf":1.0},"55":{"tf":1.0},"72":{"tf":1.0},"90":{"tf":1.0}}}},"n":{"df":9,"docs":{"104":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"40":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":7,"docs":{"105":{"tf":1.0},"106":{"tf":2.0},"109":{"tf":1.0},"114":{"tf":2.0},"29":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"106":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"113":{"tf":2.0},"35":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"109":{"tf":1.7320508075688772},"87":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":5,"docs":{"11":{"tf":1.0},"32":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.6457513110645907},"84":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":2,"docs":{"78":{"tf":1.0},"80":{"tf":3.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"a":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"73":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}},"t":{"df":1,"docs":{"109":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"16":{"tf":1.0},"22":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":1,"docs":{"88":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"127":{"tf":1.0},"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":3,"docs":{"106":{"tf":1.0},"110":{"tf":1.0},"80":{"tf":1.7320508075688772}}}},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"83":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"102":{"tf":1.0},"104":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":22,"docs":{"103":{"tf":1.7320508075688772},"109":{"tf":1.0},"20":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"29":{"tf":2.23606797749979},"38":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":2.0},"54":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":3.872983346207417},"81":{"tf":2.0},"82":{"tf":1.0},"84":{"tf":3.0},"87":{"tf":2.23606797749979},"88":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"75":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{".":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"19":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"87":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"106":{"tf":1.0},"110":{"tf":1.7320508075688772},"113":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"80":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}}},"d":{"df":9,"docs":{"102":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.0},"81":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"29":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"0":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.4142135623730951},"55":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"37":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"82":{"tf":1.0}}},"x":{"df":4,"docs":{"18":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.0},"51":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":3.3166247903554}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"l":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"65":{"tf":1.0},"87":{"tf":2.0}}}}},"n":{"df":2,"docs":{"29":{"tf":1.0},"35":{"tf":1.0}},"m":{"df":1,"docs":{"13":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"109":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"108":{"tf":1.0},"113":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"28":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":16,"docs":{"114":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.7320508075688772},"47":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}},"o":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"104":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":5,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":3.605551275463989},"109":{"tf":2.0},"114":{"tf":2.449489742783178},"95":{"tf":1.4142135623730951}}},"r":{"c":{"df":1,"docs":{"80":{"tf":2.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"51":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"85":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"133":{"tf":1.0},"46":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"80":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"88":{"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":3,"docs":{"109":{"tf":3.0},"75":{"tf":2.0},"88":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"35":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"106":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":4,"docs":{"80":{"tf":2.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":16,"docs":{"109":{"tf":1.0},"114":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"131":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"40":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"133":{"tf":1.7320508075688772}}}}},"df":4,"docs":{"44":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":15,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":2.23606797749979},"110":{"tf":2.449489742783178},"113":{"tf":1.7320508075688772},"114":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"44":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":2.0},"88":{"tf":2.449489742783178}}}}},"t":{"df":4,"docs":{"0":{"tf":1.0},"53":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"103":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}},"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":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"1":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"80":{"tf":1.0},"87":{"tf":1.0}},"n":{"df":4,"docs":{"109":{"tf":1.7320508075688772},"111":{"tf":1.0},"116":{"tf":1.0},"87":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"73":{"tf":1.0},"80":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":6,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"32":{"tf":1.0},"80":{"tf":2.449489742783178},"81":{"tf":1.0},"88":{"tf":1.4142135623730951}},"e":{"df":2,"docs":{"5":{"tf":1.0},"88":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"84":{"tf":1.0}}}},"o":{"d":{"df":10,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"3":{"tf":1.4142135623730951},"55":{"tf":1.0},"59":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"h":{"df":5,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"93":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"78":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"5":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"64":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"80":{"tf":2.23606797749979},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"53":{"tf":1.0}},"l":{"df":10,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":3.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"r":{"d":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":4,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.0},"109":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"106":{"tf":1.0},"109":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":9,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":1.4142135623730951},"64":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.7320508075688772}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":4,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.0},"88":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":12,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"13":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"109":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.7320508075688772}}}}},"o":{"d":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":2,"docs":{"110":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"95":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"#":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"110":{"tf":1.0},"85":{"tf":1.0}}}}}},"i":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}}},".":{"df":1,"docs":{"116":{"tf":1.0}}},"6":{"8":{"6":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":2,"docs":{"106":{"tf":1.0},"37":{"tf":1.0}},"e":{"a":{"df":4,"docs":{"109":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"87":{"tf":1.0}},"l":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":6,"docs":{"102":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"40":{"tf":1.0},"63":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"80":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":13,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"41":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":2.23606797749979},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.7320508075688772}}}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"81":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{".":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":16,"docs":{"104":{"tf":2.0},"106":{"tf":3.4641016151377544},"109":{"tf":2.449489742783178},"116":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"53":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.7320508075688772},"80":{"tf":6.082762530298219},"83":{"tf":2.0},"84":{"tf":1.0},"87":{"tf":2.449489742783178},"88":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"df":1,"docs":{"109":{"tf":1.0}}},"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"40":{"tf":1.0},"85":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":10,"docs":{"16":{"tf":1.0},"22":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"!":{"=":{"!":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"j":{"df":3,"docs":{"104":{"tf":2.449489742783178},"116":{"tf":1.0},"96":{"tf":1.0}},"s":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"#":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"75":{"tf":1.4142135623730951}}}},"i":{"c":{"df":4,"docs":{"103":{"tf":1.0},"110":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":2,"docs":{"43":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":4,"docs":{"33":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"45":{"tf":1.0},"51":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"109":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"42":{"tf":1.0},"88":{"tf":1.0}}}}},"r":{"a":{"df":3,"docs":{"18":{"tf":1.0},"24":{"tf":1.0},"5":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"109":{"tf":2.0},"114":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"i":{"df":2,"docs":{"32":{"tf":1.0},"88":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"102":{"tf":1.7320508075688772},"104":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"80":{"tf":2.8284271247461903},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772},"87":{"tf":3.1622776601683795},"88":{"tf":2.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"11":{"tf":1.4142135623730951},"13":{"tf":2.8284271247461903},"32":{"tf":2.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"8":{"tf":2.449489742783178}}},"n":{"c":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"53":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"33":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":2.449489742783178}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"80":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.0},"4":{"tf":1.0},"50":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}},"n":{"df":9,"docs":{"103":{"tf":1.4142135623730951},"113":{"tf":1.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"69":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":11,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"50":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"45":{"tf":1.4142135623730951},"63":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"5":{"tf":1.0},"6":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":11,"docs":{"0":{"tf":1.4142135623730951},"109":{"tf":1.0},"3":{"tf":1.7320508075688772},"4":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0}}}}},"t":{"'":{"df":19,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"110":{"tf":2.0},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"38":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.4142135623730951},"76":{"tf":1.0},"78":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.7320508075688772}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"110":{"tf":1.7320508075688772},"122":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":5,"docs":{"102":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"df":8,"docs":{"106":{"tf":1.0},"113":{"tf":1.0},"36":{"tf":1.4142135623730951},"76":{"tf":1.0},"80":{"tf":3.4641016151377544},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"88":{"tf":2.449489742783178}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}},"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}}},"o":{"b":{"df":2,"docs":{"110":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":4.0}}}},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"75":{"tf":1.0}},"s":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"#":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":10,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"44":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"80":{"tf":2.6457513110645907},"87":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"104":{"tf":1.0},"42":{"tf":1.0},"76":{"tf":1.0}}}},"x":{"df":2,"docs":{"82":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":2,"docs":{"51":{"tf":1.0},"63":{"tf":1.0}}}},"y":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"n":{"d":{"df":11,"docs":{"110":{"tf":1.0},"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"84":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"114":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":5,"docs":{"110":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"127":{"tf":1.4142135623730951},"3":{"tf":1.0},"55":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"80":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"80":{"tf":1.0}},"r":{"df":8,"docs":{"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"114":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"46":{"tf":1.0},"47":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}}}}},":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":2.0}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"2":{"0":{"2":{"3":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":4,"docs":{"32":{"tf":1.4142135623730951},"35":{"tf":1.0},"38":{"tf":2.0},"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"128":{"tf":1.0},"51":{"tf":1.4142135623730951}}}},"v":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"80":{"tf":2.0},"81":{"tf":2.0},"87":{"tf":1.4142135623730951}}}},"t":{"'":{"df":5,"docs":{"109":{"tf":1.0},"116":{"tf":1.0},"37":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":15,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":3,"docs":{"110":{"tf":1.0},"19":{"tf":1.0},"25":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"k":{"df":3,"docs":{"110":{"tf":1.0},"51":{"tf":1.0},"88":{"tf":1.0}}},"t":{":":{"df":0,"docs":{},"j":{"df":1,"docs":{"51":{"tf":1.0}}},"r":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"47":{"tf":2.0},"49":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"54":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"72":{"tf":1.0},"80":{"tf":2.23606797749979},"88":{"tf":1.4142135623730951}}}}}},"l":{"d":{"b":{"df":2,"docs":{"35":{"tf":2.23606797749979},"38":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"a":{"d":{"df":5,"docs":{"68":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"!":{".":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"74":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"'":{"df":1,"docs":{"88":{"tf":1.0}}},"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"80":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"?":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"!":{".":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"74":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"103":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}}}}}},"df":28,"docs":{"102":{"tf":2.23606797749979},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"44":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":3.0},"64":{"tf":1.0},"65":{"tf":3.0},"67":{"tf":4.0},"68":{"tf":1.0},"69":{"tf":3.1622776601683795},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":2.23606797749979},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"78":{"tf":2.6457513110645907},"80":{"tf":8.12403840463596},"81":{"tf":2.449489742783178},"82":{"tf":1.4142135623730951},"84":{"tf":3.4641016151377544},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":6.48074069840786},"88":{"tf":3.7416573867739413},"89":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"s":{"!":{".":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"51":{"tf":1.0}}},"t":{"df":6,"docs":{"103":{"tf":1.0},"133":{"tf":1.0},"45":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"o":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"[":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"]":{"!":{"=":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"72":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":7,"docs":{"106":{"tf":1.0},"109":{"tf":1.4142135623730951},"113":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"69":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}}},"s":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}},"t":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"w":{"df":1,"docs":{"100":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"13":{"tf":2.0}}}},"m":{"a":{"c":{"df":2,"docs":{"40":{"tf":1.0},"45":{"tf":1.4142135623730951}},"o":{"df":1,"docs":{"37":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"109":{"tf":1.4142135623730951},"111":{"tf":1.0},"19":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"105":{"tf":1.4142135623730951},"5":{"tf":1.0},"51":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":14,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"55":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"#":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"50":{"tf":1.0},"87":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":2,"docs":{"106":{"tf":1.0},"38":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"k":{"!":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":4,"docs":{"69":{"tf":1.0},"75":{"tf":1.0},"92":{"tf":1.7320508075688772},"95":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"102":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":4.242640687119285},"82":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"87":{"tf":3.4641016151377544},"88":{"tf":2.449489742783178},"96":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"75":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"106":{"tf":1.0},"109":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"38":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"73":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0}},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"67":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"133":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"127":{"tf":1.0},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"110":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.23606797749979}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"80":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"78":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":1,"docs":{"53":{"tf":2.0}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}},"s":{"c":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"92":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"103":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"63":{"tf":1.0}}}}},"x":{"df":2,"docs":{"36":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951}}}},"o":{"d":{"df":1,"docs":{"109":{"tf":1.0}},"e":{"df":4,"docs":{"103":{"tf":1.0},"113":{"tf":1.0},"37":{"tf":1.0},"95":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"109":{"tf":2.0}},"i":{"df":7,"docs":{"109":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"67":{"tf":1.0},"80":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":26,"docs":{"101":{"tf":1.0},"102":{"tf":2.8284271247461903},"103":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"105":{"tf":2.0},"106":{"tf":3.7416573867739413},"109":{"tf":2.0},"110":{"tf":2.0},"111":{"tf":1.7320508075688772},"114":{"tf":1.0},"116":{"tf":1.7320508075688772},"20":{"tf":1.0},"26":{"tf":1.0},"67":{"tf":1.7320508075688772},"74":{"tf":1.0},"76":{"tf":2.23606797749979},"78":{"tf":1.7320508075688772},"80":{"tf":2.449489742783178},"81":{"tf":2.23606797749979},"84":{"tf":1.4142135623730951},"87":{"tf":2.23606797749979},"88":{"tf":4.358898943540674},"89":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772}},"e":{"'":{"df":1,"docs":{"110":{"tf":1.0}}},".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"114":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":3.3166247903554},"81":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":8,"docs":{"104":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.0}},"e":{"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":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"104":{"tf":2.0},"105":{"tf":1.0},"106":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":3,"docs":{"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":14,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":2.23606797749979},"113":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"111":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"132":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"85":{"tf":1.0},"88":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"47":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"28":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":6,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"29":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":2.449489742783178}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"32":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":8,"docs":{"63":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":2.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"df":1,"docs":{"80":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"29":{"tf":1.0},"38":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":13,"docs":{"123":{"tf":1.0},"125":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"19":{"tf":1.0},"25":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}}}}}},"w":{"df":9,"docs":{"109":{"tf":2.0},"127":{"tf":1.0},"29":{"tf":1.0},"51":{"tf":1.7320508075688772},"6":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}}},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"46":{"tf":1.0},"48":{"tf":1.7320508075688772}}}}}}}},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"=":{"1":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":13,"docs":{"12":{"tf":1.0},"13":{"tf":2.8284271247461903},"15":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"51":{"tf":1.0},"7":{"tf":1.0},"76":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"df":11,"docs":{"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"26":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":2.23606797749979},"38":{"tf":3.1622776601683795},"44":{"tf":1.0},"63":{"tf":1.0},"8":{"tf":1.0}},"j":{"df":2,"docs":{"40":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}},"n":{"df":1,"docs":{"88":{"tf":1.0}},"e":{"df":1,"docs":{"80":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":11,"docs":{"102":{"tf":1.0},"116":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"45":{"tf":1.0},"63":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"88":{"tf":3.1622776601683795}},"e":{"#":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}},"y":{"#":{"c":{"df":0,"docs":{},"r":{"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":{}}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"76":{"tf":1.4142135623730951},"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":1,"docs":{"78":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"df":4,"docs":{"37":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.0},"8":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"85":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"106":{"tf":2.0},"108":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"13":{"tf":2.23606797749979}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"k":{"df":1,"docs":{"85":{"tf":1.0}}},"l":{"d":{"df":3,"docs":{"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":2.0},"80":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"c":{"df":3,"docs":{"35":{"tf":1.0},"45":{"tf":1.0},"85":{"tf":1.0}}},"df":7,"docs":{"109":{"tf":1.0},"116":{"tf":1.0},"15":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"29":{"tf":1.0},"67":{"tf":1.0},"81":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"29":{"tf":1.0}}}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"2":{"4":{"4":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":8,"docs":{"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.7320508075688772},"84":{"tf":2.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"103":{"tf":1.0},"29":{"tf":1.0},"43":{"tf":1.0},"52":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"109":{"tf":2.0},"69":{"tf":1.4142135623730951},"80":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"113":{"tf":1.0},"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"67":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"76":{"tf":1.0},"93":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"t":{"df":6,"docs":{"109":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"45":{"tf":2.0},"84":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"85":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"84":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"4":{"tf":1.0},"87":{"tf":1.0}}}}}}}}},"x":{"c":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"19":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"5":{"tf":1.0},"51":{"tf":2.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"35":{"tf":1.7320508075688772},"45":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"46":{"tf":1.0},"55":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}},"r":{"df":1,"docs":{"109":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"109":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}},"s":{"df":7,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"35":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":3,"docs":{"106":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.449489742783178}}}}},"t":{"(":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":11,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.7320508075688772},"18":{"tf":1.0},"24":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.449489742783178},"82":{"tf":1.7320508075688772},"86":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.0}},"i":{"df":2,"docs":{"82":{"tf":1.0},"84":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":14,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"108":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"109":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":1.0}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":10,"docs":{"102":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"29":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":2.0},"80":{"tf":3.605551275463989},"88":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"29":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951}}}}}}}}},"c":{"df":1,"docs":{"47":{"tf":1.7320508075688772}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":2,"docs":{"72":{"tf":1.0},"88":{"tf":1.0}}}},"r":{"df":2,"docs":{"109":{"tf":1.0},"125":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"40":{"tf":1.0},"44":{"tf":1.0},"63":{"tf":1.7320508075688772},"69":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"133":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"65":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"67":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"122":{"tf":1.0},"125":{"tf":1.0}}},"y":{"df":1,"docs":{"133":{"tf":1.0}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"27":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"1":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"103":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"114":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"78":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":3.1622776601683795}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"|":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"81":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"m":{"@":{"7":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"19":{"tf":1.7320508075688772},"25":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"45":{"tf":1.0},"51":{"tf":1.7320508075688772},"8":{"tf":2.0},"9":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"28":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"30":{"tf":1.0},"38":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"69":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"92":{"tf":1.0}}}}},"df":1,"docs":{"84":{"tf":1.0}}}}},"r":{"df":6,"docs":{"127":{"tf":1.4142135623730951},"49":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.7320508075688772},"62":{"tf":1.0},"75":{"tf":1.0}},"e":{"df":3,"docs":{"102":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"105":{"tf":1.0},"54":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"87":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"37":{"tf":1.0},"7":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}}}},"s":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.4142135623730951}},"s":{"df":3,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.0},"43":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"109":{"tf":1.0},"4":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"53":{"tf":1.4142135623730951},"73":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"110":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"45":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"113":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"df":8,"docs":{"102":{"tf":1.0},"110":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}}}}}}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"42":{"tf":1.0},"45":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"35":{"tf":1.7320508075688772}},"f":{"df":1,"docs":{"44":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"40":{"tf":1.7320508075688772},"42":{"tf":1.0},"44":{"tf":2.0},"45":{"tf":2.0}},"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":{"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"35":{"tf":1.0},"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"37":{"tf":1.0},"4":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":7,"docs":{"28":{"tf":2.0},"29":{"tf":1.7320508075688772},"3":{"tf":1.0},"30":{"tf":1.0},"45":{"tf":1.7320508075688772},"54":{"tf":1.0},"80":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"}":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"80":{"tf":2.23606797749979},"82":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"75":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":10,"docs":{"102":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":2.23606797749979},"4":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.7320508075688772},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"80":{"tf":2.0}}}},"df":0,"docs":{}}}},"u":{"b":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"46":{"tf":1.0},"49":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"51":{"tf":2.0}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"68":{"tf":1.0},"75":{"tf":1.4142135623730951},"82":{"tf":1.0},"88":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"75":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"49":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":6,"docs":{"111":{"tf":1.0},"114":{"tf":1.0},"45":{"tf":1.0},"63":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"106":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"w":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"78":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}},"df":1,"docs":{"35":{"tf":1.4142135623730951}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.0}}},"t":{"df":1,"docs":{"87":{"tf":1.0}}}},"d":{"df":4,"docs":{"106":{"tf":1.0},"51":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":1.7320508075688772}}},"df":0,"docs":{},"l":{"df":9,"docs":{"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"76":{"tf":1.0},"80":{"tf":2.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"92":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"35":{"tf":1.0},"63":{"tf":1.4142135623730951}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"110":{"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":7,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":2,"docs":{"113":{"tf":1.0},"45":{"tf":2.23606797749979}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"114":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"75":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":2,"docs":{"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"64":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"75":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"108":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"38":{"tf":1.0},"66":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":2.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"110":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"88":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"102":{"tf":1.0},"84":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"80":{"tf":1.0}},"p":{"df":1,"docs":{"92":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"29":{"tf":1.0},"69":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.0},"115":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}}}},"df":2,"docs":{"74":{"tf":1.0},"87":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":8,"docs":{"124":{"tf":2.0},"125":{"tf":2.8284271247461903},"33":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"102":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"109":{"tf":1.0},"80":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"127":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"c":{"df":6,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":2.23606797749979},"111":{"tf":2.0},"113":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"127":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"5":{"tf":1.0},"51":{"tf":1.4142135623730951}}},"y":{"'":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":1.0},"67":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"53":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":1,"docs":{"53":{"tf":1.0}}}}},"q":{"df":1,"docs":{"109":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"102":{"tf":1.4142135623730951},"104":{"tf":2.23606797749979},"38":{"tf":2.0},"51":{"tf":2.0},"67":{"tf":1.4142135623730951},"74":{"tf":2.449489742783178},"75":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.0},"87":{"tf":2.23606797749979},"88":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"104":{"tf":1.0},"109":{"tf":1.7320508075688772},"110":{"tf":2.0},"80":{"tf":1.0},"87":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"80":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"v":{"df":8,"docs":{"103":{"tf":2.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"63":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.23606797749979}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":10,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"75":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":3.0},"82":{"tf":1.7320508075688772},"84":{"tf":2.23606797749979},"87":{"tf":2.23606797749979},"88":{"tf":2.6457513110645907}},"e":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"75":{"tf":1.0},"80":{"tf":2.23606797749979},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":4.123105625617661}}}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"110":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"39":{"tf":1.0},"65":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"74":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":8,"docs":{"109":{"tf":1.4142135623730951},"114":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"80":{"tf":4.242640687119285},"82":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"s":{"df":7,"docs":{"68":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"f":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"i":{"d":{"df":2,"docs":{"81":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"110":{"tf":1.0},"87":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":6,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"37":{"tf":1.0},"87":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"#":{"2":{"7":{"8":{"0":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"8":{"df":1,"docs":{"62":{"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"28":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"32":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"46":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"41":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"33":{"tf":1.0},"41":{"tf":1.4142135623730951}},"e":{"=":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"c":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"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":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"&":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":2,"docs":{"33":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":35,"docs":{"0":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"133":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":2.0},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":2.0},"26":{"tf":1.0},"29":{"tf":2.6457513110645907},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":2.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"81":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}},"1":{"df":1,"docs":{"84":{"tf":1.0}}},"2":{"df":1,"docs":{"84":{"tf":1.0}}},"df":9,"docs":{"28":{"tf":1.0},"29":{"tf":1.0},"78":{"tf":2.6457513110645907},"80":{"tf":3.4641016151377544},"81":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"89":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}}}},"n":{"df":19,"docs":{"103":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.7320508075688772},"19":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":1.7320508075688772},"25":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"51":{"tf":2.449489742783178},"7":{"tf":1.0},"9":{"tf":1.7320508075688772}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":3,"docs":{"63":{"tf":1.0},"67":{"tf":2.0},"93":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":2.8284271247461903},"111":{"tf":1.0},"35":{"tf":1.0},"80":{"tf":1.0},"96":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":2.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"110":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"11":{"tf":1.7320508075688772},"129":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"35":{"tf":2.23606797749979},"36":{"tf":1.4142135623730951},"45":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":2.23606797749979},"69":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":11,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"45":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":4,"docs":{"76":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":2.449489742783178}}}}}},">":{"<":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"80":{"tf":2.6457513110645907}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"110":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"110":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"109":{"tf":2.0},"40":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":17,"docs":{"104":{"tf":1.0},"109":{"tf":2.23606797749979},"113":{"tf":1.0},"114":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.4142135623730951},"87":{"tf":2.0},"88":{"tf":1.7320508075688772},"92":{"tf":1.0}},"n":{"df":1,"docs":{"113":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"32":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"df":2,"docs":{"35":{"tf":1.0},"53":{"tf":1.0}}}},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"124":{"tf":1.0}}}}}},"df":1,"docs":{"46":{"tf":1.0}}}}}},"n":{"d":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"74":{"tf":1.0},"80":{"tf":1.7320508075688772},"87":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772}}}}}},"t":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"df":13,"docs":{"110":{"tf":1.0},"113":{"tf":1.4142135623730951},"15":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"51":{"tf":1.0}}}}}},"f":{"c":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"?":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"80":{"tf":2.0}}}}}},"df":1,"docs":{"80":{"tf":3.4641016151377544}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"114":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"109":{"tf":1.0},"28":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":1.0},"53":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":9,"docs":{"104":{"tf":1.7320508075688772},"113":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"44":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"67":{"tf":2.449489742783178},"69":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"63":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.4142135623730951}},"i":{"df":2,"docs":{"45":{"tf":1.0},"84":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"109":{"tf":1.0},"81":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":5,"docs":{"0":{"tf":1.0},"133":{"tf":1.0},"51":{"tf":1.4142135623730951},"69":{"tf":1.0},"80":{"tf":1.7320508075688772}}}}},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":1,"docs":{"84":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"102":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"80":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":6,"docs":{"16":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"22":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}},"i":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0}}}},"v":{"df":1,"docs":{"109":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"109":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":2.23606797749979}}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"51":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":15,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"106":{"tf":2.0},"109":{"tf":4.795831523312719},"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"113":{"tf":2.0},"114":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":2.449489742783178},"90":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"[":{"0":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.0}}}},"c":{"df":2,"docs":{"35":{"tf":1.0},"76":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"80":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":6,"docs":{"109":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"54":{"tf":1.0}},"i":{"df":5,"docs":{"106":{"tf":2.0},"74":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"44":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"c":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"109":{"tf":2.0},"63":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"16":{"tf":1.0},"22":{"tf":1.0}}}}}},"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.7320508075688772},"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"78":{"tf":1.0}}}},"t":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":6,"docs":{"106":{"tf":1.4142135623730951},"109":{"tf":2.23606797749979},"116":{"tf":1.0},"80":{"tf":2.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":5,"docs":{"110":{"tf":1.4142135623730951},"114":{"tf":1.0},"69":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":2.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"72":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":2.23606797749979},"88":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"35":{"tf":1.7320508075688772},"45":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":4,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"108":{"tf":1.0},"29":{"tf":2.8284271247461903},"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"104":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"131":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"[":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"]":{"!":{"=":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"87":{"tf":1.0}}}}}}},":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},">":{"<":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"51":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.7320508075688772},"80":{"tf":3.872983346207417},"81":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":2,"docs":{"105":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":2.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":2.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"63":{"tf":1.0},"72":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":16,"docs":{"1":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"63":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":2.23606797749979},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":2.0},"89":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"51":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"g":{"df":2,"docs":{"82":{"tf":1.0},"87":{"tf":1.4142135623730951}},"o":{"df":1,"docs":{"87":{"tf":1.0}}},"r":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}}},"df":2,"docs":{"82":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"w":{"c":{"'":{"df":1,"docs":{"88":{"tf":1.0}}},"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"114":{"tf":1.0},"45":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"y":{"b":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"104":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"80":{"tf":2.0},"87":{"tf":2.6457513110645907},"88":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":9,"docs":{"103":{"tf":1.4142135623730951},"110":{"tf":1.0},"37":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":1,"docs":{"32":{"tf":1.0}},"l":{"df":3,"docs":{"45":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"106":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":6,"docs":{"0":{"tf":1.0},"106":{"tf":1.0},"45":{"tf":1.0},"80":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":1,"docs":{"105":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":4,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"35":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"133":{"tf":1.7320508075688772},"54":{"tf":1.0},"80":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":4,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"65":{"tf":1.7320508075688772},"80":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"72":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"80":{"tf":1.0},"88":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"/":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"109":{"tf":3.1622776601683795},"110":{"tf":1.0},"114":{"tf":1.0},"45":{"tf":1.4142135623730951},"53":{"tf":1.0},"80":{"tf":3.1622776601683795},"92":{"tf":1.0}},"e":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},">":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"2":{"df":1,"docs":{"109":{"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":{"109":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"a":{"d":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}},"df":1,"docs":{"109":{"tf":3.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"40":{"tf":1.0},"43":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"t":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}},"df":22,"docs":{"15":{"tf":1.4142135623730951},"16":{"tf":2.23606797749979},"17":{"tf":2.23606797749979},"18":{"tf":3.7416573867739413},"19":{"tf":3.4641016151377544},"20":{"tf":4.0},"21":{"tf":1.4142135623730951},"22":{"tf":2.23606797749979},"23":{"tf":2.23606797749979},"24":{"tf":3.7416573867739413},"25":{"tf":3.4641016151377544},"26":{"tf":4.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"51":{"tf":2.0},"78":{"tf":2.6457513110645907},"80":{"tf":3.4641016151377544},"81":{"tf":2.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"]":{"(":{"#":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"x":{"df":0,"docs":{},"t":{"(":{"*":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"49":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":2,"docs":{"110":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"111":{"tf":1.0},"115":{"tf":1.0},"84":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"df":0,"docs":{}}},"k":{"df":2,"docs":{"108":{"tf":1.0},"88":{"tf":1.0}}}},"r":{"d":{"df":4,"docs":{"110":{"tf":1.0},"28":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}}},"a":{"d":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":1,"docs":{"88":{"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.7320508075688772}},"}":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"!":{"=":{"!":{"$":{"df":0,"docs":{},"{":{"_":{"_":{"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":0,"docs":{},"e":{"df":0,"docs":{},"}":{"!":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"!":{"=":{"!":{"$":{"df":0,"docs":{},"{":{"_":{"_":{"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":0,"docs":{},"e":{"df":0,"docs":{},"}":{"!":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"?":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"82":{"tf":1.0},"84":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"110":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":7,"docs":{"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"116":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"49":{"tf":1.0},"80":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":8,"docs":{"102":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"46":{"tf":1.0},"80":{"tf":2.23606797749979},"84":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":12,"docs":{"106":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"53":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.4142135623730951},"91":{"tf":1.0},"96":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":2,"docs":{"115":{"tf":1.0},"120":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"32":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"35":{"tf":1.0}}}}},"o":{"(":{"df":0,"docs":{},"i":{".":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"p":{"df":2,"docs":{"105":{"tf":1.0},"87":{"tf":1.0}},"i":{"c":{"df":2,"docs":{"123":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"!":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":7,"docs":{"33":{"tf":2.23606797749979},"34":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":2.23606797749979},"42":{"tf":2.0},"43":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951}}},"k":{"df":2,"docs":{"0":{"tf":1.0},"4":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":5,"docs":{"67":{"tf":1.0},"80":{"tf":2.8284271247461903},"82":{"tf":1.4142135623730951},"84":{"tf":2.0},"87":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"114":{"tf":1.7320508075688772}}}},"i":{"df":1,"docs":{"88":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":8,"docs":{"109":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"d":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"122":{"tf":1.0},"125":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"45":{"tf":1.0},"53":{"tf":1.0},"80":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":11,"docs":{"109":{"tf":2.23606797749979},"15":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"38":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"69":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":19,"docs":{"102":{"tf":1.7320508075688772},"103":{"tf":1.0},"104":{"tf":2.449489742783178},"106":{"tf":2.0},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"29":{"tf":2.0},"38":{"tf":2.0},"52":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":2.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"88":{"tf":3.0},"89":{"tf":1.0},"92":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"c":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"u":{"df":2,"docs":{"19":{"tf":1.0},"25":{"tf":1.0}},"i":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"42":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.0}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"35":{"tf":1.0}}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}},"r":{"df":2,"docs":{"45":{"tf":1.0},"76":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"132":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"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":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"67":{"tf":1.0},"68":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"47":{"tf":2.0},"49":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"127":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0}},"e":{"=":{"1":{"df":2,"docs":{"16":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"116":{"tf":1.4142135623730951},"51":{"tf":1.0},"7":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"74":{"tf":1.4142135623730951},"84":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"114":{"tf":1.0},"92":{"tf":1.0}}}},"df":41,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"116":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":2.0},"20":{"tf":3.1622776601683795},"26":{"tf":3.1622776601683795},"27":{"tf":1.0},"29":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"41":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"45":{"tf":2.0},"53":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":2.0},"80":{"tf":4.58257569495584},"81":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":2.449489742783178},"85":{"tf":1.7320508075688772},"87":{"tf":2.6457513110645907},"88":{"tf":2.23606797749979},"91":{"tf":1.0},"92":{"tf":2.0},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":4,"docs":{"80":{"tf":2.0},"82":{"tf":1.0},"87":{"tf":3.3166247903554},"88":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":3,"docs":{"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"v":{"1":{"4":{".":{"1":{"9":{".":{"0":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"1":{"8":{".":{"0":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"87":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":5,"docs":{"103":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"43":{"tf":1.0},"85":{"tf":1.0}}}},"r":{"df":1,"docs":{"109":{"tf":1.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"106":{"tf":1.0},"29":{"tf":1.4142135623730951},"33":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"13":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"13":{"tf":2.23606797749979},"46":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0}}}}},"u":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"i":{"a":{"df":8,"docs":{"109":{"tf":2.0},"110":{"tf":1.0},"111":{"tf":1.0},"13":{"tf":1.0},"43":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"42":{"tf":1.4142135623730951},"43":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"109":{"tf":1.0},"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"32":{"tf":1.0}}},"/":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"32":{"tf":1.0},"38":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":4,"docs":{"11":{"tf":1.0},"32":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"75":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"78":{"tf":2.449489742783178},"80":{"tf":7.810249675906654},"87":{"tf":1.7320508075688772}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}}}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"85":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"4":{"tf":1.0},"80":{"tf":1.7320508075688772},"84":{"tf":2.0},"96":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"33":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951}}}},"t":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"92":{"tf":1.7320508075688772},"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":0,"docs":{}},"y":{"df":9,"docs":{"0":{"tf":1.0},"133":{"tf":1.0},"41":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.0},"85":{"tf":1.0},"87":{"tf":1.7320508075688772}}}},"df":1,"docs":{"32":{"tf":1.0}},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.0}}}},"r":{"df":1,"docs":{"80":{"tf":1.0}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"/":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"5":{"tf":1.4142135623730951}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"'":{"df":5,"docs":{"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"78":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.4142135623730951}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"87":{"tf":1.0}}}},"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"[":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"85":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}}}},"df":42,"docs":{"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"109":{"tf":2.449489742783178},"110":{"tf":2.0},"111":{"tf":1.0},"113":{"tf":2.449489742783178},"114":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":3.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":3.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":2.0},"78":{"tf":1.4142135623730951},"80":{"tf":4.0},"81":{"tf":2.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":2.0},"85":{"tf":2.0},"87":{"tf":3.4641016151377544},"88":{"tf":3.1622776601683795},"89":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"125":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"55":{"tf":1.0},"57":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":3,"docs":{"43":{"tf":1.0},"6":{"tf":1.0},"80":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"73":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"106":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"88":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"47":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"114":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"38":{"tf":1.0},"74":{"tf":1.0},"84":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"18":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"76":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"d":{"df":5,"docs":{"109":{"tf":1.4142135623730951},"114":{"tf":1.0},"73":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":12,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"6":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"30":{"tf":1.0},"35":{"tf":1.0}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"14":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"88":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"s":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"38":{"tf":1.4142135623730951}},"i":{"c":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"d":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"76":{"tf":1.0},"88":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"109":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"67":{"tf":1.0},"87":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"x":{".":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"z":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}}},"8":{"6":{"_":{"6":{"4":{"df":2,"docs":{"47":{"tf":2.0},"49":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"40":{"tf":1.0},"45":{"tf":2.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"18":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"83":{"tf":1.0}},"x":{"df":1,"docs":{"104":{"tf":1.0}},"x":{"df":1,"docs":{"75":{"tf":1.0}},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"v":{"df":1,"docs":{"51":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}}},"z":{"df":1,"docs":{"131":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"breadcrumbs":{"root":{"0":{".":{"1":{".":{"0":{"df":1,"docs":{"124":{"tf":1.7320508075688772}}},"1":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}},"0":{":":{"0":{"7":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":1,"docs":{"35":{"tf":1.4142135623730951}},"x":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"4":{"0":{"d":{"0":{"d":{"b":{"4":{"b":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{".":{"0":{".":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"35":{"tf":1.0}}},"6":{":":{"0":{"0":{":":{"0":{"7":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"13":{"tf":2.8284271247461903}}},"df":3,"docs":{"109":{"tf":1.7320508075688772},"45":{"tf":1.0},"80":{"tf":1.0}}},"2":{"/":{"3":{"/":{"4":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"2":{"2":{"0":{"9":{"1":{"9":{"1":{"7":{"1":{"6":{"0":{"8":{"6":{"2":{"9":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"4":{"1":{"6":{"2":{"4":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"1":{"9":{"8":{"6":{"1":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"3":{"0":{"0":{"2":{"2":{"0":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"2":{"9":{"7":{"6":{"5":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{"3":{"2":{"7":{"7":{"2":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"2":{"6":{"5":{"6":{"4":{"6":{"8":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"5":{"5":{"3":{"2":{"1":{"5":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{"5":{"0":{"7":{"3":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"2":{"3":{"2":{"2":{"8":{"1":{"4":{"6":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"5":{"8":{"3":{"2":{"7":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"2":{"0":{"7":{"3":{"9":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"1":{"8":{"0":{"9":{"1":{"5":{"3":{"2":{"6":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"1":{"1":{"0":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{"df":1,"docs":{"35":{"tf":1.0}}},"2":{"df":1,"docs":{"35":{"tf":1.0}}},"3":{"df":1,"docs":{"35":{"tf":1.0}}},"4":{"df":1,"docs":{"35":{"tf":1.0}}},"5":{"df":1,"docs":{"35":{"tf":1.0}}},"6":{"df":1,"docs":{"35":{"tf":1.0}}},"7":{"df":1,"docs":{"35":{"tf":1.0}}},"_":{"1":{"1":{".":{"3":{"2":{".":{"0":{"6":{"_":{"9":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"3":{"a":{"6":{"3":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"109":{"tf":1.0},"80":{"tf":1.0}}},"3":{"1":{"5":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"83":{"tf":1.0}}},"5":{"7":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"3":{"8":{".":{"0":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{".":{"0":{"df":2,"docs":{"72":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"9":{"2":{"2":{"9":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"47":{"tf":1.0}}},"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"52":{"tf":1.0}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"_":{".":{"d":{"(":{"_":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"_":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"(":{"_":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"_":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"29":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"_":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"0":{"_":{"_":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":2.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"a":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}}},".":{"df":0,"docs":{},"k":{".":{"a":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"6":{"4":{"df":2,"docs":{"47":{"tf":2.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"65":{"tf":1.0},"80":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"v":{"df":7,"docs":{"104":{"tf":1.0},"109":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.0},"69":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"74":{"tf":1.0},"75":{"tf":2.0},"88":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"104":{"tf":1.0},"88":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"80":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"51":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"109":{"tf":1.0},"65":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"80":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"46":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"df":7,"docs":{"103":{"tf":1.0},"109":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":2.23606797749979},"52":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"=":{"0":{"df":0,"docs":{},"x":{"7":{"0":{"0":{"0":{"0":{"c":{"c":{"6":{"6":{"5":{"6":{"0":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"51":{"tf":1.0}}}}}}},"df":4,"docs":{"103":{"tf":1.0},"110":{"tf":1.0},"51":{"tf":1.0},"80":{"tf":1.0}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"75":{"tf":1.0},"80":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"80":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"101":{"tf":1.4142135623730951},"105":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.4142135623730951},"75":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"{":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"|":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"36":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"4":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":3,"docs":{"53":{"tf":1.0},"80":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"109":{"tf":1.0},"5":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.4142135623730951}},"i":{"df":3,"docs":{"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0}}}},"z":{"df":3,"docs":{"11":{"tf":1.0},"32":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"103":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"p":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":1,"docs":{"45":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"38":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"80":{"tf":1.0}},"i":{"df":0,"docs":{},"x":{"df":6,"docs":{"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951}},"i":{"c":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.0}}},"df":7,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"78":{"tf":2.23606797749979},"80":{"tf":2.0},"84":{"tf":1.4142135623730951}}},"y":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"109":{"tf":2.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"114":{"tf":1.0},"51":{"tf":1.0}}}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"109":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"70":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"g":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"80":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"l":{"df":3,"docs":{"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.7320508075688772},"133":{"tf":1.0}}},"s":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951}}}},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"76":{"tf":1.0},"81":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"76":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"76":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"110":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"81":{"tf":2.449489742783178},"84":{"tf":3.1622776601683795},"87":{"tf":1.7320508075688772},"88":{"tf":1.0}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"109":{"tf":2.23606797749979},"92":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}}},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":2,"docs":{"85":{"tf":2.8284271247461903},"88":{"tf":2.449489742783178}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"38":{"tf":2.0}}},"df":0,"docs":{}}}},"df":2,"docs":{"38":{"tf":2.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"103":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0}}}},"df":1,"docs":{"46":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"8":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}}},"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"80":{"tf":1.0},"87":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{")":{"[":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"1":{"1":{"8":{"0":{"2":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":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":{"73":{"tf":1.0},"75":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"104":{"tf":1.7320508075688772}}}},"df":2,"docs":{"104":{"tf":1.0},"106":{"tf":2.0}}},"s":{"df":0,"docs":{},"e":{"df":9,"docs":{"110":{"tf":1.0},"114":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.0},"90":{"tf":1.0}}},"i":{"c":{"df":6,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"63":{"tf":1.0},"80":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":2,"docs":{"133":{"tf":1.0},"53":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"102":{"tf":1.0},"35":{"tf":1.0},"42":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"{":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"|":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"20":{"tf":2.449489742783178},"26":{"tf":2.449489742783178},"84":{"tf":1.0},"87":{"tf":2.0},"95":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"j":{"df":1,"docs":{"48":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.0},"51":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"104":{"tf":1.0},"36":{"tf":1.7320508075688772},"69":{"tf":1.0},"93":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"85":{"tf":1.0},"97":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"38":{"tf":1.0},"45":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.0}}}}},"d":{"df":4,"docs":{"114":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":3,"docs":{"72":{"tf":1.0},"80":{"tf":2.449489742783178},"88":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"80":{"tf":3.1622776601683795},"87":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"n":{"d":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"127":{"tf":1.0}},"h":{"df":3,"docs":{"76":{"tf":1.0},"84":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"40":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"113":{"tf":1.4142135623730951},"51":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"64":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"u":{"df":1,"docs":{"35":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}}}}},"g":{"df":3,"docs":{"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"51":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{":":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"32":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"j":{"df":1,"docs":{"37":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":33,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.7320508075688772},"14":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"20":{"tf":2.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"26":{"tf":2.0},"29":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":2.23606797749979},"34":{"tf":1.0},"35":{"tf":2.449489742783178},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":2.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":2.0},"9":{"tf":2.0}}},"df":0,"docs":{},"t":{"df":4,"docs":{"45":{"tf":1.0},"47":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"87":{"tf":1.0}}}},"d":{"df":0,"docs":{},"l":{"df":5,"docs":{"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}},"df":4,"docs":{"110":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"87":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"c":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"29":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":7,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"46":{"tf":1.0},"49":{"tf":2.449489742783178}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":4,"docs":{"16":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"18":{"tf":1.7320508075688772},"20":{"tf":3.1622776601683795},"24":{"tf":1.7320508075688772},"26":{"tf":3.1622776601683795},"28":{"tf":2.449489742783178},"30":{"tf":1.7320508075688772},"52":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"48":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"103":{"tf":1.0},"104":{"tf":2.449489742783178},"105":{"tf":1.0},"106":{"tf":1.0},"28":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":5,"docs":{"38":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"74":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"n":{"c":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":13,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"19":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.0},"51":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":2.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"81":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":2.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"a":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":10,"docs":{"109":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"29":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":1.0},"41":{"tf":1.0},"51":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{"/":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"40":{"tf":1.0},"42":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":3,"docs":{"110":{"tf":2.23606797749979},"116":{"tf":1.0},"80":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"110":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"109":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"110":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"i":{"df":1,"docs":{"51":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"133":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"104":{"tf":1.0},"109":{"tf":2.23606797749979},"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"109":{"tf":2.0},"90":{"tf":1.0}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"109":{"tf":1.0}}}}},"df":2,"docs":{"30":{"tf":1.0},"88":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"35":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"=":{"2":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}},"df":23,"docs":{"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":4.123105625617661},"110":{"tf":2.23606797749979},"111":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":2.23606797749979},"18":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"33":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"80":{"tf":5.5677643628300215},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":2.6457513110645907},"88":{"tf":2.6457513110645907},"9":{"tf":1.4142135623730951},"90":{"tf":1.0},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"d":{"b":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"110":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"13":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.0},"97":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"j":{"df":2,"docs":{"104":{"tf":1.0},"105":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"80":{"tf":1.0},"85":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"5":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.4142135623730951}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"109":{"tf":1.4142135623730951},"18":{"tf":1.0},"24":{"tf":1.0},"64":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":11,"docs":{"109":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"80":{"tf":3.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}}},"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":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"45":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"x":{"df":3,"docs":{"67":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"111":{"tf":1.0},"116":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"c":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}}},"a":{"df":1,"docs":{"96":{"tf":1.0}}},"b":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"/":{"a":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":6,"docs":{"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":2.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":2.23606797749979},"88":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"63":{"tf":1.0},"80":{"tf":2.23606797749979},"82":{"tf":1.0},"87":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"80":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"105":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"109":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"114":{"tf":1.0},"32":{"tf":1.0},"38":{"tf":2.8284271247461903},"78":{"tf":1.7320508075688772},"80":{"tf":2.449489742783178},"81":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"x":{":":{"'":{",":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"113":{"tf":1.7320508075688772}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"108":{"tf":1.4142135623730951},"109":{"tf":2.0},"111":{"tf":1.0},"113":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"106":{"tf":1.4142135623730951},"109":{"tf":3.1622776601683795},"114":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":3.872983346207417}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"65":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"28":{"tf":1.7320508075688772},"53":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"109":{"tf":1.0},"114":{"tf":1.0},"29":{"tf":1.0},"61":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"92":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"109":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"5":{"tf":1.0}},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"0":{"tf":1.7320508075688772},"3":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"49":{"tf":1.0},"5":{"tf":1.4142135623730951},"6":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"78":{"tf":1.0},"87":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.0}}},"t":{"df":7,"docs":{"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"16":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"67":{"tf":1.0}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"38":{"tf":1.0},"92":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"113":{"tf":1.0},"127":{"tf":1.0},"30":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"109":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"u":{".":{"2":{"0":{"2":{"3":{"0":{"5":{"2":{"2":{".":{"1":{"5":{"4":{"6":{"5":{"8":{".":{"1":{"4":{"5":{"7":{"7":{".":{"0":{".":{"0":{"0":{"1":{".":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"44":{"tf":1.4142135623730951},"45":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"35":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":16,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.4142135623730951},"116":{"tf":1.0},"127":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":3.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"101":{"tf":1.4142135623730951},"110":{"tf":1.0},"88":{"tf":2.23606797749979},"92":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"78":{"tf":2.449489742783178},"80":{"tf":4.0},"81":{"tf":2.6457513110645907},"83":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.23606797749979},"92":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"!":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"103":{"tf":1.0},"109":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"21":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"4":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"w":{"d":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951}}}}}},"t":{"a":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.0}}}}},"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}},"df":2,"docs":{"87":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"76":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"48":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"114":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":11,"docs":{"31":{"tf":1.7320508075688772},"32":{"tf":2.449489742783178},"33":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":2.23606797749979},"37":{"tf":2.0},"38":{"tf":2.23606797749979},"39":{"tf":2.23606797749979},"41":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772}},"g":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"80":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":11,"docs":{"106":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"29":{"tf":1.0},"38":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"109":{"tf":1.7320508075688772},"113":{"tf":1.0},"29":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":2.8284271247461903},"88":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"80":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"v":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"c":{"df":0,"docs":{},"m":{"d":{"/":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"@":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":2.0},"53":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"p":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"[":{"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"109":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"df":36,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"103":{"tf":2.23606797749979},"104":{"tf":2.8284271247461903},"105":{"tf":1.4142135623730951},"106":{"tf":3.0},"107":{"tf":1.7320508075688772},"108":{"tf":2.0},"109":{"tf":3.872983346207417},"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.7320508075688772},"119":{"tf":1.0},"120":{"tf":1.0},"28":{"tf":1.4142135623730951},"71":{"tf":1.0},"8":{"tf":2.0},"85":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":3.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":2.449489742783178},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"92":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"103":{"tf":1.0},"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"85":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":4,"docs":{"104":{"tf":1.0},"73":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"113":{"tf":1.0},"124":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"41":{"tf":1.0},"65":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}},"v":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}}},"df":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":{"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":4,"docs":{"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":7,"docs":{"103":{"tf":1.0},"113":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"6":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"102":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"133":{"tf":1.0},"5":{"tf":1.0},"88":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"29":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"28":{"tf":2.23606797749979},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"33":{"tf":1.0},"45":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"36":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.0}}}}},"o":{"c":{"1":{"df":1,"docs":{"75":{"tf":1.0}}},"2":{"df":1,"docs":{"75":{"tf":1.0}}},"df":7,"docs":{"105":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.7320508075688772},"5":{"tf":1.0},"6":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":1,"docs":{"80":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":6,"docs":{"109":{"tf":1.4142135623730951},"18":{"tf":1.0},"24":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"110":{"tf":2.0},"80":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.0},"84":{"tf":1.0}}},"t":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"102":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"84":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":4,"docs":{"104":{"tf":1.0},"44":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":2.0}}}},"2":{"df":4,"docs":{"27":{"tf":2.23606797749979},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"h":{"df":20,"docs":{"102":{"tf":1.0},"106":{"tf":1.7320508075688772},"109":{"tf":1.7320508075688772},"110":{"tf":2.23606797749979},"111":{"tf":1.0},"116":{"tf":1.0},"133":{"tf":1.0},"30":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.0},"82":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.7320508075688772},"93":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"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":4,"docs":{"104":{"tf":1.7320508075688772},"109":{"tf":1.0},"113":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"114":{"tf":2.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"110":{"tf":1.0},"34":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"113":{"tf":1.0},"53":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}}}},"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":8,"docs":{"103":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.4142135623730951},"28":{"tf":1.0},"45":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"133":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"111":{"tf":1.4142135623730951},"51":{"tf":1.0},"88":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"38":{"tf":1.0}}},"y":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"13":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.4142135623730951}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"41":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}},"s":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":5,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":2.449489742783178},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"109":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"53":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}},"t":{"c":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":9,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"104":{"tf":1.7320508075688772},"65":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"109":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.4142135623730951}},"t":{"df":2,"docs":{"33":{"tf":1.0},"43":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"40":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":22,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"13":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":2.449489742783178},"69":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":2.0},"82":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"c":{"_":{"b":{"a":{"d":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"80":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"102":{"tf":1.0},"37":{"tf":1.0},"67":{"tf":2.0},"69":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"29":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}}},"t":{"df":1,"docs":{"45":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"81":{"tf":1.0},"87":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"41":{"tf":1.0}}},"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"81":{"tf":1.4142135623730951}},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"81":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"109":{"tf":1.0},"55":{"tf":1.0},"72":{"tf":1.0},"90":{"tf":1.0}}}},"n":{"df":9,"docs":{"104":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"40":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":7,"docs":{"105":{"tf":1.0},"106":{"tf":2.0},"109":{"tf":1.0},"114":{"tf":2.0},"29":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"106":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"113":{"tf":2.0},"35":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"109":{"tf":1.7320508075688772},"87":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":5,"docs":{"11":{"tf":1.0},"32":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.6457513110645907},"84":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":2,"docs":{"78":{"tf":1.0},"80":{"tf":3.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"a":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"73":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}},"t":{"df":1,"docs":{"109":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"16":{"tf":1.0},"22":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":1,"docs":{"88":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"127":{"tf":1.0},"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":3,"docs":{"106":{"tf":1.0},"110":{"tf":1.0},"80":{"tf":1.7320508075688772}}}},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"83":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"102":{"tf":1.0},"104":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":22,"docs":{"103":{"tf":1.7320508075688772},"109":{"tf":1.0},"20":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"29":{"tf":2.23606797749979},"38":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":2.0},"54":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":3.872983346207417},"81":{"tf":2.0},"82":{"tf":1.0},"84":{"tf":3.0},"87":{"tf":2.23606797749979},"88":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"75":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{".":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"19":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"87":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"106":{"tf":1.0},"110":{"tf":1.7320508075688772},"113":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"80":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}}},"d":{"df":9,"docs":{"102":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.0},"81":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"29":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"0":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.7320508075688772},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"67":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"37":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"82":{"tf":1.0}}},"x":{"df":4,"docs":{"18":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.0},"51":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":3.4641016151377544}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"l":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"65":{"tf":1.0},"87":{"tf":2.0}}}}},"n":{"df":2,"docs":{"29":{"tf":1.0},"35":{"tf":1.0}},"m":{"df":1,"docs":{"13":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"109":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"108":{"tf":1.0},"113":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"28":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":16,"docs":{"114":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.7320508075688772},"47":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}},"o":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"104":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":5,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":3.605551275463989},"109":{"tf":2.0},"114":{"tf":2.449489742783178},"95":{"tf":1.4142135623730951}}},"r":{"c":{"df":1,"docs":{"80":{"tf":2.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"51":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"85":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"133":{"tf":1.0},"46":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"80":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"88":{"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":3,"docs":{"109":{"tf":3.0},"75":{"tf":2.0},"88":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"35":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"106":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":4,"docs":{"80":{"tf":2.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":16,"docs":{"109":{"tf":1.0},"114":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"40":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"133":{"tf":2.0}}}}},"df":4,"docs":{"44":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":15,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":2.23606797749979},"110":{"tf":2.449489742783178},"113":{"tf":1.7320508075688772},"114":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"44":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":2.0},"88":{"tf":2.449489742783178}}}}},"t":{"df":9,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"103":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}},"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":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"1":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"80":{"tf":1.0},"87":{"tf":1.0}},"n":{"df":4,"docs":{"109":{"tf":1.7320508075688772},"111":{"tf":1.0},"116":{"tf":1.0},"87":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"73":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":6,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"32":{"tf":1.0},"80":{"tf":2.449489742783178},"81":{"tf":1.0},"88":{"tf":1.4142135623730951}},"e":{"df":2,"docs":{"5":{"tf":1.0},"88":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"84":{"tf":1.0}}}},"o":{"d":{"df":10,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"3":{"tf":1.7320508075688772},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"h":{"df":5,"docs":{"101":{"tf":1.4142135623730951},"104":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"93":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"78":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"5":{"tf":1.4142135623730951},"6":{"tf":2.0},"64":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"87":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"80":{"tf":2.23606797749979},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"53":{"tf":1.0}},"l":{"df":10,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":3.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"r":{"d":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":4,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.0},"109":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"106":{"tf":1.0},"109":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":9,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":1.4142135623730951},"64":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.7320508075688772}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":4,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.0},"88":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":12,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"13":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"109":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.7320508075688772}}}}},"o":{"d":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":2,"docs":{"110":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"df":2,"docs":{"111":{"tf":1.7320508075688772},"95":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"#":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"110":{"tf":1.0},"85":{"tf":1.0}}}}}},"i":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}}},".":{"df":1,"docs":{"116":{"tf":1.0}}},"6":{"8":{"6":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":2,"docs":{"106":{"tf":1.0},"37":{"tf":1.0}},"e":{"a":{"df":4,"docs":{"109":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"87":{"tf":1.0}},"l":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":6,"docs":{"102":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"40":{"tf":1.0},"63":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"80":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":13,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"41":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":2.23606797749979},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.7320508075688772}}}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"81":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{".":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":16,"docs":{"104":{"tf":2.0},"106":{"tf":3.4641016151377544},"109":{"tf":2.449489742783178},"116":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"53":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":2.0},"80":{"tf":6.082762530298219},"83":{"tf":2.23606797749979},"84":{"tf":1.0},"87":{"tf":2.449489742783178},"88":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"df":1,"docs":{"109":{"tf":1.0}}},"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"40":{"tf":1.0},"85":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":10,"docs":{"16":{"tf":1.0},"22":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"!":{"=":{"!":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"j":{"df":3,"docs":{"104":{"tf":2.449489742783178},"116":{"tf":1.0},"96":{"tf":1.0}},"s":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"#":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"75":{"tf":1.4142135623730951}}}},"i":{"c":{"df":4,"docs":{"103":{"tf":1.0},"110":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":2,"docs":{"43":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":4,"docs":{"33":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"45":{"tf":1.0},"51":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"109":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"42":{"tf":1.0},"88":{"tf":1.0}}}}},"r":{"a":{"df":3,"docs":{"18":{"tf":1.0},"24":{"tf":1.0},"5":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"109":{"tf":2.0},"114":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"i":{"df":2,"docs":{"32":{"tf":1.0},"88":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"102":{"tf":1.7320508075688772},"104":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"80":{"tf":2.8284271247461903},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772},"87":{"tf":3.1622776601683795},"88":{"tf":2.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"11":{"tf":1.4142135623730951},"13":{"tf":3.0},"32":{"tf":2.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"8":{"tf":2.6457513110645907}}},"n":{"c":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"53":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"33":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":2.6457513110645907}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"80":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.0},"4":{"tf":1.0},"50":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}},"n":{"df":9,"docs":{"103":{"tf":1.4142135623730951},"113":{"tf":1.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"69":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":11,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":7,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"50":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"45":{"tf":1.4142135623730951},"63":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"5":{"tf":1.0},"6":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":11,"docs":{"0":{"tf":1.4142135623730951},"109":{"tf":1.0},"3":{"tf":2.0},"4":{"tf":2.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0}}}}},"t":{"'":{"df":19,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"110":{"tf":2.0},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"38":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.4142135623730951},"76":{"tf":1.0},"78":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.7320508075688772}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"110":{"tf":1.7320508075688772},"122":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":5,"docs":{"102":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"df":8,"docs":{"106":{"tf":1.0},"113":{"tf":1.0},"36":{"tf":1.7320508075688772},"76":{"tf":1.0},"80":{"tf":3.4641016151377544},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"88":{"tf":2.449489742783178}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}},"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}}},"o":{"b":{"df":2,"docs":{"110":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":4.0}}}},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"75":{"tf":1.0}},"s":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"#":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":10,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"44":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"80":{"tf":2.6457513110645907},"87":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"104":{"tf":1.0},"42":{"tf":1.0},"76":{"tf":1.0}}}},"x":{"df":2,"docs":{"82":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":2,"docs":{"51":{"tf":1.0},"63":{"tf":1.0}}}},"y":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"n":{"d":{"df":11,"docs":{"110":{"tf":1.0},"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"84":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"114":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":5,"docs":{"110":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":7,"docs":{"127":{"tf":1.7320508075688772},"3":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"80":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"80":{"tf":1.0}},"r":{"df":8,"docs":{"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"114":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"46":{"tf":1.0},"47":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}}}}}},":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":2.0}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"2":{"0":{"2":{"3":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":4,"docs":{"32":{"tf":1.4142135623730951},"35":{"tf":1.0},"38":{"tf":2.0},"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":1.0},"51":{"tf":1.4142135623730951}}}},"v":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"80":{"tf":2.0},"81":{"tf":2.0},"87":{"tf":1.4142135623730951}}}},"t":{"'":{"df":5,"docs":{"109":{"tf":1.0},"116":{"tf":1.0},"37":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":15,"docs":{"0":{"tf":1.0},"100":{"tf":1.4142135623730951},"28":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":3,"docs":{"110":{"tf":1.0},"19":{"tf":1.0},"25":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"k":{"df":3,"docs":{"110":{"tf":1.0},"51":{"tf":1.0},"88":{"tf":1.0}}},"t":{":":{"df":0,"docs":{},"j":{"df":1,"docs":{"51":{"tf":1.0}}},"r":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"47":{"tf":2.0},"49":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"54":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"72":{"tf":1.0},"80":{"tf":2.23606797749979},"88":{"tf":1.4142135623730951}}}}}},"l":{"d":{"b":{"df":2,"docs":{"35":{"tf":2.449489742783178},"38":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"a":{"d":{"df":5,"docs":{"68":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"!":{".":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"74":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"'":{"df":1,"docs":{"88":{"tf":1.0}}},"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"80":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"?":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"!":{".":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"74":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"103":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}}}}}},"df":34,"docs":{"102":{"tf":2.23606797749979},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"44":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":3.1622776601683795},"64":{"tf":1.4142135623730951},"65":{"tf":3.3166247903554},"66":{"tf":1.0},"67":{"tf":4.242640687119285},"68":{"tf":1.4142135623730951},"69":{"tf":3.3166247903554},"71":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":2.449489742783178},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":3.0},"79":{"tf":1.0},"80":{"tf":8.18535277187245},"81":{"tf":2.6457513110645907},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":3.605551275463989},"85":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"87":{"tf":6.6332495807108},"88":{"tf":3.872983346207417},"89":{"tf":2.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"s":{"!":{".":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"51":{"tf":1.0}}},"t":{"df":6,"docs":{"103":{"tf":1.0},"133":{"tf":1.0},"45":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"o":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"[":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"]":{"!":{"=":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"72":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":7,"docs":{"106":{"tf":1.0},"109":{"tf":1.4142135623730951},"113":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"69":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}}},"s":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}},"t":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"w":{"df":1,"docs":{"100":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"13":{"tf":2.0}}}},"m":{"a":{"c":{"df":2,"docs":{"40":{"tf":1.0},"45":{"tf":1.7320508075688772}},"o":{"df":1,"docs":{"37":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"109":{"tf":1.4142135623730951},"111":{"tf":1.0},"19":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"105":{"tf":1.4142135623730951},"5":{"tf":1.0},"51":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":14,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"13":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"#":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"50":{"tf":1.0},"87":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":2,"docs":{"106":{"tf":1.0},"38":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"k":{"!":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":4,"docs":{"69":{"tf":1.0},"75":{"tf":1.0},"92":{"tf":1.7320508075688772},"95":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"102":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":4.242640687119285},"82":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"87":{"tf":3.4641016151377544},"88":{"tf":2.449489742783178},"96":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"75":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"106":{"tf":1.0},"109":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"38":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"73":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0}},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"67":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"133":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"127":{"tf":1.0},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"110":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.23606797749979}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"80":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"78":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":1,"docs":{"53":{"tf":2.449489742783178}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}},"s":{"c":{"df":2,"docs":{"126":{"tf":1.7320508075688772},"127":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"92":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"103":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"63":{"tf":1.0}}}}},"x":{"df":4,"docs":{"36":{"tf":2.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"39":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"109":{"tf":1.0}},"e":{"df":4,"docs":{"103":{"tf":1.0},"113":{"tf":1.0},"37":{"tf":1.0},"95":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"109":{"tf":2.0}},"i":{"df":7,"docs":{"109":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"67":{"tf":1.0},"80":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":26,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":3.0},"103":{"tf":2.0},"104":{"tf":2.0},"105":{"tf":2.23606797749979},"106":{"tf":3.872983346207417},"109":{"tf":2.0},"110":{"tf":2.0},"111":{"tf":2.0},"114":{"tf":1.0},"116":{"tf":1.7320508075688772},"20":{"tf":1.0},"26":{"tf":1.0},"67":{"tf":1.7320508075688772},"74":{"tf":1.0},"76":{"tf":2.23606797749979},"78":{"tf":1.7320508075688772},"80":{"tf":2.449489742783178},"81":{"tf":2.449489742783178},"84":{"tf":1.4142135623730951},"87":{"tf":2.23606797749979},"88":{"tf":4.358898943540674},"89":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772}},"e":{"'":{"df":1,"docs":{"110":{"tf":1.0}}},".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"114":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":3.3166247903554},"81":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":8,"docs":{"104":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.0}},"e":{"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":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"104":{"tf":2.0},"105":{"tf":1.0},"106":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":14,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":2.23606797749979},"113":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"111":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"85":{"tf":1.0},"88":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"47":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"28":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":6,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"29":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":2.449489742783178}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"32":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":8,"docs":{"63":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":2.23606797749979},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"df":1,"docs":{"80":{"tf":1.4142135623730951}},"e":{"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":{"105":{"tf":1.0},"109":{"tf":1.0},"29":{"tf":1.0},"38":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":13,"docs":{"123":{"tf":1.0},"125":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"19":{"tf":1.0},"25":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}}}}}},"w":{"df":9,"docs":{"109":{"tf":2.0},"127":{"tf":1.0},"29":{"tf":1.0},"51":{"tf":1.7320508075688772},"6":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}}},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"46":{"tf":1.0},"48":{"tf":2.0}}}}}}}},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"=":{"1":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":13,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":3.0},"15":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"51":{"tf":1.0},"7":{"tf":1.0},"76":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772},"9":{"tf":1.0}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"df":11,"docs":{"13":{"tf":1.0},"17":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"32":{"tf":1.0},"35":{"tf":2.23606797749979},"38":{"tf":3.1622776601683795},"44":{"tf":1.0},"63":{"tf":1.0},"8":{"tf":1.0}},"j":{"df":2,"docs":{"40":{"tf":1.0},"44":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}},"n":{"df":1,"docs":{"88":{"tf":1.0}},"e":{"df":1,"docs":{"80":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":11,"docs":{"102":{"tf":1.0},"116":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"45":{"tf":1.0},"63":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"88":{"tf":3.1622776601683795}},"e":{"#":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}},"y":{"#":{"c":{"df":0,"docs":{},"r":{"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":{}}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"76":{"tf":1.7320508075688772},"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":1,"docs":{"78":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"df":4,"docs":{"37":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.0},"8":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"85":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"106":{"tf":2.0},"108":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"13":{"tf":2.23606797749979}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"k":{"df":1,"docs":{"85":{"tf":1.0}}},"l":{"d":{"df":3,"docs":{"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":2.0},"80":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"c":{"df":3,"docs":{"35":{"tf":1.0},"45":{"tf":1.0},"85":{"tf":1.0}}},"df":7,"docs":{"109":{"tf":1.0},"116":{"tf":1.0},"15":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"29":{"tf":1.0},"67":{"tf":1.0},"81":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"29":{"tf":1.0}}}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"2":{"4":{"4":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":8,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"69":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"84":{"tf":2.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"103":{"tf":1.0},"29":{"tf":1.0},"43":{"tf":1.0},"52":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.23606797749979},"78":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"109":{"tf":2.0},"69":{"tf":1.4142135623730951},"80":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"113":{"tf":1.0},"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"67":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"76":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"t":{"df":6,"docs":{"109":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"45":{"tf":2.0},"84":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"85":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"84":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"4":{"tf":1.0},"87":{"tf":1.0}}}}}}}}},"x":{"c":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"34":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"19":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"5":{"tf":1.0},"51":{"tf":2.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"35":{"tf":1.7320508075688772},"45":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"46":{"tf":1.0},"55":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}},"r":{"df":1,"docs":{"109":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"109":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}},"s":{"df":7,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"35":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":3,"docs":{"106":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.449489742783178}}}}},"t":{"(":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":11,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.7320508075688772},"18":{"tf":1.0},"24":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.449489742783178},"82":{"tf":1.7320508075688772},"86":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.0}},"i":{"df":2,"docs":{"82":{"tf":1.0},"84":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":14,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"108":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"109":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":1.0}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":10,"docs":{"102":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"29":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":2.0},"80":{"tf":3.605551275463989},"88":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"29":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951}}}}}}}}},"c":{"df":1,"docs":{"47":{"tf":1.7320508075688772}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":2,"docs":{"72":{"tf":1.0},"88":{"tf":1.0}}}},"r":{"df":2,"docs":{"109":{"tf":1.0},"125":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"40":{"tf":1.0},"44":{"tf":1.0},"63":{"tf":1.7320508075688772},"69":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"133":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"65":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.0},"67":{"tf":1.0},"69":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"122":{"tf":1.0},"125":{"tf":1.0}}},"y":{"df":1,"docs":{"133":{"tf":1.0}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"27":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"1":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"103":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"114":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"78":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":3.1622776601683795}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"|":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"81":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"m":{"@":{"7":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"19":{"tf":1.7320508075688772},"25":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"45":{"tf":1.0},"51":{"tf":1.7320508075688772},"8":{"tf":2.0},"9":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"28":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"30":{"tf":1.0},"38":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"69":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"92":{"tf":1.0}}}}},"df":1,"docs":{"84":{"tf":1.0}}}}},"r":{"df":6,"docs":{"127":{"tf":1.4142135623730951},"49":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":2.0},"62":{"tf":1.4142135623730951},"75":{"tf":1.0}},"e":{"df":3,"docs":{"102":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"105":{"tf":1.0},"54":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"87":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"37":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"106":{"tf":1.0},"108":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772}}}}},"s":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.4142135623730951}},"s":{"df":3,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.0},"43":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"109":{"tf":1.0},"4":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"53":{"tf":1.4142135623730951},"73":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"110":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"45":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"113":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"df":8,"docs":{"102":{"tf":1.0},"110":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}}}}}}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"42":{"tf":1.0},"45":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"35":{"tf":1.7320508075688772}},"f":{"df":1,"docs":{"44":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"40":{"tf":2.23606797749979},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":2.449489742783178},"45":{"tf":2.23606797749979}},"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":{"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"35":{"tf":1.0},"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"37":{"tf":1.0},"4":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":7,"docs":{"28":{"tf":2.0},"29":{"tf":1.7320508075688772},"3":{"tf":1.0},"30":{"tf":1.0},"45":{"tf":1.7320508075688772},"54":{"tf":1.0},"80":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"}":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"80":{"tf":2.23606797749979},"82":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"75":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":10,"docs":{"102":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":2.23606797749979},"4":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.7320508075688772},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"80":{"tf":2.0}}}},"df":0,"docs":{}}}},"u":{"b":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"46":{"tf":1.0},"49":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"51":{"tf":2.23606797749979}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"68":{"tf":1.0},"75":{"tf":1.4142135623730951},"82":{"tf":1.0},"88":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.0},"75":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"49":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":6,"docs":{"111":{"tf":1.0},"114":{"tf":1.0},"45":{"tf":1.0},"63":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"106":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"w":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"78":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}},"df":1,"docs":{"35":{"tf":1.4142135623730951}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.0}}},"t":{"df":1,"docs":{"87":{"tf":1.0}}}},"d":{"df":4,"docs":{"106":{"tf":1.0},"51":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":1.7320508075688772}}},"df":0,"docs":{},"l":{"df":9,"docs":{"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"76":{"tf":1.0},"80":{"tf":2.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"92":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"35":{"tf":1.0},"63":{"tf":1.4142135623730951}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"110":{"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":7,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":2,"docs":{"113":{"tf":1.0},"45":{"tf":2.23606797749979}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"114":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"75":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":2,"docs":{"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"64":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"75":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"108":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.4142135623730951},"38":{"tf":1.0},"66":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":2.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"110":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"88":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"102":{"tf":1.0},"84":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"80":{"tf":1.0}},"p":{"df":1,"docs":{"92":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"29":{"tf":1.0},"69":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"20":{"tf":1.0},"26":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}}}},"df":2,"docs":{"74":{"tf":1.0},"87":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":8,"docs":{"124":{"tf":2.449489742783178},"125":{"tf":3.1622776601683795},"33":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":2.23606797749979},"47":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"49":{"tf":2.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"102":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"109":{"tf":1.0},"80":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"127":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"c":{"df":6,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":2.23606797749979},"111":{"tf":2.23606797749979},"113":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"127":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"5":{"tf":1.0},"51":{"tf":1.4142135623730951}}},"y":{"'":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":1.0},"67":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"53":{"tf":2.6457513110645907}}},"df":0,"docs":{}}},"df":1,"docs":{"53":{"tf":1.0}}}}},"q":{"df":1,"docs":{"109":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"102":{"tf":1.4142135623730951},"104":{"tf":2.23606797749979},"38":{"tf":2.0},"51":{"tf":2.23606797749979},"67":{"tf":1.4142135623730951},"74":{"tf":2.6457513110645907},"75":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.0},"87":{"tf":2.23606797749979},"88":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"104":{"tf":1.0},"109":{"tf":1.7320508075688772},"110":{"tf":2.0},"80":{"tf":1.0},"87":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"80":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}},"v":{"df":8,"docs":{"103":{"tf":2.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"63":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.23606797749979}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":12,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":1.0},"75":{"tf":2.0},"78":{"tf":1.0},"80":{"tf":3.0},"82":{"tf":1.7320508075688772},"84":{"tf":2.23606797749979},"87":{"tf":2.23606797749979},"88":{"tf":2.6457513110645907}},"e":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"75":{"tf":1.0},"80":{"tf":2.23606797749979},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":4.123105625617661}}}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"110":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"39":{"tf":1.0},"65":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"74":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":8,"docs":{"109":{"tf":1.4142135623730951},"114":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"80":{"tf":4.242640687119285},"82":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"s":{"df":7,"docs":{"68":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"f":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"i":{"d":{"df":2,"docs":{"81":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"110":{"tf":1.0},"87":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":6,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"37":{"tf":1.0},"87":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"#":{"2":{"7":{"8":{"0":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"8":{"df":1,"docs":{"62":{"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"28":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"32":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"46":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"41":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"33":{"tf":1.0},"41":{"tf":1.4142135623730951}},"e":{"=":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"c":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"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":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"&":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":2,"docs":{"33":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":40,"docs":{"0":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"133":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":2.23606797749979},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":2.23606797749979},"26":{"tf":1.0},"29":{"tf":2.6457513110645907},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":2.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":2.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"81":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}},"1":{"df":1,"docs":{"84":{"tf":1.0}}},"2":{"df":1,"docs":{"84":{"tf":1.0}}},"df":9,"docs":{"28":{"tf":1.0},"29":{"tf":1.0},"78":{"tf":2.6457513110645907},"80":{"tf":3.4641016151377544},"81":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"89":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}}}},"n":{"df":25,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.7320508075688772},"19":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":1.7320508075688772},"25":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"51":{"tf":2.449489742783178},"7":{"tf":1.7320508075688772},"8":{"tf":1.0},"9":{"tf":2.0}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":3,"docs":{"63":{"tf":1.0},"67":{"tf":2.0},"93":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":3.0},"111":{"tf":1.0},"35":{"tf":1.0},"80":{"tf":1.0},"96":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":2.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"110":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"11":{"tf":2.0},"129":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.7320508075688772},"21":{"tf":1.0},"22":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"35":{"tf":2.449489742783178},"36":{"tf":1.7320508075688772},"45":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":2.23606797749979},"69":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":11,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"45":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":4,"docs":{"76":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":2.449489742783178}}}}}},">":{"<":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"80":{"tf":2.6457513110645907}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"110":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"110":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"109":{"tf":2.0},"40":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":17,"docs":{"104":{"tf":1.0},"109":{"tf":2.23606797749979},"113":{"tf":1.0},"114":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.4142135623730951},"87":{"tf":2.0},"88":{"tf":1.7320508075688772},"92":{"tf":1.0}},"n":{"df":1,"docs":{"113":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"32":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"df":2,"docs":{"35":{"tf":1.0},"53":{"tf":1.0}}}},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"124":{"tf":1.0}}}}}},"df":1,"docs":{"46":{"tf":1.0}}}}}},"n":{"d":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"74":{"tf":1.0},"80":{"tf":1.7320508075688772},"87":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772}}}}}},"t":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"df":13,"docs":{"110":{"tf":1.0},"113":{"tf":1.4142135623730951},"15":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"51":{"tf":1.0}}}}}},"f":{"c":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"?":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"80":{"tf":2.0}}}}}},"df":1,"docs":{"80":{"tf":3.4641016151377544}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"114":{"tf":2.0}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"109":{"tf":1.0},"28":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":1.0},"53":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":9,"docs":{"104":{"tf":1.7320508075688772},"113":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"44":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"67":{"tf":2.449489742783178},"69":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"63":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.4142135623730951}},"i":{"df":2,"docs":{"45":{"tf":1.0},"84":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"109":{"tf":1.0},"81":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":5,"docs":{"0":{"tf":1.0},"133":{"tf":1.0},"51":{"tf":1.4142135623730951},"69":{"tf":1.0},"80":{"tf":1.7320508075688772}}}}},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":1,"docs":{"84":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"102":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"80":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":6,"docs":{"16":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"22":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}},"i":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0}}}},"v":{"df":1,"docs":{"109":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"109":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":2.23606797749979}}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"51":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":15,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"106":{"tf":2.0},"109":{"tf":4.795831523312719},"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"113":{"tf":2.0},"114":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":2.449489742783178},"90":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"[":{"0":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.0}}}},"c":{"df":2,"docs":{"35":{"tf":1.0},"76":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"80":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":6,"docs":{"109":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"54":{"tf":1.0}},"i":{"df":5,"docs":{"106":{"tf":2.0},"74":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"44":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"c":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"109":{"tf":2.0},"63":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"16":{"tf":1.0},"22":{"tf":1.0}}}}}},"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":16,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.7320508075688772},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"4":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"t":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":6,"docs":{"106":{"tf":1.4142135623730951},"109":{"tf":2.23606797749979},"116":{"tf":1.0},"80":{"tf":2.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":5,"docs":{"110":{"tf":1.4142135623730951},"114":{"tf":1.0},"69":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":2.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"72":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":2.23606797749979},"88":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"35":{"tf":1.7320508075688772},"45":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":4,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"108":{"tf":1.0},"29":{"tf":2.8284271247461903},"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"104":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":4,"docs":{"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"[":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"]":{"!":{"=":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"87":{"tf":1.0}}}}}}},":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},">":{"<":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"51":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.7320508075688772},"80":{"tf":3.872983346207417},"81":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}},"s":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":2,"docs":{"105":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.7320508075688772}}}}}}},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":2.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":2.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"63":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":16,"docs":{"1":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"63":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":2.449489742783178},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":2.0},"89":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"51":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"g":{"df":2,"docs":{"82":{"tf":1.0},"87":{"tf":1.4142135623730951}},"o":{"df":1,"docs":{"87":{"tf":1.0}}},"r":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}}},"df":2,"docs":{"82":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"w":{"c":{"'":{"df":1,"docs":{"88":{"tf":1.0}}},"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"114":{"tf":1.0},"45":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"y":{"b":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"104":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"80":{"tf":2.0},"87":{"tf":2.6457513110645907},"88":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":9,"docs":{"103":{"tf":1.4142135623730951},"110":{"tf":1.0},"37":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":1,"docs":{"32":{"tf":1.0}},"l":{"df":3,"docs":{"45":{"tf":1.0},"61":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"106":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":6,"docs":{"0":{"tf":1.0},"106":{"tf":1.0},"45":{"tf":1.0},"80":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":1,"docs":{"105":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":4,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"35":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"133":{"tf":2.0},"54":{"tf":1.7320508075688772},"80":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":4,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"65":{"tf":1.7320508075688772},"80":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"72":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"80":{"tf":1.0},"88":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"/":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"109":{"tf":3.3166247903554},"110":{"tf":1.0},"114":{"tf":1.0},"45":{"tf":1.4142135623730951},"53":{"tf":1.0},"80":{"tf":3.1622776601683795},"92":{"tf":1.0}},"e":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},">":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"2":{"df":1,"docs":{"109":{"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":{"109":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"a":{"d":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}},"df":1,"docs":{"109":{"tf":3.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"40":{"tf":1.0},"43":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"t":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}},"df":22,"docs":{"15":{"tf":2.0},"16":{"tf":2.6457513110645907},"17":{"tf":2.6457513110645907},"18":{"tf":4.0},"19":{"tf":3.7416573867739413},"20":{"tf":4.242640687119285},"21":{"tf":2.0},"22":{"tf":2.6457513110645907},"23":{"tf":2.6457513110645907},"24":{"tf":4.0},"25":{"tf":3.7416573867739413},"26":{"tf":4.242640687119285},"27":{"tf":1.7320508075688772},"28":{"tf":2.0},"29":{"tf":2.0},"30":{"tf":1.7320508075688772},"51":{"tf":2.0},"78":{"tf":2.6457513110645907},"80":{"tf":3.4641016151377544},"81":{"tf":2.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"]":{"(":{"#":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"18":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"x":{"df":0,"docs":{},"t":{"(":{"*":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"49":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":2,"docs":{"110":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"84":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"df":0,"docs":{}}},"k":{"df":2,"docs":{"108":{"tf":1.0},"88":{"tf":1.0}}}},"r":{"d":{"df":4,"docs":{"110":{"tf":1.0},"28":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}}},"a":{"d":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":1,"docs":{"88":{"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.7320508075688772}},"}":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"!":{"=":{"!":{"$":{"df":0,"docs":{},"{":{"_":{"_":{"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":0,"docs":{},"e":{"df":0,"docs":{},"}":{"!":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"!":{"=":{"!":{"$":{"df":0,"docs":{},"{":{"_":{"_":{"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":0,"docs":{},"e":{"df":0,"docs":{},"}":{"!":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{"?":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"?":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"82":{"tf":1.0},"84":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"110":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":7,"docs":{"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"116":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"49":{"tf":1.0},"80":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":8,"docs":{"102":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"46":{"tf":1.0},"80":{"tf":2.23606797749979},"84":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"123":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":12,"docs":{"106":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"53":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.4142135623730951},"91":{"tf":1.0},"96":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.7320508075688772}}}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":2,"docs":{"115":{"tf":1.0},"120":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"32":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"35":{"tf":1.0}}}}},"o":{"(":{"df":0,"docs":{},"i":{".":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"p":{"df":2,"docs":{"105":{"tf":1.0},"87":{"tf":1.0}},"i":{"c":{"df":2,"docs":{"123":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"!":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":7,"docs":{"33":{"tf":2.449489742783178},"34":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":2.449489742783178},"42":{"tf":2.0},"43":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951}}},"k":{"df":2,"docs":{"0":{"tf":1.0},"4":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":5,"docs":{"67":{"tf":1.0},"80":{"tf":2.8284271247461903},"82":{"tf":1.4142135623730951},"84":{"tf":2.23606797749979},"87":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"114":{"tf":2.0}}}},"i":{"df":1,"docs":{"88":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":8,"docs":{"109":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"d":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"45":{"tf":1.0},"53":{"tf":1.0},"80":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":11,"docs":{"109":{"tf":2.23606797749979},"15":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"38":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"69":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":19,"docs":{"102":{"tf":1.7320508075688772},"103":{"tf":1.0},"104":{"tf":2.449489742783178},"106":{"tf":2.23606797749979},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"29":{"tf":2.0},"38":{"tf":2.0},"52":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":2.23606797749979},"84":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"88":{"tf":3.0},"89":{"tf":1.0},"92":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"c":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"u":{"df":2,"docs":{"19":{"tf":1.0},"25":{"tf":1.0}},"i":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"42":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.0}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"35":{"tf":1.0}}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}},"r":{"df":2,"docs":{"45":{"tf":1.0},"76":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"132":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"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":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"67":{"tf":1.0},"68":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"47":{"tf":2.0},"49":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"127":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0}},"e":{"=":{"1":{"df":2,"docs":{"16":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"116":{"tf":1.7320508075688772},"51":{"tf":1.0},"7":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"74":{"tf":1.4142135623730951},"84":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"114":{"tf":1.0},"92":{"tf":1.0}}}},"df":41,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"116":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":2.0},"20":{"tf":3.1622776601683795},"26":{"tf":3.1622776601683795},"27":{"tf":1.0},"29":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"41":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"45":{"tf":2.0},"53":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":2.0},"80":{"tf":4.58257569495584},"81":{"tf":2.0},"82":{"tf":1.0},"84":{"tf":2.449489742783178},"85":{"tf":1.7320508075688772},"87":{"tf":2.6457513110645907},"88":{"tf":2.23606797749979},"91":{"tf":1.0},"92":{"tf":2.0},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":4,"docs":{"80":{"tf":2.0},"82":{"tf":1.0},"87":{"tf":3.3166247903554},"88":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":3,"docs":{"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"v":{"1":{"4":{".":{"1":{"9":{".":{"0":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"1":{"8":{".":{"0":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"87":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":5,"docs":{"103":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"43":{"tf":1.0},"85":{"tf":1.0}}}},"r":{"df":1,"docs":{"109":{"tf":1.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"106":{"tf":1.0},"29":{"tf":1.4142135623730951},"33":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"13":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"13":{"tf":2.23606797749979},"46":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0}}}}},"u":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"i":{"a":{"df":8,"docs":{"109":{"tf":2.0},"110":{"tf":1.0},"111":{"tf":1.0},"13":{"tf":1.0},"43":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"42":{"tf":1.4142135623730951},"43":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"109":{"tf":1.0},"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"32":{"tf":1.0}}},"/":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"32":{"tf":1.0},"38":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":4,"docs":{"11":{"tf":1.0},"32":{"tf":1.7320508075688772},"37":{"tf":1.0},"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"&":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"75":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"78":{"tf":2.449489742783178},"80":{"tf":7.810249675906654},"87":{"tf":1.7320508075688772}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}}}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"85":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"4":{"tf":1.0},"80":{"tf":1.7320508075688772},"84":{"tf":2.0},"96":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"33":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951}}}},"t":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"92":{"tf":1.7320508075688772},"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":0,"docs":{}},"y":{"df":9,"docs":{"0":{"tf":1.0},"133":{"tf":1.0},"41":{"tf":1.0},"5":{"tf":1.7320508075688772},"50":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.0},"85":{"tf":1.0},"87":{"tf":1.7320508075688772}}}},"df":1,"docs":{"32":{"tf":1.0}},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.0}}}},"r":{"df":1,"docs":{"80":{"tf":1.0}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"/":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"5":{"tf":1.4142135623730951}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"'":{"df":5,"docs":{"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"78":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.4142135623730951}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"20":{"tf":1.0},"26":{"tf":1.0},"87":{"tf":1.0}}}},"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"[":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"85":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}}}},"df":64,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":2.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":2.6457513110645907},"110":{"tf":2.23606797749979},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":2.6457513110645907},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"133":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":3.1622776601683795},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":3.1622776601683795},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"76":{"tf":2.23606797749979},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"80":{"tf":4.123105625617661},"81":{"tf":2.23606797749979},"82":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"84":{"tf":2.23606797749979},"85":{"tf":2.23606797749979},"86":{"tf":1.0},"87":{"tf":3.605551275463989},"88":{"tf":3.3166247903554},"89":{"tf":2.0},"90":{"tf":2.0},"91":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"97":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"125":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"55":{"tf":1.0},"57":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"l":{"df":3,"docs":{"43":{"tf":1.0},"6":{"tf":1.0},"80":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"73":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"106":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"88":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"47":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"114":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"38":{"tf":1.0},"74":{"tf":1.0},"84":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"18":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"76":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"d":{"df":5,"docs":{"109":{"tf":1.4142135623730951},"114":{"tf":1.0},"73":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":12,"docs":{"0":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.4142135623730951},"4":{"tf":1.0},"42":{"tf":1.0},"6":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"30":{"tf":1.0},"35":{"tf":1.0}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"14":{"tf":1.7320508075688772},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"88":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"s":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"38":{"tf":1.4142135623730951}},"i":{"c":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"d":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"76":{"tf":1.0},"88":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"109":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"67":{"tf":1.0},"87":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"x":{".":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"z":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}}},"8":{"6":{"_":{"6":{"4":{"df":2,"docs":{"47":{"tf":2.0},"49":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"40":{"tf":1.0},"45":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"18":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"83":{"tf":1.0}},"x":{"df":1,"docs":{"104":{"tf":1.0}},"x":{"df":1,"docs":{"75":{"tf":1.0}},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"v":{"df":1,"docs":{"51":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}}},"z":{"df":3,"docs":{"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"title":{"root":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"128":{"tf":1.0},"131":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}},"t":{"df":1,"docs":{"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"133":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"28":{"tf":1.0}}}}},"df":1,"docs":{"56":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"38":{"tf":1.0},"78":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"61":{"tf":1.0},"71":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"57":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":4,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"118":{"tf":1.0},"8":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"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":{"106":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"2":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"53":{"tf":1.0},"79":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"64":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"3":{"tf":1.0},"59":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}},"n":{"df":1,"docs":{"131":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"133":{"tf":1.0}}}}},"df":1,"docs":{"58":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"107":{"tf":1.0}}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"73":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"3":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"6":{"tf":1.0},"64":{"tf":1.0},"77":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"92":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"76":{"tf":1.0},"83":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"13":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":3,"docs":{"3":{"tf":1.0},"4":{"tf":1.0},"59":{"tf":1.0}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"127":{"tf":1.0},"55":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":9,"docs":{"100":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}}},"l":{"d":{"b":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"65":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":1,"docs":{"100":{"tf":1.0}}}}},"m":{"a":{"c":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.0}}}}},"s":{"c":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"36":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":8,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"df":1,"docs":{"80":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"8":{"tf":1.0}}}},"df":4,"docs":{"17":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0}},"j":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"112":{"tf":1.0},"69":{"tf":1.0},"88":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"76":{"tf":1.0},"93":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}}}}}}},"x":{"c":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"34":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"65":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":2,"docs":{"52":{"tf":1.0},"62":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"37":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"92":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"40":{"tf":1.0},"44":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"120":{"tf":1.0},"66":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"115":{"tf":1.0},"62":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"51":{"tf":1.0},"74":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"v":{"df":1,"docs":{"105":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"128":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"19":{"tf":1.0},"25":{"tf":1.0},"60":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"7":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"11":{"tf":1.0},"129":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"11":{"tf":1.0},"12":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"63":{"tf":1.0},"72":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"61":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"133":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"115":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"33":{"tf":1.0},"41":{"tf":1.0}}},"k":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"114":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"106":{"tf":1.0},"81":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"116":{"tf":1.0}}},"s":{"df":1,"docs":{"81":{"tf":1.0}}}},"v":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"32":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"130":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"2":{"tf":1.0},"30":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"131":{"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":"AND","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}} \ No newline at end of file diff --git a/testing/e2e.html b/testing/e2e.html index 06b8edd..fc5a8ab 100644 --- a/testing/e2e.html +++ b/testing/e2e.html @@ -90,7 +90,9 @@ - + diff --git a/testing/intro.html b/testing/intro.html index 54108ba..a7f33a8 100644 --- a/testing/intro.html +++ b/testing/intro.html @@ -90,7 +90,9 @@ - + diff --git a/workflows/meetings.html b/workflows/meetings.html index 1bfe47e..2bf8234 100644 --- a/workflows/meetings.html +++ b/workflows/meetings.html @@ -90,7 +90,9 @@ - + diff --git a/workflows/misc.html b/workflows/misc.html index bf70ba6..65d241b 100644 --- a/workflows/misc.html +++ b/workflows/misc.html @@ -90,7 +90,9 @@ - + diff --git a/workflows/releases.html b/workflows/releases.html index 8c422e5..84a8f17 100644 --- a/workflows/releases.html +++ b/workflows/releases.html @@ -90,7 +90,9 @@ - +